
        :root {
            --primary-blue: #0056b3;
            --dark-blue: #003366;
            --light-blue: #e6f0fa;
            --accent-gold: #1fb8d3;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        /* Animated Hero Section */
        .hero-section {
   background: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(135, 206, 235, 0.75) 100%), 
                        url('../images/wetransfer_blu-fashion_2025-07-31_0458/WOW00394-1280.webp') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
            animation: pulse 8s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.2; }
            100% { transform: scale(1.2); opacity: 0.4; }
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }
         @media (max-width: 576px) {
            .hero-title {
                
               font-size:20px;
            }
              .hero-content {
                  font-size:14px;
              }
         }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            animation: expandLine 1.5s ease-out forwards;
            transform-origin: left;
        }

        @keyframes expandLine {
            0% { transform: scaleX(0); }
            100% { transform: scaleX(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
            animation: fadeIn 1.5s ease-out;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            overflow: hidden;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
            animation: slideUp 0.8s ease-out;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-gold);
            animation: expandLine 1s ease-out forwards;
        }

        .section-title .lead {
            animation: fadeIn 1.5s ease-out;
        }

        /* Feature Cards with 3D Effect */
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-top: 4px solid var(--accent-gold);
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(0deg);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: perspective(1000px) rotateY(5deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .feature-card h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .feature-card:hover h3::after {
            width: 80px;
        }

        /* Animated Quality Badge */
        .quality-badge {
            display: inline-block;
            background-color: var(--accent-gold);
            color: white;
            padding: 8px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            animation: bounceIn 1s ease-out;
        }

        .quality-badge::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -50%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        /* Modern Image Container with Parallax Effect */
        .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .image-container img {
            width: 800px;
            height: 400px;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateZ(0);
        }

        .image-container:hover img {
            transform: scale(1.08) translateZ(20px);
        }

        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,51,102,0.1) 0%, rgba(0,51,102,0.3) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-container:hover::after {
            opacity: 1;
        }

        /* Animated CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        /* Animated Button */
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 35px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0,86,179,0.3);
        }

        .btn-primary:hover {
            background-color: var(--dark-blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,86,179,0.4);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn-primary:hover::after {
            transform: translateX(100%);
        }

        /* List Items Animation */
        .list-unstyled li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeInRight 0.8s ease-out forwards;
        }

        .list-unstyled li:nth-child(1) { animation-delay: 0.2s; }
        .list-unstyled li:nth-child(2) { animation-delay: 0.4s; }
        .list-unstyled li:nth-child(3) { animation-delay: 0.6s; }

        .list-unstyled li::before {
            content: '\f00c';
            font-family: 'bootstrap-icons';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-blue);
        }

        /* Animated Stats */
        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.9);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        .stat-item h4{
            color: var(--dark-blue);
        }

        .stat-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }
          
        .stat-item {
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px 15px;
            background: rgba(255,255,255,0.07);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
            height: 100%;
        }
        .stat-item.animated {
            opacity: 1;
            transform: translateY(0);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }
        @media (max-width: 991.98px) {
            .stat-item {
                min-height: 180px;
            }
             .image-container img {
            width: 800px;
            height: 200px;
          
        }
        }
        @media (max-width: 767.98px) {
            .stat-item {
                min-height: 140px;
                padding: 20px 10px;
            }
            .image-container img {
            width: 800px;
            height: 200px;
          
        }
        }
  

        /* Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
            transition: all 0.9s cubic-bezier(.22,1,.36,1);
        }
        .animated.scroll-up { animation: scrollUp 1.1s cubic-bezier(.22,1,.36,1) forwards; }
        .animated.scroll-down { animation: scrollDown 1.1s cubic-bezier(.22,1,.36,1) forwards; }
        .animated.scroll-left { animation: scrollLeft 1.1s cubic-bezier(.22,1,.36,1) forwards; }
        .animated.scroll-right { animation: scrollRight 1.1s cubic-bezier(.22,1,.36,1) forwards; }
        @keyframes scrollUp {
            from { opacity: 0; transform: translateY(60px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes scrollDown {
            from { opacity: 0; transform: translateY(-60px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes scrollLeft {
            from { opacity: 0; transform: translateX(-60px) scale(0.95); }
            to { opacity: 1; transform: translateX(0) scale(1); }
        }
        @keyframes scrollRight {
            from { opacity: 0; transform: translateX(60px) scale(0.95); }
            to { opacity: 1; transform: translateX(0) scale(1); }
        }
        /* SVG Gradient Divider Responsive */
        .svg-section-divider {
            display: block;
            width: 100vw;
            height: 60px;
            margin-bottom: -2px;
        }
        @media (max-width: 768px) {
            .svg-section-divider {
                height: 32px;
            }
            .feature-card {
                margin-bottom: 1.5rem;
            }
                    .image-container img {
            width: 800px;
            height: 200px;
         
        }
        }
