 :root {
            --midnight-blue: #0B0C2A;
            --neon-cyan: #00FFFF;
            --electric-purple: #9B5DE5;
            --bright-magenta: #F15BB5;
            --white: #FFFFFF;
            --off-white: #f8fafc; /* For background below the wave */
        }

html {
  scroll-behavior: smooth;
}

        body {
            font-family: 'Inter', sans-serif;
            /* background-color: var(--light-grey-bg); */
            margin: 0;
            padding: 0;
              color: var(--dark-text);
        }

        /* --- 1. Layout & Structure --- */
        .container {
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        @media (min-width: 640px) {
            .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        .text-center { text-align: center; }
        .relative { position: relative; }
        .z-10 { z-index: 10; }
        .flex-row { display: flex; flex-direction: row; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        .whitespace-nowrap { white-space: nowrap; }
        .overflow-hidden { overflow: hidden; }

        /* --- 2. Header Styles (Fixed, Transparent, and Scroll Effect) --- */
    .header {
        position: fixed; 
        width: 100%; 
        background-color: rgba(10, 25, 47, 0.0); /* Initial transparent background */
        color: var(--white);
        padding: 1rem 0;
        top: 0;
        z-index: 50; 
        box-shadow: none; 
        /* The transition property ensures the scroll effect is smooth */
        transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
    }
    
    /* New class for scrolled state (activated by JS) - Darker, contrasting look */
    .header.scrolled {
       background-color: rgba(10, 25, 47, 0.95); /* Semi-transparent dark blue */
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
       backdrop-filter: blur(8px);
       color: var(--white);
       padding: 0.5rem 0; /* Shrink header when scrolled */
    }

    .header.scrolled .nav-link {
         color: var(--white);
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo Image and Wrapper */
    .logo {
        display: flex;
        align-items: center;
    }

    .header-logo-image {
        height: 4rem; 
        width: auto;
        object-fit: contain;
        /* Transition handles the size change when the 'scrolled' class is applied */
        transition: height 0.3s ease, transform 0.3s ease-in-out;
        display: block; 
    }

    /* Shrink logo on scroll */
    .header.scrolled .header-logo-image {
        height: 4rem;
    }

    .header-logo-image:hover {
        transform: scale(1.05);
    }

    /* --- Nav Link Enhancement --- */
    .nav-link {
        color: #03bbe4;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.3s, transform 0.2s;
        position: relative;
        padding-bottom: 0.5rem;
    }
    .nav-link:hover {
        color: var(--neon-cyan);
        transform: translateY(-2px);
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 100%;
        height: 3px;
        background-color: var(--neon-cyan); 
        border-radius: 9999px;
        transition: transform 0.3s ease-out;
    }
    .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
    
    /* DROPDOWN STYLES */
    .dropdown {
        position: relative;
        /* Adjust spacing here, was previously on .nav-link, now on the wrapper */
        margin-left: 2.5rem; 
        cursor: pointer;
    }

    .dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown-content {
        position: absolute;
        top: 100%; /* Position right under the link */
        left: 50%;
        transform: translateX(-50%) translateY(10px); /* Move down slightly and hide */
        background-color: rgba(10, 25, 47, 0.98); /* Dark background for visibility */
        border: 1px solid var(--dark-blue);
        min-width: 180px;
        box-shadow: 0 8px 16px 0px rgba(0,0,0,0.4);
        z-index: 60;
        border-radius: 4px;
        padding: 10px 0;
        
        /* Hidden state */
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .dropdown-content a {
        color: var(--white);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 0.95rem;
        transition: background-color 0.2s, color 0.2s;
        /* Remove extra space on dropdown links */
        margin: 0; 
        padding-bottom: 12px;
    }
    
    .dropdown-content a:hover {
        background-color: var(--dark-blue);
        color: var(--neon-cyan);
    }

    /* Desktop/Mobile Nav Visibility */
    .desktop-nav { display: none; }
    @media (min-width: 768px) { 
        .desktop-nav { 
            display: flex; /* Use flex to align items horizontally */
            gap: 3rem; /* Gap between menu items */
        } 
        /* Reset margin on dropdown wrapper for consistent spacing */
        .dropdown {
            margin-left: 0; 
        }
    }

    .mobile-menu-icon { display: block; color: var(--white); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; }
    .mobile-menu-icon:hover { color: var(--neon-cyan); }
    @media (min-width: 768px) { .mobile-menu-icon { display: none !important; } }

        /* --- 3. Banner Section Styles --- */
        .banner-section {
            color: var(--white);
            overflow: hidden;
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 5rem;
            padding-top: 9rem;  
        }
        
        /* --- 4. Video Background & Overlay --- */
        .banner-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1; 
            pointer-events: none; 
            will-change: transform; 
        }
        .banner-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
           .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
                background-color:  #0000002e;
            opacity: 0.7; 
            z-index: 2; 
        }

        /* --- 5. Main Content Block (Positioned Right) --- */
     .banner-con {
    position: relative;
    width: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
      top: -100px;
    overflow: hidden;
}

.banner-con .container {
    width: 100%;
}

.ban-con {
    max-width: 600px;
    color: #FFFFFF; /* White text */
    text-align: left;
}

.ban-con h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #00FFFF; /* Neon Cyan highlight */
    letter-spacing: 1px;
}

.ban-con p {
      font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
}

.ban-btn {
    display: inline-block;
    background: #F15BB5; /* Bright Magenta for call-to-action */
    color: #FFFFFF;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(241, 91, 181, 0.4);
}

.ban-btn:hover {
    background: #9B5DE5; /* Electric Purple hover */
    box-shadow: 0 0 30px rgba(155, 93, 229, 0.6);
    transform: translateY(-3px);
}

/* Optional glowing accent on left */
.banner-con::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    /* background: radial-gradient(circle at left, rgba(0,255,255,0.25), transparent 70%); */
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-con {
        padding-left: 30px;
        height: 80vh;
    }

    .ban-con h2 {
        font-size: 32px;
    }

    .ban-con p {
        font-size: 16px;
    }

    .ban-btn {
        font-size: 16px;
        padding: 12px 26px;
    }
}
        /* --- 6. Tape Elements --- */
        .tape-wrapper { margin-bottom: 1.5rem; display: inline-block; }
        .tape {
            background-color: var(--neon-cyan);
            color: var(--midnight-blue);
            padding: 0.4rem 1.5rem; 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em; 
            font-size: 0.75rem; 
            display: inline-block;
            transform: rotate(-2deg);
            clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); 
        }
        @media (min-width: 640px) {
             .tape { padding: 0.5rem 2rem; font-size: 1rem; letter-spacing: 0.1em; }
             .tape-wrapper { margin-bottom: 2rem; }
        }
        .tape i { color: var(--electric-purple); margin: 0 0.4rem; }
        .tape-bottom-wrapper { margin-top: 1.5rem; margin-bottom: 2rem; display: inline-block; }
        @media (min-width: 640px) { .tape-bottom-wrapper { margin-top: 2rem; margin-bottom: 3rem; } }
        .tape.bottom-tape { transform: rotate(1deg); clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }

        /* --- 7. Typography and Headings --- */
        .banner-heading {
             line-height: 1.1;
             font-weight: 900; 
             margin-bottom: 0.75rem; 
             font-size: 2rem; 
        }
        @media (min-width: 480px) { .banner-heading { font-size: 2.5rem; } } 
        @media (min-width: 640px) { .banner-heading { font-size: 3rem; } }
        @media (min-width: 768px) { .banner-heading { font-size: 3.75rem; } }
        @media (min-width: 1024px) { .banner-heading { font-size: 4.5rem; margin-bottom: 1rem; } }

        .hidden-sm { display: none; }
        .hidden-md { display: none; }
        @media (min-width: 640px) { .hidden-sm { display: inline; } }
        @media (min-width: 768px) { .hidden-md { display: inline; } }

        .banner-subheading {
            color: var(--neon-cyan);
            font-style: italic;
            font-size: 1rem; 
            margin-bottom: 1.5rem; 
            font-weight: 500;
        }
        @media (min-width: 640px) { .banner-subheading { font-size: 1.25rem; } }
        @media (min-width: 768px) { .banner-subheading { font-size: 1.5rem; margin-bottom: 2rem; } }

        /* --- 8. Call to Action Button --- */
        .cta-button {
            background-color: var(--bright-magenta);
            color: var(--white);
            padding: 0.6rem 1.5rem; 
            font-size: 1rem;
            font-weight: 600;
            border-radius: 9999px;
            box-shadow: 0 8px 18px -5px var(--bright-magenta);
            border: 3px solid var(--neon-cyan); 
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s;
            display: inline-block;
            text-transform: uppercase;
        }
        @media (min-width: 640px) { .cta-button { padding: 0.75rem 2rem; font-size: 1.125rem; } }
        .cta-button:hover {
            background-color: #d44a9c;
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 10px 25px -5px var(--bright-magenta);
        }
        
        /* --- 9. Marquee Styles --- */
        .marquee-container {
            width: 100%;
            position: absolute;
            bottom: 1rem; 
            left: 0;
            z-index: 10; 
            overflow: hidden;
            pointer-events: none;
            line-height: 1;
            padding-bottom: 20px; 
        }
        @media (min-width: 640px) { .marquee-container { bottom: 2rem; padding-bottom: 59px; } } 
        
        .marquee-text-style {
            color: #fff ;
            font-weight: 800;
            text-transform: uppercase;
            padding-left: 1rem; 
            padding-right: 1rem;
            font-size: 1.25rem; 
            letter-spacing: 0.2em; 
        }
        @media (min-width: 640px) { .marquee-text-style { font-size: 2.25rem; padding-left: 2rem; padding-right: 2rem; } }

        .marquee-text-style .char {
            display: inline-block;
            will-change: transform; 
        }

        /* --- 10. GSAP Initial State (Utility classes) --- */
        .gsap-init-hidden { opacity: 0; transform: translateY(30px); }
        .gsap-init-hidden-scale { opacity: 0; transform: scale(0.8); }


        
        /* --- 11. Content Below Banner --- */
        .content-section {
            padding: 4rem 2rem; 
            text-align: center;
            background-color: var(--off-white);
            position: relative;
            z-index: 10;
        }
        .content-section h2 {
            font-size: 2.5rem; 
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--electric-purple);
        }

        /* --- 12. Wave SVG Styles --- */
        .wave-svg {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: auto;
            z-index: 5; 
            pointer-events: none;
        }
        .wave-svg path {
            fill: var(--off-white);
            transition: fill 2s; 
        }
        
         /* --- 0. Custom Colors and Root Settings --- */
        :root {
            --light-yellow: #f8e58a; /* Soft, muted yellow */
            --off-white-bg: #f8f6f0; /* Creamy, light background */
            --dark-text: #212121;
            --highlight-orange: #ff7f41;
            --highlight-cyan: #41ffc5;
            --highlight-purple: #8a41ff;
            --light-grey-bg: #f2f0e9;
        }
        
        
        /* Set main padding from the top to 0 as the header is removed */
        @media (min-width: 768px) { main { padding-bottom: 5rem; } }

        /* --- Typography --- */
        .title-text {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.05em;
        }
        
        /* Responsive Title Text Size */
        .hero-title {
            font-size: 2.5rem; /* 4xl */
        }
        @media (min-width: 640px) { .hero-title { font-size: 3rem; } /* sm:5xl */ }
        @media (min-width: 768px) { .hero-title { font-size: 3.75rem; } /* md:6xl */ }
        @media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } /* lg:7xl */ }


        /* Highlight Classes */
        .highlight-orange, .highlight-cyan, .highlight-purple { 
            padding: 0 0.5rem; 
            display: inline; 
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
        }
        .highlight-orange { background-color: var(--highlight-orange); }
        .highlight-cyan { background-color: var(--highlight-cyan); }
        .highlight-purple { background-color: var(--highlight-purple); }


        /* --- Sections & Layout --- */
        
        .section-center { text-align: center; padding-top: 5rem; margin-bottom: 6rem; } 
        @media (min-width: 768px) { .section-center { padding-top: 7rem; } }

        .section-margin-bottom { margin-bottom: 6rem; } 

        /* Hero Text Styles */
        .hero-info {
           text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--dark-text);
    opacity: 0.7;
    margin-bottom: 0;
        }
        .hero-slogan {
            font-style: italic;
            font-size: 1.125rem;
            color: var(--dark-text);
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }
        .hero-desc {
         max-width: 70rem;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    font-weight: 300;
    line-height: 22px;
        }
        
        /* --- Boxed Sections --- */
        .section-box {
            background-color: var(--light-yellow);
            border-radius: 1.5rem;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 8px 8px 0px rgba(33, 33, 33, 0.1); 
        }
        
        /* --- Buttons --- */
        .btn-primary, .btn-secondary {
            text-decoration: none;
            text-align: center;
            border: none;
            cursor: pointer;
            border-radius: 9999px;
            transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
        }
        .btn-primary {
               background-color: var(--dark-text);
    color: var(--off-white-bg);
    padding: 2rem 4rem;
    font-weight: 500;
    display: inline-block;
    font-size: 1.3rem;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(33, 33, 33, 0.2);
        }
        .btn-secondary {
            background-color: #5d92e5; 
            color: white;
            padding: 0.5rem 1rem;
            font-weight: 500;
            font-size: 0.875rem;
            display: inline-block;
        }
        .btn-secondary:hover {
            background-color: #4a7fdc;
        }

        /* --- Image Styles --- */
        .image-box {
            overflow: hidden;
            border-radius: 1rem;
            position: relative;
        }
        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* --- RIOT GRID LAYOUT --- */
        .riot-grid {
            display: grid;
            gap: 1rem;
            grid-template-areas: 
                "text-col"
                "center-img"
                "side-img-top"
                "side-img-bottom";
        }
        .text-col { 
            grid-area: text-col; 
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .center-img { 
            grid-area: center-img; 
            min-height: 400px;
        }
        .side-img-top { 
            grid-area: side-img-top; 
            height: 200px;
        }
        .side-img-bottom { 
            grid-area: side-img-bottom; 
            height: 200px;
        }
        .text-col-content {
            margin-bottom: 1rem; 
        }

        @media (min-width: 768px) {
            .riot-grid {
                grid-template-columns: 1fr 1fr 1fr;
                grid-template-rows: auto auto;
                grid-template-areas: 
                    "text-col center-img side-img-top"
                    "text-col center-img side-img-bottom";
            }
            .center-img { 
                height: 100%; 
                min-height: 0;
            }
            .side-img-top, .side-img-bottom { 
                height: auto;
            }
        }
        
        /* --- WORK SECTION LAYOUT --- */
        .work-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; 
        }
        @media (min-width: 768px) {
            .work-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .work-item {
            display: flex;
            flex-direction: column;
            background-color: white;
            border-radius: 0.75rem; 
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06); 
            overflow: hidden;
        }
        .work-item-img {
            width: 100%;
            height: 16rem; 
        }
        .work-item-content {
            padding: 1.5rem 2rem; 
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        @media (min-width: 768px) {
            .work-item {
                flex-direction: row;
            }
            .work-item:nth-child(2) { 
                flex-direction: row-reverse;
            }
            .work-item-img, .work-item-content {
                width: 50%;
            }
            .work-item-img {
                height: auto;
            }
        }
        
        .work-item-meta {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            color: #6b7280; 
            margin-bottom: 0.25rem;
        }
        .work-item-title {
            font-size: 1.5rem; 
            margin-bottom: 1rem;
        }
        .work-item-desc {
            font-size: 0.875rem; 
            opacity: 0.8;
            margin-bottom: 1rem;
        }
        .work-item-link {
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
        }
        .work-item-link:hover {
            text-decoration: underline;
        }
       

          .spacer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: #ccc;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }

        /* --- Main Section Wrapper --- */
        .pinterest-collage-section {
            padding: 80px 20px;
            min-height: 800px; 
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden; 
        }

        /* --- Inner Container for 1250px Width --- */
        .collage-inner-container {
            max-width: 1250px;
            width: 100%;
            /* Defines a 12-column, 10-row grid layout */
            grid-template-columns: repeat(12, 1fr); 
            grid-template-rows: repeat(10, minmax(40px, auto)); 
            gap: 15px; 
            position: relative;
            display: grid; 
        }

        /* --- Image Styles --- */
        .collage-img-item {
            position: relative;
            overflow: hidden;
            background-color: #e8e4df; 
            border-radius: 8px; /* Slightly rounded corners for a modern feel */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow */
            z-index: 1; 
            transition: transform 0.3s ease-in-out;
        }

        .collage-img-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .collage-img-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s;
        }
        
        /* --- Specific Grid Placements (Desktop) --- */
        .img-1 { grid-column: 1 / span 3; grid-row: 1 / span 3; } 
        .img-2 { grid-column: 4 / span 3; grid-row: 1 / span 3; } 
        .img-3 { grid-column: 7 / span 3; grid-row: 1 / span 3; } 
        .img-4 { grid-column: 10 / span 3; grid-row: 1 / span 4; } 
        .img-5 { grid-column: 1 / span 3; grid-row: 4 / span 3; } 
        .img-6 { grid-column: 1 / span 3; grid-row: 7 / span 2; } 
        .img-7 { grid-column: 1 / span 4; grid-row: 9 / span 2; } 
        .img-8 { grid-column: 5 / span 4; grid-row: 8 / span 3; } 
        .img-9 { grid-column: 9 / span 2; grid-row: 7 / span 4; } 
        .img-10 { grid-column: 11 / span 2; grid-row: 7 / span 4; } 

        /* --- Central Content Wrapper (Overlayed on the grid) --- */
        .central-content-wrapper {
            grid-column: 5 / span 4; 
            grid-row: 4 / span 4; 
            display: flex;
            flex-direction: column; 
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 5; 
            position: relative; 
            padding: 20px; 
            border-radius: 12px;
        }

        /* --- Central Text Styling --- */
        .central-text {
            font-family: 'Playfair Display', serif; 
            font-style: italic;
            font-size: clamp(2.5rem, 5vw, 4rem); 
            color: #3b2e2d; 
            line-height: 1.2;
            margin-bottom: 20px; 
        }

        /* --- Button Styling --- */
        .cta-button {
            background-color: #3b2e2d; 
            color: #fbf8ff; 
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            padding: 12px 30px;
            border: none;
            border-radius: 50px; 
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            background-color: #5d4a46; 
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Specific text overlays (Always visible) */
        .text-overlay {
            position: absolute;
            font-family: 'Inter', sans-serif; 
            font-style: italic;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.4);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 1.2em;
            top: 50%; 
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 1; 
            z-index: 10;
            transition: opacity 0.3s, transform 0.3s;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
            font-weight: 600;
            pointer-events: none; 
        }

        /* Mobile Responsiveness: Stack content for small screens */
        @media (max-width: 767px) {
            .pinterest-collage-section {
                padding: 40px 10px;
                min-height: 100vh;
            }
            .collage-inner-container {
                /* On small screens, switch to a single column */
                display: flex;
                flex-direction: column;
                gap: 10px;
                max-width: 100%;
            }
            .collage-img-item {
                /* All items take full width and a fixed height for consistency */
                width: 100%;
                height: 200px;
            }
            .central-content-wrapper {
                /* Place the central content block at the top */
                order: -1; /* This ensures it comes first in the mobile column layout */
                width: 100%;
                padding: 30px 15px;
                box-sizing: border-box;
                border: none; 
                box-shadow: none;
                background-color: transparent;
            }
            .central-text {
                font-size: 2.5rem;
                color: #3b2e2d;
            }
            .cta-button {
                width: 80%;
                max-width: 300px;
            }
            /* Hide the spacer content on mobile */
            .spacer {
                display: none;
            }
        }

        /* vid section  */

        
        /* --- CSS Variables (Scoped to section) --- */
        .woodwork-section {
            --light-peach: #FBF9F6;
            --dark-gray: #212121;
            --white: #FFFFFF;
            --border-color: #EFEFEF;

            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            font-size: 16px;
            width: 100%;
            max-width: 1400px;
            margin: 40px auto; /* Add margin to visually separate from main content */
            background-color: var(--light-peach);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 2.5fr 1.5fr; /* Left (Content) vs Right (Products) */
            grid-template-rows: auto;
            gap: 0;
            overflow: hidden;
            border-radius: 8px; /* Added some rounding for aesthetics */
        }

        /* --- Left Main Content Area --- */
        .woodwork-section .left-content {
            padding: 60px;
            position: relative;
            border-right: 1px solid var(--border-color);
            min-height: 700px; 
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .woodwork-section .main-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 20px;
            max-width: 615px;
            overflow: hidden; 
        }
        .woodwork-section .main-title span { display: block; }
        .woodwork-section .main-title .line-content {
            display: block; 
            overflow: hidden;
        }

        /* Creator info positioning */
        .woodwork-section .creator-info.hans-info { position: absolute; top: 328px;  left: 91px; }
        .woodwork-section .creator-info.lotta-info { position: absolute; top: 418px;
    left: 567px; }

        .woodwork-section .creator-info {
            font-size: 0.85rem;
            line-height: 1.4;
               width: 258px;
        }
        .woodwork-section .creator-info span {
            font-size: 0.75rem;
            color: #666;
            margin-top: 2px;
            display: block;
        }
        
        .woodwork-section .line-separator {
            width: 100%;
            height: 1px;
            background-color: var(--dark-gray); 
            margin-top: 10px;
            margin-bottom: 20px;
        }

        /* Creator cards (Overlapping and Rotated) - positioned absolutely */
        .woodwork-section .creator-cards {
            position: absolute; 
            bottom: 71px;
    left: 34px;
            display: flex;
            align-items: flex-end;
        }
        .woodwork-section .creator-card {
            width: 280px;
            height: 390px;
            border-radius: 5px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
            overflow: hidden;
            position: relative;
            background-size: cover;
            background-position: center;
            cursor: pointer; /* Added pointer to show interactivity */
            transition: box-shadow 0.3s ease;
        }
        .woodwork-section .creator-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        }
        /* Default state styles applied directly */
        .woodwork-section .creator-card.hans {
            background-image: url('img/5.png');
            transform: rotate(-10deg); 
            z-index: 2;
        }
        .woodwork-section .creator-card.lotta {
            background-image: url('img/9.png');
            transform: rotate(5deg); 
            margin-left: -180px; 
            margin-bottom: -50px;
            z-index: 1;
        }
        .woodwork-section .creator-name {
            position: absolute;
            bottom: 20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.2rem;
            line-height: 1.1;
            color: var(--white);
            text-shadow: 0 0 5px rgba(0,0,0,0.5);
        }
        
        /* --- Right Content Area (COMPLEX GRID STRUCTURE) --- */
        .woodwork-section .right-content {
            padding: 0;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
            grid-template-rows: auto; 
            gap: 0;
            min-height: 700px;
            border-left: 1px solid var(--border-color); 
        }
        
        /* General Grid Cell Styling */
        .woodwork-section .right-content > div {
            padding: 30px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }
        
        /* Showreel Block */
        .woodwork-section .showreel-block { grid-column: 1 / 3; background-color: var(--dark-gray); color: var(--white); display: flex; align-items: center; justify-content: space-between; }
        .woodwork-section .showreel-block .product-arrow { color: var(--white); align-self: center; margin-top: 0; text-decoration: none; }
        .woodwork-section .showreel-play { background-color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; }
        .woodwork-section .showreel-play::before { content: '▶'; color: var(--dark-gray); font-size: 1.2rem; margin-left: 5px; }
        .woodwork-section .showreel-left { display: flex; align-items: center; }

        /* Product 1 Text */
        .woodwork-section .product-text-cell.p1 { grid-column: 3 / 5; padding-left: 0; padding-right: 0; border-left: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .woodwork-section .product-text-cell.p1 .product-title { padding-left: 30px; }
        .woodwork-section .product-text-cell.p1 .product-arrow { padding-right: 30px; }
        
        /* Product 2 Text */
        .woodwork-section .product-text-cell.p2 { grid-column: 1 / 2; padding-right: 0; border-right: none; }

        /* Product 2 Image */
        .woodwork-section .product-image-cell.p2 { grid-column: 2 / 4; padding: 0; display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--border-color); }
        .woodwork-section .product-image-small { width: 100%; height: 250px; object-fit: cover; }

        /* Product 1 Image */
        .woodwork-section .product-image-cell.p1 { grid-column: 4 / 5; padding: 0; border-left: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; }
        
        /* Product 3 Text */
        .woodwork-section .product-text-cell.p3 { grid-column: 1 / 2; border-top: 1px solid var(--border-color); padding-right: 0; border-bottom: none; }

        /* Product 3 Image */
        .woodwork-section .product-image-cell.p3 { grid-column: 2 / 4; padding: 0; border-top: 1px solid var(--border-color); border-left: 1px solid var(--border-color); border-bottom: none; }
        .woodwork-section .product-image-cell.p3 img { width: 100%; height: 100%; object-fit: cover; }

        /* The American Text Block */
        .woodwork-section .product-block-text { grid-column: 4 / 5; padding: 30px; font-size: 1.6rem; font-weight: 700; line-height: 1.3; border-bottom: none !important; border-top: 1px solid var(--border-color); border-left: 1px solid var(--border-color); }

        /* Product Titles and Arrows for all products */
        .woodwork-section .product-item { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
        .woodwork-section .product-title { font-size: 1.2rem; max-width: 100%; }
        .woodwork-section .product-arrow { text-decoration: none; color: var(--dark-gray); font-size: 2rem; align-self: flex-end; margin-top: 15px; transition: transform 0.3s; }
        .woodwork-section .product-arrow:hover { transform: translateX(5px); }
        .woodwork-section .product-image-cell { padding: 0 !important; }

        /* --- Responsiveness (Simplified for Mobile) --- */
        @media (max-width: 1024px) {
            .woodwork-section { grid-template-columns: 1fr; box-shadow: none; }
            .woodwork-section .left-content { border-right: none; border-bottom: 1px solid var(--border-color); min-height: auto; padding: 40px 30px; }
            .woodwork-section .creator-info.hans-info, 
            .woodwork-section .creator-info.lotta-info { position: static; margin-top: 0; margin-left: 0; width: auto; }
            .woodwork-section .creator-cards { position: static; margin-top: 40px; flex-direction: column; align-items: center; gap: 30px; margin-left: auto; margin-right: auto; width: 100%; }
            .woodwork-section .creator-card { transform: none !important; margin-left: 0 !important; margin-bottom: 0 !important; }
            .woodwork-section .right-content { grid-template-columns: 1fr; min-height: auto; border-left: none; }
            .woodwork-section .right-content > div { grid-column: auto !important; border: none !important; border-bottom: 1px solid var(--border-color) !important; padding: 30px; }
            .woodwork-section .product-block-text { border-bottom: none !important; }
            .woodwork-section .product-image-cell { height: 200px; }
            .woodwork-section .product-image-small { height: 100% !important; padding: 0 !important; object-fit: cover; }
            .woodwork-section .product-text-cell.p1 { padding: 30px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
            .woodwork-section .product-text-cell.p1 .product-title { padding-left: 0; }
            .woodwork-section .product-text-cell.p1 .product-arrow { padding-right: 0; margin-top: 0; }
            .woodwork-section .product-image-cell { padding: 0 !important; }
            .woodwork-section .product-text-cell { border-right: none; height: auto; }
        }
        
        @media (max-width: 768px) {
            .woodwork-section .top-header { flex-direction: column; }
            .woodwork-section .header-nav { margin-top: 15px; display: flex; flex-wrap: wrap; justify-content: center; }
            .woodwork-section .header-nav a { margin: 5px 10px; }
            .woodwork-section .header-logo { margin-right: 0; }
            .woodwork-section .header-right { margin-top: 10px; }
        }

/* --- Marquee Container Styles --- */
        .marquee {
            width: 100%;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .marquee-content {
            display: flex;
            white-space: nowrap; 
            width: fit-content; 
            padding: 15px 0;
            /* Note: CSS animation properties removed here, now handled by GSAP */
        }
        
        .marquee-item {
            font-weight: 700;
            font-size: clamp(1rem, 4vw, 2.5rem); 
            padding: 0 40px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ---------------------------------
           1. Right-to-Left Ribbon (Primary)
           --------------------------------- */
        .marquee.rtl {
            background-color: #CDB4DB;
            color: #4A3F55;
            border-top: 2px solid #E0BBE4;
            border-bottom: 2px solid#E0BBE4;
            margin-bottom: 22px;
        }

        /* ---------------------------------
           2. Left-to-Right Ribbon (Secondary)
           --------------------------------- */
        .marquee.ltr {
            background-color:#F9C5D1;
            color: #4A3F55; 
        }

        /* Responsive Adjustments for smaller screens */
        @media (max-width: 600px) {
            .marquee-item {
                font-size: 1.2rem;
                padding: 0 20px;
            }
        }

        /* banner and about */

         /* --- NEW BANNER SECTION STYLES --- */
        .fixed-banner {
            height: 70vh; /* Make it tall enough to be a banner */
            background-image: url('img/bg.jpg'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* CRITICAL for the fixed background effect */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white; 
            position: relative;
            overflow: hidden;
            margin-bottom: 80px; /* Space between banner and about section */
        }

        /* Overlay for text legibility */
        .fixed-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4); /* Dark overlay */
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .banner-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
        }

        .banner-text {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .banner-button {
            background-color: var(--accent-color);
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .banner-button:hover {
            background-color: #7A9FB0; /* Slightly darker accent */
            transform: translateY(-2px);
        }
        /* --- END BANNER SECTION STYLES --- */


        .about-us-section {
            display: flex;
            flex-direction: column;
            max-width: 1400px;
            margin: 80px auto;
            background-color: var(--secondary-bg);
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }

        .about-us-container {
            display: flex;
            flex-direction: row; /* Default to row on larger screens */
            gap: 40px;
            padding: 60px;
            align-items: center;
        }

        /* Elements are given initial opacity/transform in JS, but keeping classes here */
        .content-left {
            flex: 2; 
            padding-right: 40px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.1;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            margin-top: 15px;
            border-radius: 2px;
        }

        .about-intro {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .feature-block {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-light);
        }
        .feature-block:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .feature-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            position: relative;
        }
        .feature-title::before {
            content: '•';
            color: var(--accent-color);
            font-size: 1.2em;
            position: absolute;
            left: -20px;
            top: 0;
        }

        .feature-text {
            font-size: 1rem;
            color: var(--text-light);
            margin-left: 0;
        }

        .image-right {
            flex: 1.5; 
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px; 
            position: relative;
        }

        .image-wrapper {
            width: 100%;
            height: 500px; 
            background-color: var(--primary-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            /* Added transition for the smooth hover pop effect */
            transition: transform 0.3s ease-out; 
        }
        .image-wrapper:hover {
            transform: scale(1.03); /* Subtle pop on hover */
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .about-us-container {
                flex-direction: column;
                padding: 40px;
                gap: 30px;
            }
            .content-left {
                padding-right: 0;
            }
            .image-right {
                padding: 0;
            }
            .image-wrapper {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .about-us-section {
                margin: 40px 20px;
            }
            .about-us-container {
                padding: 30px;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .image-wrapper {
                height: 300px;
            }
        }

   /* --- Upper Grid Section --- */
        .grid-section {
            padding-bottom: 80px;
        }

        .item-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .grid-item {
            background-color: #fff;
            border: 1px solid var(--border-color);
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Added transition for smoother GSAP hover fallback/interaction */
            transition: transform 0.3s ease; 
        }

        .grid-item-image {
            width: 100%;
            height: 250px; /* Fixed height for consistency */
            margin-bottom: 25px;
            overflow: hidden;
            position: relative;
        }

        .grid-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .grid-item-category {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .grid-item-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .grid-item-description {
            font-size: 0.95rem;
            color: var(--text-medium);
            margin-bottom: 0;
        }

        .view-more-button {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            border: 1px solid var(--text-dark);
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: background-color 0.3s, color 0.3s;
        }

        .view-more-button:hover {
            background-color: var(--text-dark);
            color: var(--bg-light);
        }

        /* --- Lower Service Section --- */
        .service-section {
            display: flex;
            flex-direction: row;
            background-color: #fff;
            border: 1px solid var(--border-color);
            margin-top: 80px;
            min-height: 600px;
        }

        .service-image-side {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-right: 1px solid var(--border-color);
            min-height: 500px;
        }

        .service-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .service-text-side {
            flex: 1.2;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-overline {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .service-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        /* Accordion Styles */
        .accordion-item {
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            cursor: pointer;
        }
        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s;
        }
        .accordion-header:hover {
            color: var(--accent-color);
        }

        .accordion-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease-in-out;
            color: var(--text-medium);
        }
        .accordion-item.active .accordion-icon {
            transform: rotate(45deg); /* Plus sign to X */
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out; /* Smooth slide up/down */
        }
        .accordion-content p {
            font-size: 0.9rem;
            color: var(--text-medium);
            padding-top: 15px;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .service-section {
                flex-direction: column;
                margin-top: 60px;
            }
            .service-image-side {
                min-height: 350px;
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .service-text-side {
                padding: 40px 30px;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px 15px;
            }
            .grid-item {
                padding: 20px;
            }
            .grid-item-title {
                font-size: 1.4rem;
            }
            .service-text-side {
                padding: 30px 20px;
            }
            .service-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            .accordion-header {
                font-size: 1rem;
            }
        }

          /* --- Upper Grid Section --- */
        .grid-section {
            padding-bottom: 80px;
        }

        /* New Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 60px; /* Space between header and grid */
            padding-top: 40px;
        }

        .section-heading {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-subheading {
            font-size: 1.1rem;
            color: var(--text-medium);
            margin: 0;
        }
        /* End New Header Styles */

        .item-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .grid-item {
            background-color: #fff;
            border: 1px solid var(--border-color);
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Added transition for smoother GSAP hover fallback/interaction */
            transition: transform 0.3s ease; 
        }

        .grid-item-image {
            width: 100%;
            height: 250px; /* Fixed height for consistency */
            margin-bottom: 25px;
            overflow: hidden;
            position: relative;
        }

        .grid-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .grid-item-category {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .grid-item-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .grid-item-description {
            font-size: 0.95rem;
            color: var(--text-medium);
            margin-bottom: 0;
        }

        .view-more-button {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            border: 1px solid var(--text-dark);
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: background-color 0.3s, color 0.3s;
        }

        .view-more-button:hover {
            background-color: var(--text-dark);
            color: var(--bg-light);
        }

        /* --- Lower Service Section --- */
        .service-section {
            display: flex;
            flex-direction: row;
            background-color: #fff;
            border: 1px solid var(--border-color);
            margin-top: 80px;
            min-height: 600px;
        }

        .service-image-side {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-right: 1px solid var(--border-color);
            min-height: 500px;
        }

        .service-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .service-text-side {
            flex: 1.2;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-overline {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .service-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        /* Accordion Styles */
        .accordion-item {
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            cursor: pointer;
        }
        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s;
        }
        .accordion-header:hover {
            color: var(--accent-color);
        }

        .accordion-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease-in-out;
            color: var(--text-medium);
        }
        .accordion-item.active .accordion-icon {
            transform: rotate(45deg); /* Plus sign to X */
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out; /* Smooth slide up/down */
        }
        .accordion-content p {
            font-size: 0.9rem;
            color: var(--text-medium);
            padding-top: 15px;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .service-section {
                flex-direction: column;
                margin-top: 60px;
            }
            .service-image-side {
                min-height: 350px;
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .service-text-side {
                padding: 40px 30px;
            }
            .section-header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px 15px;
            }
            .grid-item {
                padding: 20px;
            }
            .grid-item-title {
                font-size: 1.4rem;
            }
            .service-text-side {
                padding: 30px 20px;
            }
            .service-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            .accordion-header {
                font-size: 1rem;
            }
        }

       












         /* Footer Styles */
        /* --- Footer Base Styles --- */
.site-footer {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 40px 20px 0; /* Top/side padding, no bottom padding yet */
    font-family: Arial, sans-serif;
     border-top-left-radius: 1.5rem;
            border-top-right-radius: 1.5rem;
                margin-top: 25px;
}

.footer-content {
    display: flex; /* Enable flexbox for columns */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px; /* Space above the bottom bar */
}

.footer-column {
    padding: 0 15px;
    margin-bottom: 20px;
    flex: 1 1 250px; /* Flex properties: Grow, Shrink, Base Width */
}

/* --- Typography --- */
.site-footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #555; /* Subtle separator */
    padding-bottom: 5px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #f0f0f0; /* Slightly lighter on hover */
}

/* --- Logo & Social --- */
.footer-logo {
    width: 120px; /* Adjust as needed */
    height: auto;
    margin-bottom: 15px;
}

.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    /* In a real project, you would use SVG icons or font icons for better quality */
}

/* --- Newsletter Form --- */
.newsletter-form input[type="email"] {
    padding: 8px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    width: 60%;
}

.newsletter-form button {
    padding: 8px 15px;
    background-color: #007bff; /* Primary button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* --- Footer Bottom Bar (Copyright) --- */
.footer-bottom {
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    border-top: 1px solid #444;
}

/* --- Responsive Adjustments (for smaller screens) --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack columns vertically on mobile */
    }
    
    .footer-column {
        flex: 1 1 100%; /* Each column takes full width */
        text-align: center; /* Center content */
        border-bottom: 1px solid #444;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-column:last-child {
        border-bottom: none; /* Remove border from the last column */
    }
}