
        :root {
            --primary: #0a47aa;
            --secondary: #174ea6;
            --accent: #38bdf8;
            --light: #f5f9ff;
            --dark: #1a2a4a;
            --text: #1a2a4a;
            --text-light: #4d8acb;
        }
          a {
            text-decoration: none;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary);
        }
           li{
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        .btn:hover {
            background-color: #fff;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: var(--dark);
            border: 2px solid var(--accent);
        }
        
        .btn-accent:hover {
            background-color: #fff;
            color: var(--accent);
            border-color: var(--accent);
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
            color:#000;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 50px auto;
            text-align: center;
        }
        
        /* Header */
 
        
        /* Hero Section */
        .hero {
            height: 85vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 71, 170, 0.55), rgba(23, 78, 166, 0.45)), url('../images/wetransfer_blu-fashion_2025-07-31_0458/WOW02806-1280.webp') center center/cover no-repeat;
            color: white;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(120deg, rgba(10,71,170,0.85) 0%, rgba(26,42,74,0.85) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.1;
            color: white;
            text-align: center;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            text-align: center;
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-text {
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        /* Fabrics Section */
        .fabrics {
            background-color: var(--light);
        }
        
        .fabrics-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .fabrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .fabric-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .fabric-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .fabric-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .fabric-card:hover .fabric-image {
            transform: scale(1.05);
        }
        
        .fabric-content {
            padding: 25px;
        }
        
        .fabric-category {
            display: inline-block;
            background-color: var(--light);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .fabric-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color:#000;
        }
        
        .fabric-description {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .fabric-properties {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .property {
            background-color: var(--light);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Process Section */
        .process {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/wetransfer_blu-fashion_2025-07-31_0458/WOW03257-1280.webp') center/cover no-repeat fixed;
            color: white;
            text-align: center;
        }
        
        .process .section-title {
            color: white;
        }
        
        .process .section-title:after {
            background-color: white;
        }
        
        .process .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .process-steps {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: var(--dark);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 50px;
            margin-bottom: 20px;
        }
        
        .step-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .step-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background-color: var(--primary);
            color: white;
        }
        
        .cta .section-title {
            color: white;
        }
        
        .cta .section-title:after {
            background-color: var(--accent);
        }
        
        .cta .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
             .hero{
                height: 500px;
            }
            .hero-title {
                font-size: 3rem;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image, .about-content {
                flex: none;
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
             .hero{
                height: 500px;
            }
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 50px 0;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero{
                height: 500px;
            }
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .fabrics-grid {
                grid-template-columns: 1fr;
            }
        }
  