/* Import Google Fonts for exact typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for consistent colors - Updated to match professional design */
:root {
    --primary-blue: #0d3250;
    --light-blue: #dbeafe;
    --very-light-blue: #f0f7ff;
    --dark-blue: #1e3a8a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #374151;
    --text-gray: #6b7280;
    --accent-blue: #0f6a7a;
    --hero-bg: linear-gradient(180deg, #dbeafe 0%, #e0f2fe 100%);
    --shadow-light: 0 10px 40px rgba(30, 64, 175, 0.1);
    --shadow-medium: 0 20px 60px rgba(30, 64, 175, 0.15);
    --shadow-heavy: 0 30px 80px rgba(30, 64, 175, 0.25);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    /* content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-blue); */
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.who-are-we .section-title::after {
    display: none;
}

/* Top Bar */
.top-bar {
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%); */
    padding: 8px 0;
    border-bottom: none;
    color:#555
}

.top-bar p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.top{
    font-weight: 400!important;
    color: #0f6b7b;
    letter-spacing: 1.3px;
    border-radius: 15px;
    margin: 10px auto;
    font-size: 1.25rem!important;
    font-weight: 400!important;
    padding: 1.2rem!important;
    border: 2px solid #cfcfcf;
    }

/* Main Header */
.main-header {
    background: var(--white);
    padding: 40px 0;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar {
    align-items: center;
    min-height: auto;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.company-logo {
    max-width: 365px;
    margin: -60px 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-symbol {
    width: 100%;
    height: 100%;
    position: relative;
}

.circle-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    top: 0;
    left: 0;
}

.circle-2 {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.x-symbol {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.x-symbol::before,
.x-symbol::after {
    content: '';
    position: absolute;
    background: var(--primary-blue);
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.x-symbol::before {
    transform: translateX(-50%) rotate(45deg);
}

.x-symbol::after {
    transform: translateX(-50%) rotate(-45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.chinese-text {
    font-size: 0.8rem;
    color: var(--primary-blue);
    margin-bottom: 2px;
    font-weight: 500;
}

.company-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: 1px;
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0 !important;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--light-blue);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 0.9;
    margin-bottom: 0;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Who Are We Section */
.who-are-we {
    background: var(--white);
    /* padding: 80px 0; */
}

.who-are-we .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.1;
}

.ceo-message p,
.company-description p {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.ceo-card {
    /* background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto; */
}

.ceo-image {
    text-align: center;
    overflow: hidden;
}

.ceo-image img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
    border: none;
}

.ceo-message {
    padding: 30px;
    text-align: left;
}

.ceo-message p {
    /* font-size: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6; */
}

.ceo-signature {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0;
    text-align: right;
    /* font-size: 1rem; */
}

/* Portfolio Section */
.portfolio-section,
.knitted-fabrics,
.denim-fabrics,
.woven-fabrics,
.why-choose-us,
.partners-section{
    background: linear-gradient(to bottom, #dceafe 0%, #ffffff 40%, #ffffff 100%);
    padding: 80px 0;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: left;
}

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

.portfolio-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    /* margin-bottom: 20px; */
}

.portfolio-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #163a5f;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: #fff;
    border-radius: 26px;
    margin-top: -25px;
    z-index: 10000;
    position: absolute;
    width: 100%;
    padding: 15px;
    line-height: 2;
    }

.portfolio-desc {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 90%;
    padding-top:10px
}


/* Legacy portfolio card styles for backward compatibility */
.portfolio-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    /* border: 1px solid rgba(30, 64, 175, 0.1); */
    margin:0 20px
}

.portfolio-card:hover {
    transform: translateY(-15px);
    /* box-shadow: 0 30px 80px rgba(30, 64, 175, 0.25); */
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 40px;
    text-align: center;
}

.card-title {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 0 25px 0;
    padding: 18px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    top: -50px;
    margin-bottom: -25px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.fabric-description p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

/* Fabric Categories */
.fabric-categories {
    /* background: var(--white);
    padding: 80px 0; */
}

.category-section {
    margin-bottom: 60px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.fabric-swatch {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fabric-swatch:hover {
    transform: scale(1.05);
}

.fabric-swatch img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.fabric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us {
    /* background: var(--very-light-blue);
    padding: 100px 0; */
}

.why-choose-us .row {
    align-items: stretch;
}

.why-choose-us .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
    line-height: 1.1;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    /* background: var(--white); */
    padding: 0 30px;
    /* border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1); */
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15); */
}

.reason-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    min-width: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.reason-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.fabric-samples-image {
    text-align: center;
}

.fabric-samples-image img {
    border-radius: 25px;
    /* box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15); */
    transition: transform 0.3s ease;
}

.fabric-samples-image img:hover {
    transform: scale(1.02);
}

/* Sustainability Section */
.sustainability-section {
    background: var(--white);
    padding: 100px 0;
}

.sustainability-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    line-height: 1.1;
}

.certification-container {
    background: var(--very-light-blue);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
}

.certification-logos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    padding: 10px 0;
}

.cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 90px;
    flex-shrink: 0;
    padding: 0px;
    background: var(--white);
    border-radius: 15px;
    /* box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1); */
    transition: all 0.3s ease;
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.cert-logo img {
    /* max-width: 100%;
    max-height: 100%; */
    object-fit: contain;
}

.sustainability-content {
    text-align: justify;
}

.sustainability-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    /* background: var(--very-light-blue);
    padding: 100px 0;
    overflow: hidden; */
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    line-height: 1.1;
}

.partners-slider-container {
    position: relative;
    margin-bottom: 50px;
}

.partners-slider {
    overflow: hidden;
    border-radius: 25px;
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.partner-logo-item {
    flex: 0 0 auto;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-right: 1px solid rgba(30, 64, 175, 0.1);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.partner-logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo-item:last-child {
    border-right: none;
}

.partner-logo-item span {
    white-space: nowrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.partners-description p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer */
.footer {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%); */
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
    border-radius: 40px 40px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 0;
    line-height: 1.1;
}

.footer-title::after {
    content: '';
    display: block;
    width: 230px;
    height: 3px;
    background: var(--accent-blue);
    margin-top: 15px;
    border-radius:10px
}

/* QR Code Cards */
.qr-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin: 0 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.qr-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.qr-header {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-code-box {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: var(--white);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.qr-grid {
    width: 100px;
    height: 100px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1px;
}

.qr-pattern {
    background: repeating-conic-gradient(#000 0deg 90deg, #fff 90deg 180deg);
    width: 100%;
    height: 100%;
}

.qr-footer {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Contact Box */
.contact-box {
    /* background: rgba(255, 255, 255, 0.1); */
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-icon {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 25px;
}

.contact-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.office-details,
.phone-numbers,
.email-addresses {
    color: var(--white);
    line-height: 1.6;
    font-size: 1.1rem;
}

.office-details strong,
.contact-content strong {
    font-weight: 700;
}

/* Footer Bottom */
.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px; */
}

.fabric-categories-footer {
    font-size: 1.8rem;
    font-weight: 300;
    color: #a9b3bd;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        gap: 1rem;
    }
    
    .logo-section {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .company-logo {
        height: 65px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .navbar-nav {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .section-title, .portfolio-title, .why-choose-title, .sustainability-title, .partners-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .ceo-card {
        max-width: 100%;
    }
    
    .ceo-image img {
        height: 300px;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-number {
        min-width: auto;
        margin: 0 auto;
    }
    
    .qr-codes {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .portfolio-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .company-logo {
        height: 55px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .top-bar p {
        font-size: 0.65rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .who-are-we,
    .portfolio-section,
    .fabric-categories,
    .why-choose-us,
    .sustainability-section,
    .partners-section {
        padding: 60px 0;
    }
    
    .section-title, .portfolio-title, .why-choose-title, .sustainability-title, .partners-title {
        font-size: 2rem;
    }
    
    .ceo-image img {
        height: 250px;
    }
    
    .card-title {
        font-size: 1.3rem;
        padding: 12px 25px;
        letter-spacing: 2px;
    }
    
    .fabric-badge {
        padding: 8px 15px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .reason-number {
        font-size: 3rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loaded {
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.nav-link:focus,
.partner-logo:focus,
.logo-item:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Updated Fabric Categories */
.fabric-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: left;
}

.fabric-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 280px;
}

.fabric-card:hover {
    transform: translateY(-12px);
}

.fabric-image {
    overflow: hidden;
    position: relative;
}

.fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fabric-card:hover .fabric-image img {
    transform: scale(1.1);
}

.fabric-badge {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d3250;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(13, 50, 80, 0.4);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    max-width: calc(100% - 30px);
    text-align: center;
}

.denim-badge {
    background: #0d3250;
    backdrop-filter: blur(10px);
}

/* Different backgrounds for each fabric type */
.knitted-fabrics {
    /* background: var(--very-light-blue); */
}

.knitted-fabrics{
    /* background: var(--white); */
}

.denim-fabrics {
    /* background: var(--very-light-blue); */
}

/* Updated Why Choose Us Section */
.wcu{
    background: #fff;
    padding: 30px;
    border-radius: 30px;
}
.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: left;
}

.why-choose-us .reasons-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

.why-choose-us .reason-item {
    /* background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; */
}

.why-choose-us .reason-item:hover {
    transform: translateY(-5px);
}

.why-choose-us .reason-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    min-width: 100px;
    flex-shrink: 0;
}

.why-choose-us .reason-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-choose-us .reason-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.fabric-samples-image {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fabric-samples-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.fabric-section-title::after,
.why-choose-title::after {
    display: none;
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title {
        color: #000;
    }
}
