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

        body {
            background-color: white;
            overflow-x: hidden;
            font-family: Arial, sans-serif;
        }

/*WHATSAPP*/
.whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px; 
            height: 50px;
            background-color: black;
            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;
        }


/* 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;
}


         .main-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            margin-top: -60px;
        }

        /* LOADING ANIMATION STYLES */
        .logo-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            z-index: 1000;
            transition: opacity 1s ease-out;
        }

        .logo-section.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
            height: 400px;
        }

        .letter {
            font-size: 200px;
            font-weight: 900;
            color: black;
            line-height: 1;
            transition: transform 1s ease-in-out;
            position: relative;
            z-index: 2;
        }

        .letter.static {
            position: relative;
        }

        .letter.moving {
            transition: transform 1s ease-in-out;
        }

        .flash-container {
            position: absolute;
            width: 220px;
            height: 220px;
            opacity: 0;
            z-index: 1;
            border-radius: 50%;
            transition: none;
        }

        .flash-container.active {
            opacity: 1;
        }
      

        /* HERO SECTION STYLES */
        .hero-section {
            position: relative;
            width: 100%;
            height: 110vh;
            overflow: hidden;
            opacity: 0;
            transition: opacity 1.5s ease-in;
        }

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

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
        }

        .hero-content {
            position: absolute;
            bottom: 80px;
            left: 60px;
            z-index: 10;
            color: white;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 100px !important;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 20px;
            line-height: 1;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.6;
            opacity: 0.95;
        }

        .hero-tags {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .hero-tag {
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-tag:hover {
            background-color: rgba(255, 255, 255, 0.9);
            color: black;
        }

        .hero-tag.active {
            background-color: white;
            color: black;
        }

 .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mobile-video {
            display: none;
        }

        
         /*SHORT PARAGRAGHS*/
     .clients-section {
            padding: 80px 60px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            gap: 120px;
            background-color: #000;
        }

        .label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            white-space: nowrap;
        }

        .label.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .content {
            flex: 1;
            max-width: 650px;
        }

        .content p {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.35;
            color: white;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .content p:first-child {
            transition-delay: 0.1s;
        }

        .content p:last-child {
            transition-delay: 0.25s;
            margin-bottom: 0;
        }

        .content p.animate {
            opacity: 1;
            transform: translateY(0);
        }
          .section-wrapper {
            position: relative;
            background-color: #000;
        }


        /*PORTRAITS*/
/*PORTRAITS*/
.menswear-section {
  position: relative;
  height: 300vh;
  width: 100%;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: white;
  z-index: 5;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  white-space: nowrap;
}

.title.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-track {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.1s linear;
  align-items: center;
  height: 100%;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 25px;
  justify-content: center; /* Center the column content */
}

.gallery-column:last-child {
  margin-right: 0;
}

.gallery-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  z-index: 10;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Column 1 */
.col-1 .gallery-item.top {
  width: 220px;
  height: 300px;
  margin-bottom: 20px;
}
.col-1 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-1 {
  margin-top: -40px; /* Reduced from -80px */
}

/* Column 2 */
.col-2 .gallery-item.top {
  width: 220px;
  height: 300px;
  margin-bottom: 20px;
}
.col-2 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-2 {
  margin-top: 50px; /* Reduced from 100px */
}

/* Column 3 */
.col-3 .gallery-item.top {
  width: 200px;
  height: 280px;
  margin-bottom: 20px;
}
.col-3 .gallery-item.bottom {
  width: 200px;
  height: 280px;
}
.col-3 {
  margin-top: -30px; /* Reduced from -60px */
}

/* Column 4 */
.col-4 .gallery-item.top {
  width: 220px;
  height: 300px;
  margin-bottom: 20px;
}
.col-4 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-4 {
  margin-top: 40px; /* Reduced from 80px */
}

/* Columns 5-8 */
.col-5 .gallery-item.top,
.col-5 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-5 .gallery-item.top { margin-bottom: 20px; }
.col-5 { margin-top: -40px; } /* Reduced from -80px */

.col-6 .gallery-item.top,
.col-6 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-6 .gallery-item.top { margin-bottom: 20px; }
.col-6 { margin-top: 50px; } /* Reduced from 100px */

.col-7 .gallery-item.top,
.col-7 .gallery-item.bottom {
  width: 200px;
  height: 280px;
}
.col-7 .gallery-item.top { margin-bottom: 20px; }
.col-7 { margin-top: -30px; } /* Reduced from -60px */

.col-8 .gallery-item.top,
.col-8 .gallery-item.bottom {
  width: 220px;
  height: 300px;
}
.col-8 .gallery-item.top { margin-bottom: 20px; }
.col-8 { margin-top: 40px; } /* Reduced from 80px */

.next-section {
  height: 100vh;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f3;
  font-size: 48px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #1a1a1a;
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

    /*SERVICES*/

    .section-label-service {
      font-size: 25 !important;
    font-weight: 700 !important;
      letter-spacing: 1px;
      color: #000;
      
      font-weight: 500;
      margin-left: 650px;
      
    }

    .services-list {
      max-width: 1200px;
      margin: 0 auto;
     
    }
    .service-item {
      border-bottom: 1px solid #e5e5e5;
      overflow: hidden;
    }
    .service-header {
      display: flex;
      align-items: center;
      padding: 28px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .service-header:hover {
      opacity: 0.7;
    }
    .service-number {
      font-size: 13px;
      color: #888;
      width: 80px;
      flex-shrink: 0;
    }
    .service-title {
      flex: 1;
      font-size: 25px;
      font-weight: 600;
      padding-left: 200px;
    }
    .service-toggle {
      width: 44px;
      height: 44px;
      border: 1px solid #e0e0e0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      background: #fff;
    }
    .service-toggle svg {
      transition: transform 0.3s ease;
    }
    .service-item.active .service-toggle svg {
      transform: rotate(45deg);
    }
    .service-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }
    .service-item.active .service-content {
      max-height: 400px;
      padding-bottom: 30px;
    }
    .images-container-service {
      display: flex;
      gap: 15px;
      padding: 10px 0 10px 80px;
      overflow-x: auto;
    }
    .service-image {
      width: 210px;
      height: 200px;
      border-radius: 12px;
      object-fit: cover;
      flex-shrink: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }
    .service-item.active .service-image {
      opacity: 1;
      transform: translateY(0);
    }
    .service-item.active .service-image:nth-child(1) { transition-delay: 0.1s; }
    .service-item.active .service-image:nth-child(2) { transition-delay: 0.15s; }
    .service-item.active .service-image:nth-child(3) { transition-delay: 0.2s; }
    .service-item.active .service-image:nth-child(4) { transition-delay: 0.25s; }
    .service-item.active .service-image:nth-child(5) { transition-delay: 0.3s; }
   

   
        /*VIEW ALL IMAGES SECTION*/


        /* Main collaboration section */
    .collaboration-section {
      position: relative;
      background: #000;
      min-height: 380px;
      display: flex;
      overflow: hidden;
      border-radius: 15px;
    }

    /* Left side - ODD MAN OUT */
    .left-content-collaboration {
      position: absolute;
      top: 30px;
      left: 40px;
      z-index: 10;
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .left-content-collaboration.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .brand-name {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* Right side content */
    .right-content-collaboration {
      position: absolute;
      top: 30px;
      right: 40px;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      z-index: 10;
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    }

    .right-content-collaboration.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .section-label-collaboration {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 80px;
    }

    .main-heading-collaboration {
      color: #fff;
      font-size: 48px;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 30px;
      max-width: 450px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #000;
      padding: 14px 28px;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.2s ease;
      width: fit-content;
    }

    .cta-button:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
    }

    .cta-button svg {
      width: 16px;
      height: 16px;
    }

    /* Pagination dot */
    .pagination {
      position: absolute;
      bottom: 30px;
      right: 40px;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.8s ease 0.4s;
    }

    .pagination.animate {
      opacity: 1;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #000;
      border-radius: 50%;
    }

    /* Bottom white section for dot */
    .bottom-section-collaboration {
      background: #fff;
      padding: 40px;
      display: flex;
      justify-content: flex-end;
    }

    /*LETS COLLABORATE SECTION*/
    .social-section-collaborate {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 40px;
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .social-section-collaborate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header-collaborate {
      display: flex;
      align-items: flex-start;
      margin-bottom: 50px;
      gap: 40px;
    }

    .section-label-collaborate {
      font-size: 12px;
      color: #000;
      letter-spacing: 0.5px;
      font-weight: 400;
      padding-top: 15px;
    }

    .section-title-collaborate {
      font-size: 52px;
      font-weight: 600;
      line-height: 1.15;
      color: #000;
      max-width: 600px;
      letter-spacing: -1px;
    }

    .images-container-collaborate {
      display: flex;
      gap: 16px;
      margin-bottom: 50px;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    .image-item-collaborate {
      flex: 0 0 auto;
      width: 280px;
      height: 320px;
      border-radius: 12px;
      overflow: hidden;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .social-section-collaborate.visible .image-item-collaborate {
      opacity: 1;
      transform: translateY(0);
    }

    .social-section-collaborate.visible .image-item-collaborate:nth-child(1) { transition-delay: 0.1s; }
    .social-section-collaborate.visible .image-item-collaborate:nth-child(2) { transition-delay: 0.2s; }
    .social-section-collaborate.visible .image-item-collaborate:nth-child(3) { transition-delay: 0.3s; }
    .social-section-collaborate.visible .image-item-collaborate:nth-child(4) { transition-delay: 0.4s; }

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

  .collaborate-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      background: #000;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      color: #f5f5f3;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      opacity: 0;
      transform: translateY(30px);
      white-space: nowrap;
       margin-left: 120px; 
    }

    .collaborate-btn svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .social-section-collaborate.visible .collaborate-btn {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.6s;
    }

    .collaborate-btn:hover {
      border-color: #ccc;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .collaborate-btn .arrow {
      font-size: 14px;
      transform: rotate(-45deg);
    }


    /* 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: 25px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            color: #000;
        }

        .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;
            color: #000;
        }

        .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;
        }



    /* Desktop Large */
@media (min-width: 1024px) {
  .menu-title {
        font-size: 3.5rem;
    }
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

     .flash-container {
        width: 220px;
        height: 220px;
    }
       .letter {
                font-size: 200px;
            }
            .hero-content h1 {
                font-size: 72px;
            }

    .clients-section {
        padding: 80px 60px;
        gap: 120px;
        flex-direction: row;
    }
    
    .content p {
        font-size: 32px;
    }
    
    .title {
        font-size: 180px;
    }
    
    .gallery-column {
        margin-right: 180px;
    }

    .social-section-collaborate {
    padding: 80px 40px;
  }
  
  .section-title-collaborate {
    font-size: 52px;
  }
  
  .image-item-collaborate {
    width: 280px;
    height: 320px;
  }

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

}

/* Tablet */
@media (max-width: 768px) {

   .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;
    }

    .logo-section {
        height: 35vh;
    }

    .logo-container {
        height: 280px;
      margin-top: 300px !important;
    }

   .letter {
                font-size: 100px;
            }
    .flash-container {
        width: 160px;
        height: 160px;
        margin-top: -5px !important;
    }

     .hero-content {
                bottom: 100px !important;
                left: 40px;
                max-width: calc(100% - 80px);
            }
            .hero-content h1 {
                font-size: 48px !important;
            }
            .hero-content p {
                font-size: 16px;
            }

        .desktop-video {
                display: none;
            }
            .mobile-video {
                display: block;
            }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .content-left {
        order: 2;
        min-height: 500px;
    }

    .content-right {
        order: 1;
        padding: 40px 30px;
    }

    .content-right h2 {
        font-size: 24px;
        margin-bottom: 180px;
    }

    .content-section {
        padding: 30px 20px;
    }

    
   .clients-section {
        padding: 60px 40px;
        gap: 60px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .label {
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .content {
        max-width: 100%;
    }
    
    .content p {
        font-size: 24px;
        margin-bottom: 20px;
    }
    


  .menswear-section {
    position: relative;
    min-height: 200vh; /* Ensure enough scroll space */
  }
 .sticky-container {
    position: relative;
    height: 100%;
  }
  
  .sticky-container .title {
    /* Fixed positioning - stays in center of viewport */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    
    /* Fade in/out smoothly */
    opacity: 0;
    transition: opacity 0.6s ease;
    
    /* Prevent title from blocking clicks on images */
    pointer-events: none;
    
    /* Styling */
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
    margin: 0;
  }

  .sticky-container .title.visible {
    opacity: 1;
  }
  
  
  .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    text-align: center;
    margin: 0;
    white-space: normal;
    line-height: 0.9;
    opacity: 0;
    z-index: 1;
    color: #000;
  }

  .title.visible {
    opacity: 0.2;
  }

  .gallery-track {
    position: relative;
    left: 0;
    transform: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    transition: none;
    height: auto;
    z-index: 5;
  }

  .gallery-column {
    margin-right: 0;
    margin-top: 0 !important;
    justify-content: flex-start;
  }

  .gallery-item {
    margin-bottom: 0 !important;
  }


  
  .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    width: 100%;
    height: 320px;
    margin-bottom: 0;
  }

  .progress-bar {
    display: none;
  }

  .next-section {
    font-size: 32px;
  }



    .section-label-service {
    font-size: 55 !important;
    font-weight: 600 !important;
    margin-left: 0;
    text-align: center;
    margin-bottom: 180px !important;
    padding: 0 20px;
  }

  .services-list {
    padding: 0 20px;
    margin-top: -160px !important;
  }

  .service-header {
    padding: 20px 0;
  }

  .service-number {
    font-size: 12px;
    width: 50px;
  }

  .service-title {
    font-size: 18px;
    padding-left: 0;
    padding-right: 10px;
  }

  .service-toggle {
    width: 36px;
    height: 36px;
  }

  .service-toggle svg {
    width: 18px;
    height: 18px;
  }

  .service-item.active .service-content {
    max-height: 600px;
    padding-bottom: 20px;
  }

  .images-container-service {
    padding: 10px 0;
    gap: 10px;
  }

  .service-image {
    width: 160px;
    height: 150px;
    border-radius: 8px;
  }

  .collaboration-section {
    min-height: 250px !important;
  }

  .left-content-collaboration {
    top: 20px;
    left: 25px;
  }

  .brand-name {
    font-size: 11px;
  }

  .right-content-collaboration {
    top: 20px;
    right: 25px;
  }

  .section-label-collaboration {
    font-size: 11px;
    margin-bottom: 50px;
    margin-left: 180px !important;
  }

  .main-heading-collaboration {
    font-size: 32px;
    margin-top: 60px !important;
    max-width: 320px;
    margin-left: 40px;
  }

  .cta-button {
    padding: 11px 22px;
    font-size: 12px;
    margin-left: 40px;
  }

  .pagination {
    bottom: 20px;
    right: 25px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .bottom-section-collaboration {
    padding: 25px;
  }

   .social-section-collaborate {
    padding: 60px 30px;
  }
  
  .section-header-collaborate {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .section-label-collaborate {
    padding-top: 0;
  }
  
  .section-title-collaborate {
    font-size: 42px;
    max-width: 100%;
  }
  
  .images-container-collaborate {
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .image-item-collaborate {
    width: 240px;
    height: 280px;
  }
  
  .collaborate-btn {
    margin-left: 0;
    padding: 12px 20px;
  }

     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;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
   .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;
    }


    .letter {
                font-size: 80px;
            }
            .flash-container {
                width: 90px;
                height: 90px;
            }
            .hero-content {
                bottom: 40px;
                left: 25px;
                max-width: calc(100% - 50px);
            }
            .hero-content h1 {
                font-size: 36px;
            }
            .hero-content p {
                font-size: 14px;
            }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-left {
        order: 2;
        min-height: 450px;
    }

    .content-right {
        order: 1;
        padding: 30px 20px;
    }

    .content-right h2 {
        font-size: 20px;
        margin-bottom: 120px;
    }

    .content-section {
        padding: 20px 15px;
    }

    .video-container {
        border-radius: 40%;
    }

   .clients-section {
        padding: 50px 25px;
        gap: 40px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .label {
        font-size: 9px;
        flex-shrink: 0;
    }
    
    .content p {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
  .menswear-section {
    padding: 60px 0 40px;
  }

  .title {
    font-size: 56px;
  }

  .sticky-container {
    padding: 0 15px;
  }

  .gallery-track {
    gap: 12px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 280px;
  }

    .section-label-service {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .service-header {
    padding: 18px 0;
  }

  .service-number {
    font-size: 11px;
    width: 40px;
  }

  .service-title {
    font-size: 16px;
    font-weight: 500;
  }

  .service-toggle {
    width: 32px;
    height: 32px;
  }

  .service-toggle svg {
    width: 16px;
    height: 16px;
  }

  .images-container-service {
    padding: 8px 0;
    gap: 8px;
  }

  .service-image {
    width: 140px;
    height: 130px;
  }
  .collaboration-section {
    min-height: 280px;
  }

  .left-content-collaboration {
    top: 18px;
    left: 20px;
  }

  .brand-name {
    font-size: 10px;
  }

  .right-content-collaboration {
    top: 18px;
    right: 20px;
  }

  .section-label-collaboration {
    font-size: 10px;
    margin-bottom: 40px;
  }

  .main-heading-collaboration {
    font-size: 26px;
    margin-bottom: 18px;
    max-width: 260px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 11px;
  }

  .cta-button svg {
    width: 14px;
    height: 14px;
  }

  .pagination {
    bottom: 18px;
    right: 20px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .bottom-section-collaboration {
    padding: 20px;
  }

  .social-section-collaborate {
    padding: 50px 20px;
  }
  
  .section-header-collaborate {
    margin-bottom: 30px;
  }
  
  .section-title-collaborate {
    font-size: 36px;
  }
  
  .images-container-collaborate {
    gap: 10px;
  }
  
  .image-item-collaborate {
    width: 200px;
    height: 240px;
  }
  
  .collaborate-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

    .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;
    }
}

/* iPhone 14 Pro Max, iPhone 13/12 Pro Max */
@media screen and (max-width: 430px) {

   .menu-tab {
        padding: 8px 16px;
        font-size: 11px;
    }
      .menu-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px;
    }

    .logo-section {
        height: 28vh;
    }

    .logo-container {
        height: 180px;
         margin-bottom: -160px !important;
    }

    .letter {
                font-size: 70px;
            }
            .hero-content h1 {
                font-size: 32px;
            }

    .content-left {
        min-height: 420px;
        margin-top: -90px !important;
    }

    .content-right {
        padding: 25px 18px;
    }

    .content-right h2 {
        font-size: 19px;
        margin-bottom: 100px;
    }

   .clients-section {
        padding: 40px 20px;
        gap: 30px;
        flex-direction: row;
    }
    
    .label {
        font-size: 8px;
    }
    
    .content p {
        font-size: 18px;
    }
    
    .title {
    font-size: 52px;
  }

  .gallery-track {
    gap: 10px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 270px;
  }

   .main-heading-collaboration {
    font-size: 24px;
    max-width: 240px;
  }

  .section-label-collaboration {
    margin-bottom: 38px;
  }

  .social-section-collaborate {
    padding: 40px 20px;
  }
  
  .section-title-collaborate {
    font-size: 32px;
  }
  
  .image-item-collaborate {
    width: 180px;
    height: 220px;
  }

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

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

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

/* iPhone 14 Pro, iPhone 13/12 Pro */
@media screen and (max-width: 414px) {
 .menu-title {
        font-size: 1.8rem;
    }

    .logo-section {
        height: 27vh;
    }

    .logo-container {
        margin-bottom: -160px !important;
    }

   .letter {
                font-size: 65px;
            }

    .content-left {
        min-height: 400px;
        margin-top: -90px !important;
    }

    .content-right h2 {
        font-size: 18px;
        margin-bottom: 90px;
    }
      .image-container {
        width: 190px;
        height: 200px;
    }

  .clients-section {
        padding: 40px 18px;
        gap: 28px;
    }
    
    .content p {
        font-size: 17px;
    }
    
    .title {
    font-size: 50px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 260px;
  }

    .main-heading-collaboration {
    font-size: 23px;
    max-width: 230px;
  }

   .section-title-collaborate {
    font-size: 30px;
  }
  
  .image-item-collaborate {
    width: 170px;
    height: 210px;
  }

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

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

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

/* iPhone 14, iPhone 13/12 */
@media screen and (max-width: 390px) {

   .menu-bar {
        gap: 6px;
        padding: 6px 8px;
    }
    .menu-tab {
        padding: 7px 14px;
    }

    .logo-section {
        height: 26vh;
    }

    .logo-container {
        height: 170px;
    }

     .letter {
                font-size: 60px;
            }
            .hero-content h1 {
                font-size: 28px;
            }

    .image-container {
        width: 100px;
        height: 140px;
    }

    .content-left {
        min-height: 380px;
    }

    .content-right {
        padding: 25px 16px;
    }

    .content-right h2 {
        font-size: 18px;
        margin-bottom: 80px;
    }


  .clients-section {
        padding: 40px 16px;
        gap: 25px;
        flex-direction: row;
    }
    
    .label {
        font-size: 8px;
    }
    
    .content p {
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 1.35;
    }
    
     .title {
    font-size: 48px;
  }

  .sticky-container {
    padding: 0 12px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 250px;
  }

   .collaboration-section {
    min-height: 270px;
  }

  .main-heading-collaboration {
    font-size: 22px;
    max-width: 220px;
  }

  .section-label-collaboration {
    margin-bottom: 36px;
  }

   .section-title-collaborate {
    font-size: 28px;
  }
  
  .image-item-collaborate {
    width: 160px;
    height: 200px;
  }

     .social-link {
        font-size: 0.7rem !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;
    }
}

/* iPhone SE, iPhone 13 mini */
@media screen and (max-width: 375px) {

   .menu-title {
        font-size: 1.2rem !important;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .expanded-menu {
        padding: 35px 20px;
    }

    .logo-section {
        height: 25vh;
    }

    .logo-container {
        height: 160px;
    }

     .letter {
                font-size: 55px;
            }
            .flash-container {
                width: 70px;
                height: 70px;
            }
            .hero-content {
                bottom: 30px;
                left: 20px;
            }

    .image-container {
        width: 95px;
        height: 130px;
    }

    .content-left {
        min-height: 360px;
    }

    .content-right {
        padding: 22px 15px;
    }

    .content-right h2 {
        font-size: 17px;
        margin-bottom: 70px;
    }

    .video-container {
        border-radius: 35%;
    }

    .clients-section {
        padding: 35px 15px;
        gap: 22px;
    }
    
    .label {
        font-size: 7px;
    }
    
    .content p {
        font-size: 15px;
    }
    
   .title {
    font-size: 46px;
  }

  .gallery-track {
    gap: 8px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 240px;
  }

    .main-heading-collaboration {
    font-size: 21px;
    max-width: 210px;
  }

  .cta-button {
    padding: 9px 18px;
    font-size: 10px;
  }

  .social-section-collaborate {
    padding: 40px 16px;
  }
  
  .section-title-collaborate {
    font-size: 26px;
  }
  
  .image-item-collaborate {
    width: 150px;
    height: 190px;
  }
  
  .collaborate-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

      .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;
    }
}

/* Samsung Galaxy S8+, Pixel 2 */
@media screen and (max-width: 360px) {
   .menu-tab {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .logo-section {
        height: 24vh;
    }

    .logo-container {
        height: 150px;
        margin-bottom: -160px !important;
        align-items: center;
    }

     .letter {
                font-size: 50px;
            }

    .content-left {
        min-height: 340px;
        margin-top: -60px !important;
    }

    .content-right h2 {
        font-size: 16px;
        margin-bottom: 60px;
    }
    .image-container {
        width: 190px;
        height: 200px;
    }

    .clients-section {
        padding: 35px 14px;
        gap: 20px;
    }
    
    .content p {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .title {
    font-size: 44px;
  }

  .menswear-section {
    padding: 50px 0 40px;
  }

  .sticky-container {
    padding: 0 10px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 230px;
  }

   .collaboration-section {
    min-height: 260px;
    width: 102% !important;
  }

  .left-content-collaboration {
    top: 16px;
    left: 18px;
  }

  .right-content-collaboration {
    top: 16px;
    right: 18px;
  }

  .brand-name {
    font-size: 9px;
  }

  .section-label-collaboration {
    font-size: 9px;
    margin-bottom: 34px;
  }

  .main-heading-collaboration {
    font-size: 20px;
    max-width: 200px;
  }

  .pagination {
    bottom: 16px;
    right: 18px;
  }

  .section-title-collaborate {
    font-size: 24px;
  }
  
  .image-item-collaborate {
    width: 140px;
    height: 180px;
  }

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

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

}

/* iPhone 5/SE (1st gen) */
@media screen and (max-width: 320px) {
  .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;
    }

    .logo-section {
        height: 22vh;
    }

    .logo-container {
        height: 130px;
        margin-bottom: -60px !important;
    }

    .letter {
                font-size: 45px;
            }
            .flash-container {
                width: 60px;
                height: 60px;
            }
            .hero-content h1 {
                font-size: 24px;
            }

    .image-container {
        width: 80px;
        height: 110px;
    }

    .content-left {
        min-height: 320px;
    }

    .content-right {
        padding: 20px 12px;
    }

    .content-right h2 {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .content-section {
        padding: 15px 10px;
    }

    .video-container {
        border-radius: 30%;
    }

     .clients-section {
        padding: 30px 12px;
        gap: 18px;
        flex-direction: row;
    }
    
    .label {
        font-size: 7px;
    }
    
    .content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
   .title {
    font-size: 38px;
  }

  .menswear-section {
    padding: 40px 0 30px;
  }

  .sticky-container {
    padding: 0 8px;
  }

  .gallery-track {
    gap: 6px;
  }

  .col-1 .gallery-item.top,
  .col-1 .gallery-item.bottom,
  .col-2 .gallery-item.top,
  .col-2 .gallery-item.bottom,
  .col-3 .gallery-item.top,
  .col-3 .gallery-item.bottom,
  .col-4 .gallery-item.top,
  .col-4 .gallery-item.bottom,
  .col-5 .gallery-item.top,
  .col-5 .gallery-item.bottom,
  .col-6 .gallery-item.top,
  .col-6 .gallery-item.bottom,
  .col-7 .gallery-item.top,
  .col-7 .gallery-item.bottom,
  .col-8 .gallery-item.top,
  .col-8 .gallery-item.bottom {
    height: 200px;
  }

  .next-section {
    font-size: 24px;
  }
  

     .collaboration-section {
    min-height: 250px;
  }

  .left-content-collaboration {
    top: 15px;
    left: 15px;
  }

  .right-content-collaboration {
    top: 15px;
    right: 15px;
  }

  .brand-name {
    font-size: 8px;
  }

  .section-label-collaboration {
    font-size: 8px;
    margin-bottom: 30px;
  }

  .main-heading-collaboration {
    font-size: 18px;
    margin-bottom: 16px;
    max-width: 180px;
  }

  .cta-button {
    padding: 8px 16px;
    font-size: 9px;
  }

  .cta-button svg {
    width: 12px;
    height: 12px;
  }

  .pagination {
    bottom: 15px;
    right: 15px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .bottom-section-collaboration {
    padding: 18px 15px;
  }

   .social-section-collaborate {
    padding: 30px 16px;
  }
  
  .section-title-collaborate {
    font-size: 22px;
  }
  
  .images-container-collaborate {
    gap: 8px;
  }
  
  .image-item-collaborate {
    width: 130px;
    height: 170px;
  }
  
  .collaborate-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

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

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

             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;
            }

}



 /* Scoped styles for the photography slider section */
    #photography-slider-section * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    #photography-slider-section {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      position: relative;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .photo-section {
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1),
                  opacity 0.8s ease;
      transform: translateY(100%);
      opacity: 0;
    }

    .photo-section.active {
      transform: translateY(0);
      opacity: 1;
      z-index: 2;
    }

    .photo-section.passed {
      transform: translateY(-100%);
      opacity: 0;
    }

    .photo-content-wrapper {
      position: relative;
      z-index: 10;
      text-align: center;
      width: 90%;
      max-width: 1400px;
      padding: 2rem;
    }

    .photo-section-title {
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }

    .photo-section-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.8rem);
      font-weight: 500;
      color: #e0e0e0;
      margin-bottom: 4rem;
      letter-spacing: 0.02em;
    }

    .photo-image-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
      margin: 0 auto;
      max-width: 1200px;
    }

    .photo-image-placeholder {
      aspect-ratio: 3/4;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .photo-image-placeholder:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-5px);
    }

    .photo-placeholder-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .photo-placeholder-content span {
      font-size: 0.9rem;
      font-weight: 500;
    }

    .photo-scroll-indicator {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.6);
      animation: photo-bounce 2s infinite;
    }

    @keyframes photo-bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-10px);
      }
      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

    .photo-abstract-shapes {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 400px;
      z-index: 1;
      pointer-events: none;
    }

    .photo-abstract-shapes svg {
      width: 100%;
      height: 100%;
    }

    .photo-section-indicator {
      position: fixed;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .photo-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .photo-dot.active {
      background: #ffffff;
      transform: scale(1.3);
    }

    .photo-dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    @media (min-width: 1024px) {
      .photo-image-grid {
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .photo-image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }

      .photo-section-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
      }

      .photo-section-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.4rem);
        margin-bottom: 3rem;
      }

      .photo-content-wrapper {
        padding: 1.5rem;
      }
    }

     @media (max-width: 480px) {
      .photo-content-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 1rem;
        text-align: center;
      }

      .photo-section-title {
        grid-column: 1 / -1;
        grid-row: 1;
      }

      .photo-image-grid {
        grid-column: 1 / -1;
        grid-row: 2;
        display: contents;
      }

      .photo-image-placeholder:nth-child(1) {
        grid-column: 1;
        grid-row: 2;
      }

      .photo-image-placeholder:nth-child(2) {
        grid-column: 2;
        grid-row: 2;
      }

      .photo-section-subtitle {
        grid-column: 1;
        grid-row: 3;
        margin-bottom: 0;
        align-self: center;
      }

      .photo-image-placeholder:nth-child(3) {
        grid-column: 2;
        grid-row: 3;
      }

      .photo-image-placeholder:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
      }

      .photo-image-placeholder:nth-child(5) {
        grid-column: 2;
        grid-row: 4;
      }

      .photo-section-indicator {
        right: 1rem;
      }

      .photo-dot {
        width: 10px;
        height: 10px;
      }

      .photo-scroll-indicator {
        display: none;
      }
    }

    @media screen and (max-width: 430px) {
      .photo-section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .photo-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
      }

      .photo-image-grid {
        gap: 0.8rem;
      }

      .photo-placeholder-content svg {
        width: 35px;
        height: 35px;
      }

      .photo-placeholder-content span {
        font-size: 0.75rem;
      }
    }

    @media screen and (max-width: 414px) {
      .photo-content-wrapper {
        padding: 1rem;
      }
    }

    @media screen and (max-width: 390px) {
      .photo-section-title {
        font-size: 2.2rem;
      }

      .photo-section-subtitle {
        font-size: 0.9rem;
      }
    }

    @media screen and (max-width: 375px) {
      .photo-section-title {
        font-size: 2rem;
      }

      .photo-image-grid {
        gap: 0.6rem;
      }

      .photo-scroll-indicator {
        bottom: 2rem;
      }
    }

    @media screen and (max-width: 360px) {
      .photo-section-title {
        font-size: 1.9rem;
      }

      .photo-section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
      }

      .photo-placeholder-content svg {
        width: 30px;
        height: 30px;
      }
    }

    @media screen and (max-width: 320px) {
      .photo-section-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
      }

      .photo-section-subtitle {
        font-size: 0.8rem;
      }

      .photo-image-grid {
        gap: 0.5rem;
      }

      .photo-image-placeholder {
        border-radius: 8px;
      }

      .photo-placeholder-content span {
        font-size: 0.65rem;
      }

      .photo-section-indicator {
        right: 0.5rem;
        gap: 0.7rem;
      }
    }