/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    overflow-x: hidden;
    background-color: #f9f9f9;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ANNOUNCEMENT BAR STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.announcement-bar {
    background-color: #F36A1D;
    color: #FFFFFF;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    z-index: 1002;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ANNOUNCEMENT BAR ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.main-header {
    background-color: #FFFFFF;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149.png?v=1696229639');
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #F36A1D;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F36A1D;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo {
    font-family: 'Creepster', cursive;
    font-size: 36px;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-hell {
    color: #000000;
}

.logo-pumpkin {
    color: #F36A1D;
    font-size: 32px;
    margin: 0 2px;
}

.logo-win {
    color: #F36A1D;
    position: relative;
}

.witch-hat {
    position: absolute;
    top: -15px;
    right: -5px;
    font-size: 18px;
    transform: rotate(15deg);
}

.header-utils {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-utils i {
    font-size: 18px;
    color: #F36A1D;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 50%;
}

.header-utils i:hover {
    background-color: #F36A1D;
    color: #FFFFFF;
}

.search-container {
    position: relative;
}

.search-input {
    position: absolute;
    right: 0;
    top: 40px;
    width: 200px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #C9C9C9;
    display: none;
    z-index: 1003;
}

.search-input.active {
    display: block;
}

/* Header Container - Fixed setup */
.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Drip Divider - Fixed with header */
.drip-divider {
    height: 29px;
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149.png?v=1696229639');
    background-repeat: repeat-x;
    background-size: auto 29px;
    position: relative;
    z-index: 999;
    margin-bottom: -28px; /* Overlap with hero section */
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO BANNER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero-banner {
    background-color: #000000;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 600px;
    margin-top: 0;
    z-index: 998;
    padding-top: 108px; /* Account for header + drip overlap */
}

.character-container {
    flex: 0 0 40%;
    position: relative;
}

.character-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2c2c2c, #000000);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F36A1D;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.character-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(243, 106, 29, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.text-content {
    flex: 0 0 55%;
    color: #FFFFFF;
}

.tagline {
    color: #F36A1D;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-heading {
    font-family: 'Creepster', cursive;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.body-text {
    color: #C9C9C9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    background-color: #F36A1D;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.cta-button:hover {
    background-color: #e05a0f;
    box-shadow: 0 0 15px rgba(243, 106, 29, 0.5);
    transform: translateY(-2px);
}

/* Decorative Elements */
.ghost {
    position: absolute;
    width: 60px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 0 0;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.ghost::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 35px;
    left: 5px;
    box-shadow: 
        15px 0 0 0 rgba(255, 255, 255, 0.8),
        30px 0 0 0 rgba(255, 255, 255, 0.8);
}

.ghost::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    top: 20px;
    left: 10px;
    box-shadow: 20px 0 0 0 #000000;
}

.ghost-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.ghost-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.ghost-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.pumpkin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 5;
}

.pumpkin-1 {
    background-color: #F36A1D;
    bottom: 10%;
    right: 15%;
    box-shadow: 0 0 10px rgba(243, 106, 29, 0.5);
}

.pumpkin-2 {
    background: linear-gradient(45deg, #CD7F32, #D4AF37);
    bottom: 8%;
    right: 20%;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.chalkboard {
    position: absolute;
    width: 120px;
    height: 80px;
    background-color: #2c2c2c;
    border: 2px solid #5a5a5a;
    border-radius: 5px;
    top: 10%;
    right: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
    font-family: 'Creepster', cursive;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO BANNER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FULL WIDTH SECTIONS STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.full-width-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FULL WIDTH SECTIONS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CAR DETAILING SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.car-detailing-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-container {
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(245, 245, 245, 0.3);
    padding: 0.5rem;
}

.hero-image {
    width: 100%;
    height: 420px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: #F36A1D;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

.hero-description {
    max-width: 65ch;
    color: #666666;
    line-height: 1.625;
    font-size: 1rem;
}

.btn-primary {
    background: #F36A1D;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: #e05a0f;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CAR DETAILING SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! STATS SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.stats-section {
    background: linear-gradient(135deg, #F36A1D 0%, #e05a0f 100%);
    padding: 60px 0;
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.metric-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.metric-label {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! STATS SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.services-section {
    background-color: #0D0D0D;
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 29px;
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149_773d1c3a-8eab-4371-8566-37f2f073cd39.png?v=1696243058');
    background-repeat: repeat-x;
    background-size: auto 29px;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 20px;
}

.services-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #FFFFFF;
    font-family: 'Creepster', cursive;
}

.services-description {
    max-width: 42rem;
    margin: 0.75rem auto 0;
    font-size: 0.875rem;
    color: #C9C9C9;
    line-height: 1.625;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #F36A1D;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.service-title {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products-section {
    padding: 80px 100px;
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    font-family: 'Creepster', cursive;
    font-size: 42px;
    margin-bottom: 50px;
    color: #000000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F36A1D;
    font-size: 16px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    color: #F36A1D;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-button {
    background-color: #F36A1D;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.product-button:hover {
    background-color: #e05a0f;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer {
    background-color: #0D0D0D;
    padding: 60px 100px 30px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 29px;
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149_773d1c3a-8eab-4371-8566-37f2f073cd39.png?v=1696243058');
    background-repeat: repeat-x;
    background-size: auto 29px;
    /* No rotation - drips flow downward naturally */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column h3 {
    color: #F36A1D;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p, .footer-column a {
    color: #F5F5F5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #F36A1D;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #F36A1D;
}

.footer-logo {
    font-family: 'Creepster', cursive;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo .logo-hell {
    color: #FFFFFF;
}

.footer-logo .logo-pumpkin {
    color: #F36A1D;
    font-size: 24px;
    margin: 0 2px;
}

.footer-logo .logo-win {
    color: #F36A1D;
}

.brand-description {
    color: #C9C9C9;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #121212;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #F36A1D;
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.newsletter-button {
    background-color: #F36A1D;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: #e05a0f;
}

.footer-bottom {
    border-top: 1px solid #F36A1D;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #AAAAAA;
    font-size: 12px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE DESIGN STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* NEW: Responsive Design for Car Sections */
@media (min-width: 768px) {
    .hero-grid {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 320px 320px 1fr;
        align-items: start;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .car-detailing-section,
    .services-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .services-title {
        font-size: 1.875rem;
    }
    
    .stats-section {
        padding: 40px 0;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-header, .hero-banner, .products-section, .footer {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .main-heading {
        font-size: 48px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0 20px;
        height: auto;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .nav-menu {
        order: 3;
        margin-top: 15px;
        gap: 15px;
    }
    
    .logo {
        order: 1;
        margin: 10px 0;
    }
    
    .header-utils {
        order: 2;
    }
    
    .hero-banner {
        flex-direction: column;
        padding: 40px 20px;
        padding-top: 88px;
    }
    
    .character-container, .text-content {
        flex: 1;
        width: 100%;
    }
    
    .character-container {
        margin-bottom: 30px;
    }
    
    .products-section {
        padding: 40px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 36px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE DESIGN ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! IMAGE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* Universal Image Styling for All Sections */
.hero-image,
.service-image, 
.product-image {
    width: 100%;
    height: 300px; /* Same height for all images */
    object-fit: cover;
    display: block;
}

/* Specific adjustments if needed */
.hero-image {
    height: 420px; /* Hero section ke liye thoda bada */
}

.service-image {
    height: 280px; /* Services ke liye medium size */
}

.product-image {
    height: 250px; /* Products ke liye compact size */
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! IMAGE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* Hero Banner Slider Styles */
.character-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(243, 106, 29, 0.8);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(243, 106, 29, 1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #F36A1D;
}

.dot:hover {
    background: #F36A1D;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CALL NOW ANIMATION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* Call Now Styles with Animation */
.call-now-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #F36A1D, #e05a0f);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-now-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 106, 29, 0.4);
}

.call-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    z-index: 2;
}

.call-icon i {
    color: #F36A1D;
    font-size: 14px;
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #F36A1D;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
}

.call-number {
    display: flex;
    align-items: center;
}

.number {
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: jump 2s infinite;
}

/* Number Jump Animation */
@keyframes jump {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Hover effects for other icons */
.header-utils i:not(.call-icon i) {
    font-size: 18px;
    color: #F36A1D;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 50%;
}

.header-utils i:not(.call-icon i):hover {
    background-color: #F36A1D;
    color: #FFFFFF;
}

/* Responsive Design for Call Now */
@media (max-width: 768px) {
    .call-now-container {
        padding: 6px 12px;
    }
    
    .number {
        font-size: 12px;
    }
    
    .call-icon {
        width: 25px;
        height: 25px;
    }
    
    .call-icon i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .call-now-container .number {
        display: none; /* Hide number on very small screens */
    }
    
    .call-now-container {
        padding: 8px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CALL NOW ANIMATION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/




/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.main-header {
    background-color: #FFFFFF;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149.png?v=1696229639');
    background-repeat: repeat-x;
    background-size: auto 100%;
}

/* Mobile Header Controls */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Header Container */
.mobile-header-container {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #F36A1D;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F36A1D;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Logo Styling */
.logo {
    font-family: 'Creepster', cursive;
    font-size: 36px;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-hell {
    color: #000000;
}

.logo-pumpkin {
    color: #F36A1D;
    font-size: 32px;
    margin: 0 2px;
}

.logo-win {
    color: #F36A1D;
    position: relative;
}

.witch-hat {
    position: absolute;
    top: -15px;
    right: -5px;
    font-size: 18px;
    transform: rotate(15deg);
}

/* Header Utilities */
.header-utils {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: #F36A1D;
}

.mobile-nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #F36A1D;
    transition: width 0.3s;
}

.mobile-nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Call Now Container - Optimized for Mobile */
.call-now-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #F36A1D, #e05a0f);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-now-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 106, 29, 0.4);
}

.call-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    z-index: 2;
}

.call-icon i {
    color: #F36A1D;
    font-size: 14px;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-input {
    position: absolute;
    right: 0;
    top: 40px;
    width: 200px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #C9C9C9;
    display: none;
    z-index: 1003;
}

.search-input.active {
    display: block;
}

/* Header Container - Fixed setup */
.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Drip Divider - Fixed with header */
.drip-divider {
    height: 29px;
    background-image: url('https://ishi-shopify002.myshopify.com/cdn/shop/files/Group_149.png?v=1696229639');
    background-repeat: repeat-x;
    background-size: auto 29px;
    position: relative;
    z-index: 999;
    margin-bottom: -28px; /* Overlap with hero section */
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN HEADER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE HEADER DESIGN STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .main-header {
        padding: 0 50px;
        flex-wrap: wrap;
        height: auto;
        min-height: 80px;
    }
    
    .nav-menu {
        display: flex;
        gap: 20px;
    }
    
    .logo {
        font-size: 28px;
        order: 1;
        margin-right: auto;
    }
    
    .header-utils {
        order: 2;
    }
    
    /* Show call number only on tablet */
    .call-now-container .number {
        display: block !important;
    }
    
    .header-container {
        position: relative;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .main-header {
        display: none; /* Hide desktop header */
    }
    
    /* Show mobile header */
    .mobile-header-container {
        display: flex;
        background-color: #FFFFFF;
        position: sticky;
        top: 0;
        z-index: 1002;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 70px;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 40px;
        order: 1;
    }
    
    /* Logo in mobile header - FIXED POSITION */
    .mobile-header-container .logo {
        order: 2;
        font-size: 22px;
        flex: 1;
        text-align: center;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        left: auto;
        transform: none;
        padding: 0 10px;
    }
    
    .mobile-header-container .logo-hell {
        color: #000000;
        white-space: nowrap;
    }
    
    .mobile-header-container .logo-win {
        color: #F36A1D;
        white-space: nowrap;
    }
    
    /* Call now in mobile header */
    .mobile-header-container .call-now-container {
        order: 3;
        padding: 6px;
        flex: 0 0 40px;
        justify-content: center;
    }
    
    .mobile-header-container .call-icon {
        width: 30px;
        height: 30px;
        margin: 0;
    }
    
    .mobile-header-container .call-icon i {
        font-size: 14px;
    }
    
    /* Hide number text, show only icon on mobile */
    .mobile-header-container .call-now-container .number {
        display: none !important;
    }
    
    /* Remove extra space from call number container */
    .mobile-header-container .call-number {
        display: none;
    }
    
    /* Pulse ring adjustment for mobile */
    .mobile-header-container .pulse-ring {
        width: 35px;
        height: 35px;
    }
    
    /* Show mobile navigation menu */
    .mobile-nav-menu {
        display: flex;
    }
    
    /* Adjust announcement bar for mobile */
    .announcement-bar {
        font-size: 11px;
        height: 30px;
        padding: 6px 0;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 6px 10px;
    }
    
    /* Adjust drip divider for mobile */
    .drip-divider {
        margin-bottom: -25px;
    }
    
    /* Adjust hero banner for mobile header */
    .hero-banner {
        padding-top: 90px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .mobile-header-container {
        padding: 8px 10px;
        min-height: 60px;
    }
    
    .mobile-header-container .logo {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 18px;
        flex: 0 0 30px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    .mobile-header-container .call-now-container {
        padding: 4px;
        flex: 0 0 30px;
    }
    
    .mobile-header-container .call-icon {
        width: 25px;
        height: 25px;
    }
    
    .mobile-header-container .call-icon i {
        font-size: 12px;
    }
    
    .mobile-header-container .pulse-ring {
        width: 30px;
        height: 30px;
    }
    
    .mobile-nav-menu a {
        font-size: 20px;
    }
    
    .announcement-bar {
        font-size: 10px;
        height: 28px;
        padding: 5px 8px;
    }
    
    .hero-banner {
        padding-top: 85px;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .mobile-header-container .logo {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        width: 22px;
        height: 16px;
        flex: 0 0 25px;
    }
    
    .mobile-header-container .call-now-container {
        flex: 0 0 25px;
    }
    
    .mobile-header-container .call-icon {
        width: 22px;
        height: 22px;
    }
    
    .mobile-header-container .call-icon i {
        font-size: 10px;
    }
    
    .mobile-header-container .pulse-ring {
        width: 27px;
        height: 27px;
    }
}

/* Tablet-only adjustments (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Hide mobile header on tablet */
    .mobile-header-container {
        display: none;
    }
    
    /* Show desktop header but adjust layout */
    .main-header {
        display: flex;
        padding: 0 30px;
    }
    
    .nav-menu {
        display: flex;
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .header-utils {
        gap: 15px;
    }
    
    .call-now-container {
        padding: 6px 12px;
    }
    
    .call-now-container .number {
        font-size: 12px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE HEADER DESIGN ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES !!!AAAAAAAAAAAAAAAAAAAAA*/

.gallery-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.gallery-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Border effect from your image reference */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    padding: 20px;
}

.gallery-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ff6b6b;
    border-image: linear-gradient(45deg, #ff6b6b, #ff8e53, #ff6b6b) 1;
    pointer-events: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Image Popup Modal Styles */
.image-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #ff5252;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border: 2px solid #ff6b6b;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background-color: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #ff6b6b;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .gallery-item {
        height: 300px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES END !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT US SECTION STYLES !!!AAAAAAAAAAAAAAAAAAAAA*/

.contact-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* NEW BACKGROUND COLOR - Dark Blue/Purple */
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Contact Info */
.contact-info {
    padding: 30px;
    background: rgba(26, 26, 46, 0.8); /* Match with new background */
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.detail-item i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.detail-content h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-content p {
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.social-contact h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    color: #ff6b6b;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #ff6b6b;
    color: #1a1a2e; /* Updated to match new background */
    transform: translateY(-3px);
}

/* Right Side - Contact Form */
.contact-form-container {
    padding: 40px;
    background: rgba(26, 26, 46, 0.8); /* Match with new background */
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    background: rgba(255, 107, 107, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff6b6b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e; /* Updated to match new background */
    color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-button {
    background-color: #ff6b6b;
    color: #fff; /* Changed from black to white for better contrast */
    border: none;
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #ff5252;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #ff4757;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus) {
    border-color: #2ed573;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.8rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT US SECTION STYLES END !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ SECTION STYLES !!!AAAAAAAAAAAAAAAAAAAAA*/
.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-description {
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.faq-question {
    width: 100%;
    padding: 25px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.faq-question.active {
    color: #ff6b6b;
}

.faq-question i {
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 107, 107, 0.03);
}

.faq-answer.show {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 25px 20px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title { font-size: 2.5rem; }
    .faq-question { font-size: 1rem; padding: 20px 15px; }
}

@media (max-width: 480px) {
    .faq-title { font-size: 2rem; }
    .faq-description { font-size: 1rem; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ SECTION STYLES END !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! BEST STUDIO SECTION STYLES !!!AAAAAAAAAAAAAAAAAAAAA*/
.best-studio-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Matching Contact section color */
    position: relative;
    overflow: hidden;
}

.best-studio-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.best-studio-content {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.best-studio-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plagiarism-content {
    text-align: left;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.plagiarism-content p {
    font-family: 'Inter', sans-serif;
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.plagiarism-content p:last-child {
    margin-bottom: 0;
}

.studio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    padding: 30px 20px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.feature h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .best-studio-title {
        font-size: 2.5rem;
    }
    
    .plagiarism-content {
        padding: 30px 20px;
    }
    
    .plagiarism-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .studio-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .best-studio-title {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .studio-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .feature i {
        font-size: 2rem;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BEST STUDIO SECTION STYLES END !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.about-us-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1546182990-dffeafbe841d?ixlib=rb-4.1.0&auto=format&fit=crop&q=80') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #666;
}

.current-page {
    color: #ccc;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ddd;
}

/* Responsive styles for About Us banner */
@media (max-width: 768px) {
    .about-us-banner {
        height: 300px;
        padding: 20px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-us-banner {
        height: 250px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ============================================ */
/* DROPDOWN MENU CSS ADDITION - Add at the end */
/* ============================================ */

/* Dropdown Container */
.nav-menu .dropdown {
    position: relative;
}

/* Dropdown Main Link */
.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Arrow */
.nav-menu .dropdown > a i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(243, 106, 29, 0.2);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Menu Items */
.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu .dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-menu .dropdown-menu a:hover {
    background: linear-gradient(135deg, #F36A1D 0%, #e05a0f 100%);
    color: #FFFFFF;
    padding-left: 25px;
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card-link:hover .service-title {
    color: #F36A1D;
}

/* Product Card Links */
.product-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card-link:hover .product-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-card-link:hover .product-title {
    color: #F36A1D;
}

/* Feature Links */
.feature-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.feature-link:hover .feature {
    transform: translateY(-5px);
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

.feature-link:hover .feature h3 {
    color: #ff6b6b;
}

.feature-link:hover .feature i {
    color: #ff6b6b;
    transform: scale(1.1);
}

/* All Button Links Styling */
a.cta-button,
a .cta-button {
    text-decoration: none;
    display: inline-block;
}

/* Call Now Button Link */
a.call-now-container {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Logo Link */
.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo a:hover {
    opacity: 0.9;
}

/* Mobile Dropdown Styles */
.mobile-nav-menu .mobile-submenu {
    padding-left: 30px !important;
    font-size: 14px !important;
    color: #666 !important;
    border-bottom: 1px solid #eee !important;
}

.mobile-nav-menu .mobile-submenu:hover {
    color: #F36A1D !important;
    background: #f9f9f9 !important;
}

/* Responsive Dropdown for Mobile */
@media (max-width: 768px) {
    .nav-menu .dropdown {
        display: block;
        width: 100%;
    }
    
    .nav-menu .dropdown > a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        border: none;
        border-radius: 0;
        margin-left: 20px;
        display: none;
        width: 100%;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }
}