/* Base Styles */
    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.7;
      color: #333;
      background-color: #f8fafc;
      margin: 0;
      overflow-x: hidden;
    }

    .container {
      max-width: 1250px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Video Slider Styles */
    .video-slider {
      position: relative;
      height: clamp(430px, 72vh, 750px);
      overflow: hidden;
      margin-top: -28px;
    }

    .video-slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .video-slide {
      position: relative;
      min-width: 100%;
      height: 100%;
      overflow: hidden;
    }

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

    .video-slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .video-slide-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 800px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      margin: 0 auto;
    }

    .video-slide h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease;
    }

    .video-slide p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease 0.2s both;
    }

    .video-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 3;
      pointer-events: none;
    }

    .video-slider-nav button {
      background: rgba(255, 255, 255, 0.3);
      border: none;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background 0.3s;
      pointer-events: auto;
    }

    .video-slider-nav button:hover {
      background: rgba(255, 255, 255, 0.7);
    }

    .video-slider-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      z-index: 3;
    }

    .video-slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      margin: 0 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .video-slider-dot.active {
      background-color: white;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.4s both;
      width: 100%;
      max-width: 500px;
    }

    .hero-trust-line {
      margin-top: 14px;
      font-size: 0.93rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.96);
      line-height: 1.45;
      text-align: center;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease 0.5s both;
    }

    .hero-trust-line i {
      color: #63f5a0;
      margin-right: 6px;
    }

    .cta-btn {
      display: inline-block;
      background: #00aaff;
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid #00aaff;
      font-size: 0.95rem;
      text-align: center;
      flex: 1;
      min-width: 140px;
      max-width: 200px;
    }

    .cta-btn:hover {
      background: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 170, 255, 0.2);
    }

    .cta-btn.secondary {
      background: transparent;
      border: 2px solid white;
      color: white;    
    }

    .cta-btn.secondary:hover {
      background: white;
      color: #0066cc;
    }

    /* Section Styles */
    .section {
      padding: 100px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.8rem;
      color: #003366;
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
    }

    .section-header h2:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #00aaff;
    }

    .section-header p {
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* Product Categories */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .category-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      position: relative;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    }

    .category-img {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .category-img img,
    .category-img video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover .category-img img,
    .category-card:hover .category-img video {
      transform: scale(1.05);
    }

    .category-content {
      padding: 25px;
      text-align: center;
    }

    .category-content h3 {
      color: #003366;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .category-content p {
      color: #666;
      margin-bottom: 20px;
    }

    /* Features Section */
    .features-section {
      background: #f0f7ff;
      margin-top: -100px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #00aaff, #0066cc);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .feature-card:hover:before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: #00aaff;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      color: #003366;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    /* Gallery Section */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      height: 300px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      color: white;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    /* Process Section */
    .process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
    }

    .process-step {
      flex: 1 1 200px;
      text-align: center;
      padding: 30px 20px;
      background: white;
      border-radius: 15px;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .process-step:hover {
      background: #0066cc;
      color: white;
      transform: translateY(-10px);
    }

    .process-step:hover h3,
    .process-step:hover p {
      color: white;
    }

    .process-step:hover .step-number {
      border: 2px solid white;
      color: white;
      background: transparent;
    }

    .step-number {
      width: 60px;
      height: 60px;
      border: 2px solid #0066cc;
      color: #0066cc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-weight: bold;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      background: white;
    }

    .process-step h3 {
      color: #003366;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      font-size: 1.2rem;
    }

    .process-step p {
      color: #666;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    /* CTA Section */
    .garments-cta {
      background: linear-gradient(135deg, #003366, #0066cc);
      color: white;
      padding: 80px 0;
      text-align: center;
    }

    .garments-cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .garments-cta p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Button Styles */
    .btn {
      display: inline-block;
      background: #00aaff;
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid #00aaff;
      font-size: 1rem;
      text-align: center;
    }

    .btn:hover {
      background: transparent;
      color: #00aaff;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 170, 255, 0.2);
    }

    .text-center {
      text-align: center;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .video-slider {
        height: 640px;
      }
    }

    @media (max-width: 992px) {
      .video-slide h1 {
        font-size: 2.5rem;
      }
      
      .section-header h2 {
        font-size: 2.2rem;
      }
      
      .video-slider {
        height: 560px;
      }
      
      .hero-buttons {
        gap: 12px;
      }
      
      .cta-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 130px;
      }
    }

    @media (max-width: 768px) {
      .video-slider {
        height: 500px;
      }
      
      .video-slide h1 {
        font-size: 2rem;
        margin-bottom: 15px;
      }
      
      .video-slide p {
        font-size: 1rem;
        margin-bottom: 25px;
      }
      
      .section {
        padding: 80px 0;
      }
      
      .features-section {
        margin-top: -80px;
      }

      .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 8px;
      }
      
      .cta-btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 10px 11px;
        font-size: 0.87rem;
      }

      .hero-trust-line {
        margin-top: 10px;
        font-size: 0.84rem;
      }
      
      .video-slide-content {
        padding: 0 15px;
        width: 90%;
      }
      
      .section-header {
        margin-bottom: 40px;
      }
      
      .section-header h2 {
        font-size: 2rem;
      }
      
      .section-header p {
        font-size: 1rem;
      }
      
      .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
      }
      
      .process-steps {
        gap: 15px;
      }
      
      .process-step {
        flex: 1 1 150px;
        padding: 20px 15px;
      }
    }

    @media (max-width: 576px) {
      .video-slider {
        height: 450px;
        margin-top: 0;
      }
      
      .video-slide h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
      }
      
      .video-slide p {
        font-size: 0.9rem;
        margin-bottom: 20px;
      }
      
      .section-header h2 {
        font-size: 1.8rem;
      }
      
      .garments-cta h2 {
        font-size: 2rem;
      }
      
      .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        max-width: 350px;
      }
      
      .cta-btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 10px 9px;
        font-size: 0.84rem;
      }

      .hero-trust-line {
        font-size: 0.8rem;
      }
      
      .video-slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
      
      .category-img {
        height: 200px;
      }
      
      .gallery-item {
        height: 250px;
      }
      
      .feature-card {
        padding: 30px 20px;
      }
      
      .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
      }
      
      .process-step h3 {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 400px) {
      .video-slider {
        height: 420px;
      }
      
      .video-slide h1 {
        font-size: 1.6rem;
      }
      
      .video-slide p {
        font-size: 0.85rem;
      }
      
      .hero-buttons {
        max-width: 330px;
      }
      
      .cta-btn {
        padding: 9px 8px;
        font-size: 0.82rem;
        min-width: 0;
      }
      
      .container {
        padding: 0 15px;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      
      .process-steps {
        flex-direction: column;
      }
      
      .process-step {
        flex: 1 1 auto;
      }
    }

    /* Extra small devices */
    @media (max-width: 350px) {
      .hero-buttons {
        max-width: 280px;
      }
      
      .cta-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-width: 0;
      }
    }
