@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   SATIL KNIT WEAR — PREMIUM STYLE
===================================================== */

:root{
    --navy:#0A1B30;
    --navy2:#142D49;
    --gold:#C8A45D;
    --gold-light:#DFC58B;

    --cream:#F3EEE4;
    --beige:#E9E1D2;
    --blue:#E8F0F5;
    --ivory:#FAF8F3;

    --white:#fff;
    --text:#263545;
    --muted:#697789;

    --border:#D5C5A5;
    --shadow:0 15px 40px rgba(10,27,48,.10);
}

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--ivory);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn{
    display:inline-block;
    background:var(--gold);
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 22px rgba(200,164,93,.20);
}

.btn:hover{
    background:#AC8747;
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-block;
    border:2px solid rgba(255,255,255,.85);
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:var(--navy);
}


/* =====================================================
   NAVBAR
===================================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(10,27,48,.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:75px;
    width:auto;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:var(--gold-light);
}


/* =====================================================
   HERO
===================================================== */

.hero{
    position:relative;
    height:90vh;
    min-height:650px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(5,18,35,.72),
            rgba(10,28,48,.48)
        ),
        url("images/hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(223,197,139,.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(100,150,180,.13),
            transparent 30%
        );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:950px;
    padding:0 20px;
}

.hero h1{
    font-size:58px;
    line-height:1.15;
    color:#fff;
    margin-bottom:30px;
    font-weight:700;
    text-shadow:0 6px 25px rgba(0,0,0,.5);
}

.hero p{
    font-size:21px;
    color:#F5F3EE;
    line-height:1.8;
    max-width:900px;
    margin:0 auto 45px;
    text-shadow:0 3px 18px rgba(0,0,0,.45);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

section{
    padding:100px 0;
    position:relative;
}

#about{
    background:var(--ivory);
}

#products{
    background:
        linear-gradient(
            135deg,
            var(--cream),
            var(--blue)
        );
}

#buyers{
    background:
        linear-gradient(
            135deg,
            #F8F4EB,
            #EEF3F6
        );
}

#bank{
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cream)
        );
}

#certifications{
    background:
        linear-gradient(
            135deg,
            #F7F2E8,
            #EDF2F5
        );
}

#factory{
    background:
        linear-gradient(
            135deg,
            #E8EEF2,
            #F4EFE5
        );
}

#contact{
    background:
        linear-gradient(
            135deg,
            #F4EFE5,
            #E8EFF4
        );
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:var(--navy);
    margin-bottom:10px;
    font-weight:700;
}

.section-title p{
    color:var(--muted);
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:90%;
    height:90%;
    left:-18px;
    bottom:-18px;
    border:1px solid var(--gold);
    border-radius:18px;
}

.about-image img{
    position:relative;
    z-index:1;
    border-radius:18px;
    box-shadow:var(--shadow);
}

.about-text h2{
    font-size:40px;
    color:var(--navy);
    margin-bottom:20px;
}

.about-text p{
    color:var(--muted);
    margin-bottom:20px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.product-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.product-track{
    display:flex;
    gap:30px;
    width:max-content;
    will-change:transform;
    animation:productLoop 30s linear infinite;
}

.product-slider:hover .product-track{
    animation-play-state:paused;
}

.product-card{
    width:300px;
    flex-shrink:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 45px rgba(10,27,48,.14);
}

.product-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.product-card h3{
    padding:20px;
    text-align:center;
    color:var(--navy);
    font-size:21px;
}

@keyframes productLoop{
    from{transform:translateX(0);}
    to{transform:translateX(calc(-50% - 15px));}
}


/* =====================================================
   CAPACITY / STATS
===================================================== */

.stats{
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy2)
        ) !important;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.stats::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-200px;
    top:-250px;
    border-radius:50%;
    background:rgba(200,164,93,.10);
}

.stats .container{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    text-align:center;
    
}

.stat h2{
    font-size:46px;
    color:var(--gold-light);
}

.stat p{
    color:#E1E7ED;
    font-size:16px;
}


/* =========================================
   BUYERS & CERTIFICATIONS
========================================= */

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.logo-track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
}
#capacity {
    padding-bottom: 40px;
}

#buyers {
    padding-top: 60px;
}

.logo-item {
    width: 250px;
    height: 155px;
    flex: 0 0 250px;

    background: #ffffff;

    border: 1px solid #e6dcc8;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    box-shadow:
        0 4px 14px rgba(15, 35, 60, 0.06);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.logo-item:hover {
    border-color: #d8c79f;

    box-shadow:
        0 8px 22px rgba(15, 35, 60, 0.10);

    transform: translateY(-3px);
}

.logo-item img {
    width: 210px;
    height: 105px;

    object-fit: contain;

    display: block;
}


/* =========================================
   CERTIFICATION CARDS
========================================= */

#certifications {
    background: #eef4f7;
}

#certifications .logo-item {
    height: 180px;
    border-color: #e3dccf;
    background: #ffffff;

    flex-direction: column;
    gap: 12px;
}

#certifications .logo-item img {
    width: 165px;
    height: 85px;
}

#certifications .logo-item p,
#certifications .logo-item h3 {
    margin: 0;
    text-align: center;
}


/* =========================================
   SMALLER GAP BETWEEN LOGO CARDS
========================================= */

#buyers .logo-track,
#certifications .logo-track {
    gap: 18px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .logo-track {
        gap: 14px;
    }

    .logo-item {
        width: 210px;
        flex-basis: 210px;
        height: 135px;
        padding: 18px;
    }

    .logo-item img {
        width: 150px;
        height: 75px;
    }

    #certifications .logo-item {
        height: 155px;
    }

    #certifications .logo-item img {
        width: 130px;
        height: 70px;
    }
}

/* =====================================================
   BANK
===================================================== */

.bank-card{
    width: 100%;
    max-width: 420px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background: #ffffff;

    padding: 35px;

    border: 1px solid #e3dccf;
    border-radius: 18px;

    box-shadow:
        0 4px 14px rgba(15, 35, 60, 0.06);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.bank-card:hover{
    border-color: #d8c79f;

    box-shadow:
        0 8px 22px rgba(15, 35, 60, 0.10);

    transform: translateY(-3px);
}

.bank-card img{
    width: 280px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.bank-content{
    text-align: center;
}

.bank-content h3{
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 10px;
}

.bank-content p{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
/* =====================================================
   FACTORY
===================================================== */

.factory-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.factory-card{
    overflow:hidden;
    border-radius:18px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    cursor:pointer;
    background:#fff;
}

.factory-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.45s;
}

.factory-card:hover img{
    transform:scale(1.07);
}


/* =====================================================
   CONTACT
===================================================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
}

.contact-info{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    color:var(--navy);
    font-size:32px;
    margin-bottom:25px;
}

.contact-info p{
    color:var(--muted);
    margin-bottom:8px;
}

.contact-map img{
    width:100%;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.contact-map img:hover{
    transform:scale(1.02);
}
.contact-form button.btn {
    border: none;
    outline: none;
}

.contact-form button.btn:focus,
.contact-form button.btn:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form{
    grid-column:1 / -1;
    margin-top:30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px;
    box-shadow:var(--shadow);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:25px;
}

.contact-form input,
.contact-form textarea,
.contact-grid input,
.contact-grid textarea{
    width:100%;
    border:1px solid #D8D1C5;
    border-radius:12px;
    padding:16px 20px;
    background:#FCFAF6;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    transition:.3s;
}

.contact-form input{
    height:65px;
}

.contact-form textarea{
    resize:none;
    min-height:180px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    background:#fff;
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(200,164,93,.12);
}

.button-area{
    margin-top:30px;
    text-align:center;
}

.button-area button{
    background:var(--gold);
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.button-area button:hover{
    background:#AC8747;
    transform:translateY(-3px);
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    background:
        linear-gradient(
            135deg,
            #071525,
            #102A45
        );
    color:#fff;
    text-align:center;
    padding:50px 0;
}

.footer img{
    height:70px;
    width:auto;
    margin:0 auto 20px;
}

.footer p{
    color:#C9D2DC;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

section{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .7s ease,transform .7s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .hero h1{
        font-size:44px;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .stats .container{
        grid-template-columns:repeat(2,1fr);
    }

    .factory-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .bank-card{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    nav{
        display:none;
    }

    .logo img{
        height:60px;
    }

    .hero{
        min-height:600px;
        padding:0 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline{
        width:220px;
        text-align:center;
    }

    .section-title h2{
        font-size:31px;
    }

    .product-card{
        width:260px;
    }

    .product-card img{
        height:290px;
    }

    .stats .container{
        grid-template-columns:1fr 1fr;
    }

    .stat h2{
        font-size:36px;
    }

    .factory-gallery{
        grid-template-columns:1fr;
    }

    .factory-card img{
        height:260px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form{
        grid-column:auto;
        padding:28px;
    }

    .logo-item{
        width:220px;
    }

    #certifications .logo-item{
        width:220px;
        height:175px;
    }

    .bank-card{
        padding:30px;
    }

    .bank-card img{
        width:180px;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title h2{
        font-size:28px;
    }

    .stats .container{
        grid-template-columns:1fr;
    }

    .product-card{
        width:240px;
    }

    .logo-item{
        width:210px;
    }
}