  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*WHATSAPP*/
.whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 1000;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-button svg {
            width: 35px;
            height: 35px;
            fill: white;
        }


body {
    width: 100%;
    min-height: 100vh;
    background: white;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Arial Black', Arial, sans-serif;
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    z-index: 1000;
    transition: opacity 0.6s ease;
}

.loading-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.text-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.letter {
    font-size: 100px !important;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
    opacity: 0;
    transform: translateX(0);
}

/* Space between words */
.letter-space {
    width: 40px;
    opacity: 1;
}

/* M and I animation - coming together */
.letter-g {
    animation: slideInM 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.letter-y {
    animation: slideInI 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Middle letters fade in */
.letter-middle {
    animation: fadeInMiddle 0.8s ease forwards 0.8s;
}

@keyframes slideInM {
    0% {
        opacity: 1;
        transform: translateX(300px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInI {
    0% {
        opacity: 1;
        transform: translateX(-300px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInMiddle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Split curtain effect - vertical from center */
.curtain {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50vh;
    background: #0a0a0a;
    z-index: 999;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.curtain-top {
    top: 0;
    transform: translateY(0);
}

.curtain-bottom {
    bottom: 0;
    transform: translateY(0);
}

.curtain-top.split {
    transform: translateY(-100%);
}

.curtain-bottom.split {
    transform: translateY(100%);
}

/* Fixed Menu Bar */
.menu-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(50, 50, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-tab {
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-tab.active {
    background: #fff;
    color: #000;
}

.menu-tab:hover:not(.active) {
    color: #fff;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.8);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(100, 100, 100, 0.9);
    transform: rotate(90deg);
}

.menu-toggle.active {
    transform: rotate(45deg);
}

.menu-toggle.active:hover {
    transform: rotate(45deg) scale(1.1);
}

/* Expanded Menu */
.expanded-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.expanded-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-title {
    font-size: 2rem !important;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #fff;
}

.menu-subtitle {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    line-height: 1.5;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.menu-section {
    flex: 1;
}

.nav-links {
    list-style: none;
    margin-bottom: 40px;
}

.nav-item {
    margin-bottom: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.social-links {
    list-style: none;
}

.social-item {
    margin-bottom: 15px;
}

.social-link {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.social-link:hover {
    color: #fff;
    padding-left: 10px;
}

.menu-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.close-menu-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero Content */
.hero-content {
    position: relative;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-content.visible {
    opacity: 1;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
}

.carousel-column {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left column slides up */
.carousel-column.left .carousel-slide {
    transform: translateY(100%);
}

.carousel-column.left .carousel-slide.active {
    transform: translateY(0);
}

.carousel-column.left .carousel-slide.prev {
    transform: translateY(100%);
}

.carousel-column.left .carousel-slide.next {
    transform: translateY(-100%);
}

/* Right column slides down */
.carousel-column.right .carousel-slide {
    transform: translateY(-100%);
}

.carousel-column.right .carousel-slide.active {
    transform: translateY(0);
}

.carousel-column.right .carousel-slide.prev {
    transform: translateY(-100%);
}

.carousel-column.right .carousel-slide.next {
    transform: translateY(100%);
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}



/* OUR Story Section */
 .talent-section {
            min-height: 200vh !important;
            background-color: black;
            position: relative;
        }

        .content-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            grid-template-rows: auto 1fr auto;
            padding: 60px 2%;
            gap: 60px;
        }

        .header-text {
            grid-column: 1 / -1;
            font-size: clamp(14px, 1.6vw, 22px);
            font-weight: 400;
            line-height: 1.5;
            max-width: 100%;
            color: #fff;
        }

        .left-content {
            grid-column: 1;
            grid-row: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            margin-bottom: 40px;
            margin-left: -100px !important;
            color: #fff;
            opacity: 0;
            transform: translateX(-50px);
        }

        .tagline {
            font-size: clamp(18px, 2.2vw, 32px);
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 30px;
            color: #fff;
        }

      

        @keyframes blink {
           0%, 50% {
              opacity: 1;
           }
           51%, 100% {
              opacity: 0;
           }
        }



        .talent-logo {
            font-size: clamp(60px, 10vw, 150px);
            font-weight: 300;
            letter-spacing: -2px;
            line-height: 0.9;
            color: #fff;
        }

        .talent-logo span {
            display: inline-block;
            border-right: 3px solid black;
            padding-right: 8px;
            margin-right: 3px;
        }

        .image-container {
            grid-column: 2;
            grid-row: 2;
            position: relative;
            overflow: hidden;
            height: 110%; /* Change this */
            width: 90%; /* Add this to make it smaller than the column */
            margin-left: -40px; /* Add this to center it horizontally in the column */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 300%;
            display: flex;
            flex-direction: column;
            will-change: transform;
        }

        .parallax-image {
            width: 100%;
            height: 33.333%;
            object-fit: cover;
            display: block;
        }

        .right-content {
            grid-column: 3;
            grid-row: 2;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding-bottom: -190px;
            padding-right: 20px;
            color: #fff;
        }
        .right-content p {
            font-size: clamp(12px, 1.4vw, 18px);
            line-height: 1.5;
            text-align: right;
            max-width: 350px;
            color: #fff;
        }
        

        /*last section*/
        /* Parallax Zoom Section */
        .parallax-zoom-section {
            position: relative;
            height: 200vh;
            background: #000;
        }

        .parallax-fixed-container {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
        }

        .parallax-bg-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.8);
            width: 100%;
            height: 100%;
            background-image: url('https://res.cloudinary.com/dw9gvedqs/image/upload/v1764082527/A7401357-3_1_zy0zm9.jpg');
            background-size: cover;
            background-position: center;
            transition: transform 0.1s ease-out;
        }

        .parallax-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 60px 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
            color: #fff;
            z-index: 10;
        }

        .overlay-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 60px;
        }

        .overlay-left h2 {
            font-size: 45px !important;
            line-height: 1.1;
            margin-bottom: 0;
            font-weight: bold;
        }

       

        /* Footer */

        .content-spacer-footer {
            flex: 1;
        }

        footer {
            background-color: #ffffff;
            padding: 60px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
        }

        .footer-left h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .footer-right {
            text-align: right;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }

        .footer-links a {
            color: #000;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 0.6;
        }

        .footer-links img {
            height: 6%;
            width: 6%;
            vertical-align: middle;
            filter: brightness(0);
            transition: opacity 0.3s;
        }

        .footer-links a:hover img {
            opacity: 0.6;
        }
        .animated-text-container-footer {
            position: relative;
            height: 280px;
            margin-bottom: 40px;
            overflow: hidden;
        }

        .animated-text-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: flex-start;
            align-items: flex-end;
            gap: 0;
            font-size: 120px;
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -0.02em;
        }

        .letter-footer {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            opacity: 0;
        }

        .letter-footer.black {
            color: #000000;
        }

        .letter-footer.gray-dark {
            color: #5a5a5a;
        }

        .letter-footer.gray-light {
            color: #9a9a9a;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .letter-footer:nth-child(1) { animation-delay: 0.1s; }
        .letter-footer:nth-child(2) { animation-delay: 0.2s; }
        .letter-footer:nth-child(3) { animation-delay: 0.3s; }
        .letter-footer:nth-child(4) { animation-delay: 0.4s; }
        .letter-footer:nth-child(5) { animation-delay: 0.5s; }
        .letter-footer:nth-child(6) { animation-delay: 0.6s; }
        .letter-footer:nth-child(7) { animation-delay: 0.7s; }
        .letter-footer:nth-child(8) { animation-delay: 0.8s; }
        .letter-footer:nth-child(9) { animation-delay: 0.9s; }
        .letter-footer:nth-child(10) { animation-delay: 1.0s; }
        .letter-footer:nth-child(11) { animation-delay: 1.1s; }
        .letter-footer:nth-child(12) { animation-delay: 1.2s; }
        .letter-footer:nth-child(13) { animation-delay: 1.3s; }
        .letter-footer:nth-child(14) { animation-delay: 1.4s; }
        .letter-footer:nth-child(15) { animation-delay: 1.5s; }

        .animated-text-footer.restart .letter-footer {
            animation: none;
            transform: translateY(100%);
            opacity: 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
        }

        .footer-bottom-left,
        .footer-bottom-right {
            display: flex;
            gap: 20px;
        }

        .footer-bottom a {
            color: #000;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .footer-bottom a:hover {
            opacity: 0.6;
        }


        .logo-text {
            font-size: 120px !important;
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .logo-gradient {
            background: linear-gradient(90deg, #000 0%, #666 50%, #999 75%, #ccc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /*COLLECTIONS SECTION*/
        .portfolio-section {
            min-height: 240vh;
            position: relative;
            padding-top: 100px;
            
        }

        .scroll-container-collection {
            position: sticky; /* Use sticky to hold it in place */
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .content-wrapper-collection {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .images-container-collection {
           position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            will-change: transform;
        }

        .image-item-collection {
          position: absolute;
            will-change: transform;
            z-index: 1;
        }

        .image-item-collection img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        /* Base Image Positions (Using VW/VH for a proportional, dynamic layout) */
        .img-pos-1 { /* Top Left */
            width: 18vw; 
            min-width: 180px;
            height: 50vh; 
            min-height: 250px;
            top: 8vh;
            left: 8vw;
        }
        .img-pos-2 { /* Top Right */
             width: 24vw; 
             min-width: 280px;
             height: 50vh; 
             min-height: 450px;
             top: 5vh; 
             right: 6vw;
        }
        .img-pos-3 { /* Center Left */
             width: 32vw; 
             min-width: 340px;
             height: 65vh !important; 
             min-height: 320px;
             bottom: 12vh;
             left: 7vw !important;
        }
        .img-pos-4 { /* Bottom Right */
            width: 20vw; 
            min-width: 200px;
            height: 30vh; 
            min-height: 280px;
            bottom: -5vh !important;
            right: 15vw;
    
        }

        .title-container-collection {
            position: relative;
            z-index: 10;
            text-align: center;
            overflow: hidden;
        }

        .main-title-collection {
            font-size: 18vw; /* Responsive font size */
            font-weight: 400;
            line-height: 0.8; /* Tight line height */
            color: #1a1a1a;
            display: inline-flex;
            position: relative;
            white-space: nowrap;
        }

        .char-collection {
           display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .char-collection.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .category-number-collection {
            position: absolute;
            top: 10%;
            right: -10%; 
            font-size: 2vw;
            font-style: normal;
            color: #666;
        }

        /* Contact Card Overlay */
        .contact-card-overlay-collection {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 100;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            padding: 60px 80px;
            text-align: center;
            max-width: 650px;
            width: 30% !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-radius: 8%;
        }


        .contact-card-heading-collection {
            font-size: 20px !important;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: white;
        }

        .contact-card-text-collection {
            font-size: 15px !important;
            line-height: 1.4;
            font-weight: 300;
            color: white;
            margin-bottom: 50px;
            
        }

       

        .contact-card-info {
            font-size: 13px;
            line-height: 2;
            color: #1a1a1a;
            font-family: 'Arial', sans-serif;
        }

        .contact-card-info p {
            margin: 5px 0;
        }

        .contact-card-button-collection {
            display: inline-block;
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: -20px !important;
            transition: background-color 0.3s ease;
            
            border-radius: 20px;
            cursor: pointer;
        }

        .contact-card-button-collection:hover {
            background-color: #333;
        }

       

       



/* Replay button */
.replay-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.replay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive styles */
@media (min-width: 1024px) {
    .letter {
        font-size: 60px !important;
    }
    .menu-title {
        font-size: 3.5rem;
    }
    .content-wrapper {
        padding: 80px 8%;
    }
    .logo-text {
        font-size: 320px;
    }
    .animated-text-footer {
        font-size: 120px;
    }
    .animated-text-container-footer {
        height: 300px;
    }
    .main-title-collection {
                font-size: 15vw;
            }

            .img-1, .img-2, .img-3, .img-4 {
                width: 30vw;
                height: auto; /* Let aspect ratio handle height */
            }

            .contact-card-overlay-collection {
                padding: 70px 90px;
                max-width: 700px;
            }

            .contact-card-text-collection {
                font-size: 36px;
            }

            .img-pos-1 {
        width: 22vw;
        min-width: 160px;
        height: 45vh;
        top: 10vh;
        left: 6vw;
    }
    
    .img-pos-2 {
        width: 28vw;
        min-width: 240px;
        height: 48vh;
        top: 6vh;
        right: 5vw;
    }
    
    .img-pos-3 {
        width: 36vw;
        min-width: 300px;
        height: 60vh !important;
        bottom: 10vh;
        left: 5vw !important;
    }
    
    .img-pos-4 {
        width: 24vw;
        min-width: 180px;
        height: 32vh;
        bottom: -3vh !important;
        right: 12vw;
    }

}

@media (max-width: 768px) {
    .letter {
        font-size: 60px !important;
    }
    .letter-space {
        width: 30px;
    }
    .menu-content {
        flex-direction: column;
        gap: 30px;
    }
    .menu-title {
        font-size: 2.5rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .nav-icon {
        width: 45px;
        height: 45px;
    }
    .expanded-menu {
        padding: 50px 30px;
    }
    .replay-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }
     .content-wrapper {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto 1fr auto;
                padding: 40px 5%;
                gap: 30px;
            }

            .header-text {
                grid-column: 1;
                grid-row: 1;
            }

            .left-content {
                grid-column: 1;
                grid-row: 2;
                padding-bottom: 0;
            }

            .tagline {
                margin-bottom: 15px;
            }

            .image-container {
                grid-column: 1;
                grid-row: 3;
                max-width: 400px;
                margin: 0 auto;
                width: 100%;
            }

            .right-content {
                grid-column: 1;
                grid-row: 4;
                justify-content: center;
                padding-bottom: 0;
            }

            .right-content p {
                text-align: center;
                max-width: 100%;
            }
             .talent-logo {
        font-size: 40px !important;
        font-weight: 700;
        letter-spacing: -2px;
        line-height: 0.85;
        color: #fff;
        text-transform: uppercase;
         margin-left: -30px;
         text-align: center;
         
    }
    
    .talent-logo span {
       display: inline;
        border-right: none;
        padding-right: 0;
        margin-right: 10px;
    }

    .overlay-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .overlay-left h2 {
                font-size: 48px;
            }

            .overlay-right p {
                text-align: left;
            }

            
   footer {
        padding: 40px 20px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: -20px;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-left h3 {
        font-size: 18px;
        font-weight: 700;
        text-align: left;
    }

    .footer-right {
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 60px;
        align-items: flex-start;
    }

    .footer-links li {
        list-style: none;
    }

    /* LEFT COLUMN: HOME, PHOTOGRAPHY, CONTACT, PRIVACY POLICY */
    .footer-links li:nth-child(1),
    .footer-links li:nth-child(2),
    .footer-links li:nth-child(3),
    .footer-links li:nth-child(4) {
        grid-column: 1;
        text-align: left;
    }

    /* RIGHT COLUMN: INSTAGRAM */
    .footer-links li:nth-child(5) {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-left: 0;
    }

    .footer-links a {
        font-size: 18px;
        font-weight: 700;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
        font-size: 14px;
        order: 2;
    }

    /* LEFT: MADE BY NIA DIALE */
    .footer-bottom-left {
        display: flex;
        flex-direction: column-reverse;
        gap: 4px;
    }

    /* RIGHT: PRIVACY POLICY & TERMS */
    .footer-bottom-right {
        display: none;
    }

    .footer-bottom::after {
        content: '@GEFFPHOTOGRAPHY 2025';
        font-weight: 700;
    }

    .animated-text-container-footer {
        height: 140px;
        margin-bottom: 15px;
        margin-top: -80px;
        order: -2;
    }

    .animated-text-footer {
        font-size: 70px;
    }

    /* Reorder footer children */
    footer {
        display: flex;
        flex-direction: column;
    }

    footer .animated-text-container-footer {
        order: -1;
    }

    footer .footer-bottom {
        order: 0;
    }


     .main-title-collection {
                font-size: 12vw;
            }
            
           .category-number-collection {
                font-size: 3vw;
                right: -5%;
            }
            
            .img-1, .img-2, .img-3, .img-4 {
                width: 40vw;
                height: 55vw;
            }

            .img-1 { top: 10%; left: 5%; }
            .img-2 { top: 10%; right: 5%; }
            .img-3 { bottom: 5%; left: 5%; }
            .img-4 { bottom: 5%; right: 5%; }

             .contact-card-overlay-collection {
                padding: 50px 40px;
                max-width: 550px;
            }

            .contact-card-text-collection {
                font-size: 26px;
                margin-bottom: 40px;
            }

           .portfolio-section {
        min-height: 200vh;
        padding-top: 80px;
    }
    
    .img-pos-2 {
        /* Top right image moves to the top */
        width: 45vw;
        min-width: 200px;
        height: 35vh;
        min-height: 280px;
        top: 2vh;
        right: 50%;
        transform: translateX(50%);
    }
    
    .img-pos-1 {
        width: 38vw;
        min-width: 150px;
        height: 32vh;
        min-height: 200px;
        top: 42vh;
        left: 5vw;
    }
    
    .img-pos-3 {
        width: 50vw;
        min-width: 220px;
        height: 40vh !important;
        min-height: 250px;
        bottom: 8vh;
        left: 8vw !important;
    }
    
    .img-pos-4 {
        width: 35vw;
        min-width: 140px;
        height: 28vh;
        min-height: 180px;
        bottom: 2vh !important;
        right: 8vw;
    }


    @keyframes slideInM {
        0% {
            opacity: 1;
            transform: translateX(200px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideInI {
        0% {
            opacity: 1;
            transform: translateX(-200px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {
    .letter {
        font-size: 10px !important;
    }
    .letter-space {
        width: 20px;
    }
    .carousel-container {
        flex-direction: column;
    }
    .carousel-column {
        height: 50%;
    }
    .menu-bar {
        top: 15px;
        padding: 6px 10px;
        gap: 8px;
    }
    .menu-tab {
        padding: 8px 18px;
        font-size: 12px;
    }
    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .menu-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .menu-subtitle {
        font-size: 0.9rem;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 14px;
        gap: 15px;
    }
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    .expanded-menu {
        padding: 40px 25px;
        border-radius: 20px;
    }
    .menu-header {
        margin-bottom: 35px;
    }
    .content-wrapper {
                padding: 30px 5%;
                gap: 25px;
            }

            .image-container {
                max-width: 320px;
            }

             .overlay-left h2 {
                font-size: 36px;
            }

            .overlay-right p {
                font-size: 16px;
            }

            .fixed-footer {
                padding: 15px 20px;
            }
     .footer-left h3 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .animated-text-footer {
        font-size: 60px;
    }

    .animated-text-container-footer {
        height: 120px;
    }

    .main-title-collection {
                font-size: 70px;
            }
            
            .img-1, .img-2, .img-3, .img-4 {
                width: 45vw;
                height: 60vw;
            }

            .contact-card-overlay-collection {
                padding: 40px 30px;
                width: 95%;
            }

            .contact-card-text-collection {
                font-size: 22px;
                margin-bottom: 35px;
            }

            .contact-card-heading-collection {
                font-size: 12px;
                margin-bottom: 25px;
            }

            .contact-card-button-collection {
                padding: 12px 30px;
                font-size: 10px;
            }

            .portfolio-section {
        min-height: 180vh;
        padding-top: 10px !important;
    }
    
    .img-pos-2 {
        width: 55vw;
        min-width: 180px;
        height: 32vh;
        min-height: 240px;
        top: 4vh;
        right: 50%;
        transform: translateX(50%);
    }
    
    .img-pos-1 {
        width: 42vw;
        min-width: 130px;
        height: 28vh;
        min-height: 180px;
        top: 40vh;
        left: 4vw;
    }
    
    .img-pos-3 {
        width: 58vw;
        min-width: 200px;
        height: 36vh !important;
        min-height: 220px;
        bottom: 10vh;
        left: 6vw !important;
    }
    
    .img-pos-4 {
        width: 38vw;
        min-width: 120px;
        height: 24vh;
        min-height: 160px;
        bottom: 3vh !important;
        right: 6vw;
    }

    @keyframes slideInM {
        0% {
            opacity: 1;
            transform: translateX(150px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideInI {
        0% {
            opacity: 1;
            transform: translateX(-150px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media screen and (max-width: 430px) {
    .letter {
        font-size: 35px !important;
    }
    .menu-tab {
        padding: 8px 16px;
        font-size: 11px;
    }
      .menu-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px;
    }
    .image-container {
                max-width: 300px;
            }

                .talent-section{
        height: 150%;
    }
    .content-wrapper {
        padding: 30px 4%;
    }
    .left-content{
        margin-left: 40px !important;
    }
    .right-content{
        padding-bottom: -950px;
    }
    .image-container{
        margin-top: -50px;
    }
     .tagline {
        margin-bottom: 15px;
        margin-left: 21px;
    }

    .logo-text {
                font-size: 35px !important;
            }
            .talent-logo {
                font-size: 37px !important;
            }

            .overlay-left h2 {
                font-size: 26px !important;
                margin-top: 40px !important;
            }

            .animated-text-footer {
                font-size: 34px !important;
            }

            .animated-text-container-footer {
                height: 105px;
            }

             .footer-links img {
                height: 10% !important;
                width: 10% !important;
             }

             .main-title-collection {
                font-size: 65px;
            }
            
            .contact-card-overlay-collection {
                padding: 40px 30px;
                width: 80%;
            }

            .contact-card-text-collection {
                font-size: 16px !important;
                margin-bottom: 35px;
            }

            .contact-card-heading-collection {
                font-size: 22px !important;
                margin-bottom: 25px;
            }

            .img-pos-2 {
        width: 60vw;
        height: 30vh;
        top: 4vh;
    }
    
    .img-pos-1 {
        width: 44vw;
        top: 40vh !important;
        left: -1vw !important;
    }
    
    .img-pos-3 {
        width: 62vw;
        height: 34vh !important;
        bottom: 11vh;
        left: 5vw !important;
    }
    
    .img-pos-4 {
        width: 40vw;
        height: 22vh;
        bottom: 4vh !important;
        right: 5vw;
    }
            
}

@media screen and (max-width: 414px) {
    .letter {
        font-size: 30px !important;
    }
    .menu-title {
        font-size: 1.8rem;
    }
    .talent-section{
        height: 150%;
    }
    .content-wrapper {
        padding: 30px 4%;
    }
    .left-content{
        margin-left: 40px !important;
    }
    .right-content{
        padding-bottom: -950px;
    }
    .image-container{
        margin-top: -50px;
    }
    .talent-logo {
        font-size: 35px !important;
        font-weight: 700;
        letter-spacing: -2px;
        line-height: 0.85;
        color: #fff;
        text-transform: uppercase;
         margin-left: -35px;
         
    }
    
    .talent-logo span {
       display: inline;
        border-right: none;
        padding-right: 0;
        margin-right: 10px;
    }

    .tagline {
        margin-bottom: 15px;
        margin-left: 20px
    }

    .logo-text {
                font-size: 34px !important;
            }
            .overlay-left h2 {
                font-size: 26px !important;
                margin-top: 40px !important;
            }

            .animated-text-footer {
                font-size: 32px !important;
            }

            .animated-text-container-footer {
                height: 100px;
            }

             .footer-links img {
                height: 10% !important;
                width: 10% !important;
             }

              .parallax-zoom-section {
                height: 100vh;  
            }

            .main-title-collection {
                font-size: 62px;
            }

        .contact-card-overlay-collection {
          width: 81% !important;  
         }

         .contact-card-heading-collection {
           font-size: 21px !important; 
         }

          .contact-card-text-collection {
            font-size: 17px;
          }

          .img-pos-2 {
        width: 62vw;
        height: 29vh;
    }
    
    .img-pos-3 {
        width: 64vw;
        height: 33vh !important;
    }
}

@media screen and (max-width: 390px) {
    .letter {
        font-size: 30px !important;
    }
    .menu-bar {
        gap: 6px;
        padding: 6px 8px;
    }
    .menu-tab {
        padding: 7px 14px;
    }
    .social-link {
        font-size: 0.7rem !important;
    }
    .image-container {
        max-width: 280px;
    }
    .talent-logo {
        font-size: 37px !important;
        font-weight: 700;
        letter-spacing: -2px;
        line-height: 0.85;
        color: #fff;
        text-transform: uppercase;
         margin-left: -45px;
         text-align: center;
         
    }

    .logo-text {
                font-size: 30px;
            }

            .overlay-left h2 {
                font-size: 26px !important;
                margin-top: 40px !important;
            }

           .footer-left h3 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .animated-text-footer {
        font-size: 31px !important;
    }

    .animated-text-container-footer {
        height: 100px;
    }

    .main-title-collection {
                font-size: 58px;
            }
            
            .category-number-collection {
                font-size: 18px;
                right: -40px;
            }

             .contact-card-overlay-collection {
                padding: 30px 20px;
            }

            .contact-card-text-collection {
                font-size: 15px;
                margin-bottom: 30px;
            }

             .img-pos-2 {
        width: 65vw;
        height: 28vh;
        top: 5vh;
    }
    
    .img-pos-1 {
        width: 46vw;
        height: 26vh;
        top: 37vh;
    }
    
    .img-pos-3 {
        width: 66vw;
        height: 32vh !important;
        bottom: 12vh;
    }
    
    .img-pos-4 {
        width: 42vw;
        height: 21vh;
        bottom: 5vh !important;
    }
}

@media screen and (max-width: 375px) {
    .letter {
        font-size: 28px !important;
    }
    .menu-title {
        font-size: 1.2rem !important;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .expanded-menu {
        padding: 35px 20px;
    }
    .content-wrapper {
        gap: 20px;
    }

    .image-container {
        max-width: 260px;
    }
     .talent-logo {
                font-size: 34px !important;
            }

    .logo-text {
                font-size: 90px;
            }

            .logo-section {
                padding: 80px 20px;
            }

            .parallax-overlay {
                padding: 40px 20px;
            }

           .footer-left h3 {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .animated-text-footer {
        font-size: 42px;
    }

    .animated-text-container-footer {
        height: 85px;
    }

    .footer-bottom {
        font-size: 10px;
    }

     .main-title-collection {
                font-size: 55px;
            }
            
           .header-title-collection {
                font-size: 12px;
            }

             .img-3, .img-4 {
                width: 130px !important;
                height: 190px !important;
            }

            .contact-card-text-collection {
                font-size: 17px;
            }

            .contact-card-button-collection {
                padding: 10px 25px;
            }

            .img-pos-2 {
        width: 68vw;
        height: 27vh;
        min-height: 200px;
    }
    
    .img-pos-1 {
        width: 48vw;
        height: 25vh;
        min-height: 160px;
        left: 2vw;
    }
    
    .img-pos-3 {
        width: 68vw;
        height: 31vh !important;
        min-height: 200px;
        left: 4vw !important;
    }
    
    .img-pos-4 {
        width: 44vw;
        height: 20vh;
        min-height: 140px;
        right: 4vw;
    }
}

@media screen and (max-width: 360px) {
    .letter {
        font-size: 30px !important;
    }
    .menu-tab {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .social-link {
        font-size: 0.85rem !important;
    }
    .content-wrapper {
        padding: 25px 4%;
    }

    .image-container {
        max-width: 250px;
    }
     .talent-logo {
        font-size: 34px !important;
        font-weight: 700;
        letter-spacing: -2px;
        line-height: 0.85;
        color: #fff;
        text-transform: uppercase;
         margin-left: -45px;
         
    }
    
    .talent-logo span {
       display: inline;
        border-right: none;
        padding-right: 0;
        margin-right: 10px;
    }

     .tagline {
        margin-bottom: 15px;
        margin-left: 4px;
    }

    .logo-text {
                font-size: 30px !important;
            }

            .overlay-left h2 {
                font-size: 28px;
            }

            .overlay-right p {
                font-size: 14px;
            }

           .animated-text-footer {
        font-size: 28px !important;
    }

    .animated-text-container-footer {
        height: 90px;
    }

    .main-title-collection {
                font-size: 52px;
            }
            
            .dropdown-collection {
                padding: 12px 20px;
                font-size: 12px;
            }

            .contact-card-text-collection {
                font-size: 16px;
            }

            .contact-card-heading-collection {
                font-size: 11px;
            }

               .img-pos-2 {
        width: 70vw;
        height: 26vh;
        top: 6vh;
    }
    
    .img-pos-1 {
        width: 50vw;
        top: 36vh;
    }
    
    .img-pos-3 {
        width: 70vw;
        height: 30vh !important;
        bottom: 13vh;
    }
    
    .img-pos-4 {
        width: 46vw;
        bottom: 6vh !important;
    }

}

@media screen and (max-width: 320px) {
    .letter {
        font-size: 32px !important;
    }
    .menu-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .menu-subtitle {
        font-size: 0.8rem;
    }
    .menu-tab {
        padding: 6px 10px;
        font-size: 9px;
    }
    .nav-link {
        font-size: 0.8rem;
        gap: 10px;
    }
    .nav-icon {
        width: 35px;
        height: 35px;
    }
    .content-wrapper {
        padding: 20px 3%;
        gap: 15px;
    }

    .image-container {
        max-width: 240px;
    }

    .fixed-footer {
                padding: 12px 15px;
            }

            .footer-left, .footer-right a {
                font-size: 11px;
            }

            .logo-text {
                font-size: 75px;
            }

            .overlay-left h2 {
                font-size: 24px;
            }

            .overlay-right p {
                font-size: 13px;
            }

            footer {
                padding: 20px 12px 18px;
            }

            .animated-text-footer {
                font-size: 42px;
            }

            .animated-text-container-footer {
                height: 65px;
                margin-bottom: 18px;
            }

            .footer-left h3,
            .footer-links a {
                font-size: 12px;
            }

            .footer-bottom {
                font-size: 10px;
                gap: 12px;
            }

            .footer-bottom-left,
            .footer-bottom-right {
                gap: 12px;
            }

            .main-title-collection {
                font-size: 45px;
            }
            
            .img-3, .img-4 {
                width: 110px !important;
                height: 160px !important;
            }

            .contact-card-overlay-collection {
                padding: 25px 15px;
            }

            .contact-card-text-collection {
                font-size: 15px;
                margin-bottom: 25px;
            }

             .contact-card-button-collection {
                padding: 10px 20px;
                font-size: 9px;
            }

             .portfolio-section {
        min-height: 160vh;
        padding-top: 50px;
    }
    
    .img-pos-2 {
        width: 75vw;
        height: 25vh;
        min-height: 180px;
        top: 7vh;
    }
    
    .img-pos-1 {
        width: 52vw;
        height: 24vh;
        min-height: 140px;
        top: 35vh;
        left: 2vw;
    }
    
    .img-pos-3 {
        width: 72vw;
        height: 29vh !important;
        min-height: 180px;
        bottom: 14vh;
        left: 3vw !important;
    }
    
    .img-pos-4 {
        width: 48vw;
        height: 19vh;
        min-height: 120px;
        bottom: 7vh !important;
        right: 3vw;
    }
}