 :root {
      --primary: #0a1e40;
      --text-light: #ffffff;
      --bg-light: #f8f9fb;
      --text-dark: #333;
      --border-color: #ddd;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

    body {
      font-family: "Inter", "Segoe UI", sans-serif;
      background-color: #fff;
      color: var(--text-dark);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header Styles */
    header {
      background-color: var(--primary);
      color: var(--text-light);
      font-size: 0.9rem;
      padding: 0.8rem 0;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .top-bar {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .top-bar span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-light);
    }

    .social-icons {
      display: flex;
      gap: 0.8rem;
    }

    .social-icons a {
      font-size: 1.1rem;
      transition: opacity 0.3s ease;
    }

    .social-icons a:hover {
      opacity: 0.8;
    }

    /* Navigation Styles */
    nav {
      background-color: white;
      border-bottom: 1px solid var(--border-color);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-links a {
      font-weight: 500;
      transition: color 0.3s ease;
      padding: 0.5rem 0;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .quote-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .quote-btn:hover {
      background-color: #06132b;
      transform: translateY(-2px);
    }

    .dropdown {
      position: absolute;
      background: white;
      border: 1px solid var(--border-color);
      display: none;
      flex-direction: column;
      top: 100%;
      right: 0;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      z-index: 999;
      border-radius: 6px;
      overflow: hidden;
    }

    .dropdown a {
      padding: 1rem;
      color: var(--text-dark);
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dropdown a:hover {
      background-color: var(--bg-light);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(10, 30, 64, 0.7), rgba(10, 30, 64, 0.7)), 
                  url('Images/wearhouse1.png') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem;
      position: relative;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      animation: slideUp 1s ease-out;
    }

    .hero .quote-btn {
      font-size: 1.1rem;
      padding: 1rem 2rem;
      animation: fadeIn 2s ease;
    }

    /* Feature Section */
    .feature {
      padding: 6rem 0;
      background: var(--bg-light);
    }

    .feature-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .feature .text h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
      color: var(--primary);
      font-weight: 700;
    }

    .feature .text p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: #666;
    }

    .learn-btn {
      display: inline-block;
      background-color: var(--primary);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .learn-btn:hover {
      background-color: --primary;
      transform: translateY(-2px);
    }

    .feature .image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    /* Steps Section */
    .steps-section {
      background-color: #fff;
      color: var(--primary);
      padding: 6rem 0;
      text-align: center;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }

    .section-subtitle {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 4rem;
      color: #666;
      line-height: 1.6;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .step-box {
      background-color: #fff;
      padding: 2.5rem 1.5rem;
      border-radius: 16px;
      transition: all 0.3s ease;
      border: 2px solid #f0f0f0;
      position: relative;
      overflow: hidden;
    }

    .step-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(white), var(--primary));
    }

    .step-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(10, 30, 64, 0.15);
      border-color: var(--primary);
    }
    

    .step-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(white), --primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
    }

    .step-box h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .step-box p {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
    }

    .process-flow {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .flow-item {
      background: linear-gradient(135deg, #f8f9fb, #e6e9f0);
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      position: relative;
    }

    .flow-item h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }

    .flow-item p {
      color: #666;
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes slideUp {
      from { 
        transform: translateY(30px); 
        opacity: 0; 
      }
      to { 
        transform: translateY(0); 
        opacity: 1; 
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: var(--primary);
    }

    .mobile-menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--primary);
      margin: 5px 0;
      transition: 0.3s;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 0.5rem;
      }

      .top-bar {
        gap: 1rem;
        font-size: 0.8rem;
      }

      .nav-content {
        position: relative;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
      }

      .hero {
        padding: 4rem 1rem;
      }

      .feature, .steps-section {
        padding: 4rem 0;
      }

      .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .process-flow {
        grid-template-columns: 1fr;
      }

      .dropdown {
        position: fixed;
        top: auto;
        bottom: 2rem;
        right: 1rem;
        left: 1rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 0.5rem;
      }

      .step-box {
        padding: 2rem 1rem;
      }

      .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }

      .social-icons {
        gap: 0.5rem;
      }

      .quote-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
      }
    }




        
    .animated-fulfillment-section {
            background-color: var(--bg-light);
            padding: 4rem 1.5rem;
            color: var(--text-dark);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .fulfillment-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            align-items: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards;
        }
        
        .intro-text {
            flex: 1 1 500px;
        }
        
        .intro-text h2 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .intro-text p {
            line-height: 1.7;
        }
        
        .intro-image {
            flex: 1 1 400px;
            text-align: center;
        }
        
        .intro-image img {
            max-width: 100%;
            height: auto;
        }
        
        /* New Modern Steps Layout */
        .process-container {
            position: relative;
            margin: 3rem 0;
        }
        
        .process-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .process-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .process-subtitle {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .steps-wrapper {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
        
        /* Connecting Lines */
        .connection-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .connection-lines svg {
            width: 100%;
            height: 100%;
        }
        
        .connection-path {
            fill: none;
            stroke: var(--primary);
            stroke-width: 3;
            stroke-dasharray: 8, 5;
            opacity: 0.3;
            animation: dashMove 3s linear infinite;
        }
        
        @keyframes dashMove {
            0% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: 26; }
        }
        
        .step-card {
            position: relative;
            z-index: 2;
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 50px rgba(10, 30, 64, 0.1);
            border: 1px solid rgba(10, 30, 64, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 0.8s ease forwards;
        }
        
        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }
        .step-card:nth-child(4) { animation-delay: 0.4s; }
        
        .step-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(10, 30, 64, 0.15);
            border-color: var(--primary);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 8px 25px rgba(10, 30, 64, 0.3);
            border: 4px solid white;
        }
        
        .step-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), #1e3a5f);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .step-icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .step-card:hover .step-icon-wrapper::before {
            left: 100%;
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: var(--text-light);
            z-index: 2;
        }
        
        .step-content h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .step-content p {
            color: var(--text-dark);
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .step-features {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(10, 30, 64, 0.1);
        }
        
        .feature-tag {
            display: inline-block;
            background: rgba(10, 30, 64, 0.05);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            margin: 0.2rem 0.3rem 0.2rem 0;
            font-weight: 500;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--primary);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            color: var(--text-light);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1rem;
            }
            
            .fulfillment-intro {
                padding: 2rem;
            }
            
            .intro-text h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .animated-fulfillment-section {
                padding: 2rem 1rem;
            }
            
            .fulfillment-intro {
                flex-direction: column;
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .intro-text {
                flex: none;
                text-align: center;
            }
            
            .intro-text h2 {
                font-size: 1.6rem;
                margin-bottom: 0.8rem;
            }
            
            .intro-text p {
                font-size: 0.95rem;
            }
            
            .intro-image {
                flex: none;
                margin-top: 1rem;
            }
            
            .process-title {
                font-size: 1.8rem;
            }
            
            .process-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .steps-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2rem;
            }
            
            .connection-lines {
                display: none;
            }
            
            .step-card {
                padding: 2rem 1.5rem;
                margin: 0 auto;
                max-width: 400px;
            }
            
            .step-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 1rem;
            }
            
            .step-icon {
                font-size: 2rem;
            }
            
            .step-content h3 {
                font-size: 1.2rem;
            }
            
            .step-content p {
                font-size: 0.95rem;
            }
            
            .stats-section {
                padding: 2rem 1.5rem;
                margin: 2rem 0;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .animated-fulfillment-section {
                padding: 1.5rem 0.5rem;
            }
            
            .fulfillment-intro {
                padding: 1.2rem;
            }
            
            .intro-text h2 {
                font-size: 1.4rem;
            }
            
            .intro-text p {
                font-size: 0.9rem;
            }
            
            .process-header {
                margin-bottom: 2rem;
            }
            
            .process-title {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }
            
            .process-subtitle {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }
            
            .step-card {
                padding: 1.5rem 1.2rem;
                max-width: none;
                margin: 0;
            }
            
            .step-number {
                right: 15px;
                top: -15px;
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
                border: 3px solid white;
            }
            
            .step-icon-wrapper {
                width: 60px;
                height: 60px;
                border-radius: 15px;
            }
            
            .step-icon {
                font-size: 1.8rem;
            }
            
            .step-content h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            
            .step-content p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .step-features {
                margin-top: 1rem;
                padding-top: 1rem;
            }
            
            .feature-tag {
                font-size: 0.75rem;
                padding: 0.25rem 0.6rem;
                margin: 0.15rem 0.2rem 0.15rem 0;
            }
            
            .stats-section {
                padding: 1.5rem 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            
            .stat-item {
                padding: 0.5rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }
            
            .stat-label {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 320px) {
            .step-card {
                padding: 1.2rem 1rem;
            }
            
            .step-content h3 {
                font-size: 1rem;
            }
            
            .step-content p {
                font-size: 0.85rem;
            }
            
            .feature-tag {
                font-size: 0.7rem;
                padding: 0.2rem 0.5rem;
            }
        }




    
  .partners-section {
            background: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .logos-container {
            background: white;
            border: 3px solid var(--orange);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .logos-row {
            display: flex;
            align-items: center;
            height: 120px;
            position: relative;
            margin-bottom: 1rem;
        }
        
        .logos-row:last-child {
            margin-bottom: 0;
        }
        
        .section-label {
            flex: 0 0 300px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-right: 2rem;
            position: relative;
        }
        
        .section-label::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 60px;
            background: var(--orange);
            border-radius: 2px;
        }
        
        .logos-track {
            flex: 1;
            height: 100%;
            position: relative;
            overflow: hidden;
            mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
            -webkit-mask: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
        }
        
        .logos-slider {
            display: flex;
            align-items: center;
            height: 100%;
            gap: 4rem;
            animation: slideLeft 20s linear infinite;
            width: max-content;
        }
        
        .logos-slider.reverse {
            animation: slideRight 25s linear infinite;
        }
        
        .logo-item {
            flex-shrink: 0;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            filter: grayscale(20%) opacity(0.8);
        }
        
        .logo-item:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }
        
        .logo-item img {
            max-height: 100%;
            max-width: 150px;
            object-fit: contain;
        }
        
        /* Logo placeholders with brand colors */
        .logo-placeholder {
            width: 120px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            color: white;
            text-align: center;
            line-height: 1.2;
        }
        
        /* Fulfillment Channels */
        .amazon { background: linear-gradient(135deg, #ff9900, #ff8c00); }
        .alibaba { background: linear-gradient(135deg, #ff6a00, #ff4500); }
        .woo { background: linear-gradient(135deg, #96588a, #7b4397); }
        .ebay { background: linear-gradient(135deg, #0064d2, #003d82); }
        .squarespace { background: linear-gradient(135deg, #000000, #333333); }
        .etsy { background: linear-gradient(135deg, #d5641c, #f1641e); }
        .shopify { background: linear-gradient(135deg, #7ab55c, #95bf47); }
        .walmart { background: linear-gradient(135deg, #0071ce, #004c91); }
        
        /* Courier Services */
        .dhl { background: linear-gradient(135deg, #ffcc00, #d40511); }
        .ups { background: linear-gradient(135deg, #8b4513, #654321); }
        .usps { background: linear-gradient(135deg, #004b87, #003366); }
        .fedex { background: linear-gradient(135deg, #4d148c, #ff4600); }
        
        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes slideRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        /* Hover pause effect */
        .logos-slider:hover {
            animation-play-state: paused;
        }
        
        /* Stats overlay */
        .stats-overlay {
            position: absolute;
            top: -20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(10, 30, 64, 0.3);
            z-index: 10;
        }
        
        .stats-text {
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .stats-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--orange);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-label {
                flex: 0 0 250px;
                font-size: 1.1rem;
            }
            
            .logos-slider {
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .partners-section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .logos-container {
                padding: 1.5rem;
                border-width: 2px;
            }
            
            .logos-row {
                flex-direction: column;
                height: auto;
                padding: 1.5rem 0;
                margin-bottom: 2rem;
            }
            
            .section-label {
                flex: none;
                width: 100%;
                text-align: center;
                padding: 0 0 1rem 0;
                margin-bottom: 1rem;
                font-size: 1.2rem;
            }
            
            .section-label::after {
                left: 50%;
                transform: translateX(-50%);
                right: auto;
                top: auto;
                bottom: -10px;
                width: 60px;
                height: 3px;
            }
            
            .logos-track {
                height: 80px;
                width: 100%;
            }
            
            .logo-item {
                height: 60px;
            }
            
            .logo-placeholder {
                width: 100px;
                height: 50px;
                font-size: 0.8rem;
            }
            
            .stats-overlay {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .logos-container {
                padding: 1rem;
            }
            
            .logos-slider {
                gap: 2rem;
            }
            
            .logo-placeholder {
                width: 80px;
                height: 45px;
                font-size: 0.7rem;
            }
        }


.footer {
    background: var(--primary);
    color: var(--text-light);
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Company Info Section */
.company-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.company-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    line-height: 1.4;
}

/* Footer Sections */
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Customer Support Section */
.customer-support {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-text {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: 0.75rem;
}

/* Appointment Banner */
.appointment-banner {
    display: block;
    background: #0073e6;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.appointment-banner:hover {
    background: #005bb5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        max-width: 1200px;
        padding: 2.5rem 1.5rem 1rem;
    }
    .footer-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .company-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 1rem 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 1rem 1rem;
    }
    .customer-support {
        padding: 1rem;
    }
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Large screen improvements */
@media (min-width: 1400px) {
    .footer-content {
        padding: 4rem 3rem 1.5rem;
    }
    .footer-grid {
        gap: 4rem;
        max-width: none;
    }
    .company-info {
        max-width: 400px;
    }
}
