/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s ease;
}

.btn-primary{
    background:#c62828;
    color:#fff;
}

.btn-primary:hover{
    background:#a81f1f;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(17,17,17,0.95);
    backdrop-filter:blur(10px);
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo img{
    height:60px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#fff;
    font-weight:500;
}

.nav-links a:hover{
    color:#c62828;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.78);
}

.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    max-width:850px;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:5rem;
    font-weight:800;
    text-shadow:0 4px 20px rgba(0,0,0,.6);
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    max-width:1000px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* =========================
   TRUST METRICS
========================= */

.trust-metrics{
    background:#f5f5f5;
    padding:70px 0;
}

.metrics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.metric{
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.metric h2{
    color:#c62828;
    font-size:2.5rem;
    font-family:'Poppins',sans-serif;
}

.metric p{
    font-weight:600;
}

/* =========================
   SPECIALTIES
========================= */

.specialties{
    padding:90px 0;
}

.specialties h2{
    text-align:center;
    margin-bottom:50px;
    font-family:'Poppins',sans-serif;
    font-size:2.5rem;
}

.specialties-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.specialty-card{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:10px;
    transition:0.3s ease;
}

.specialty-card:hover{
    background:#c62828;
    transform:translateY(-5px);
}

/* =========================
   CATEGORIES
========================= */

.categories{
    background:#f5f5f5;
    padding:100px 0;
}

.categories h2{
    text-align:center;
    margin-bottom:50px;
    font-family:'Poppins',sans-serif;
    font-size:2.5rem;
}


.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.category-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s ease;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.category-content{
    padding:25px;
}

.category-content h3{
    margin-bottom:12px;
    font-family:'Poppins',sans-serif;
}

.category-content p{
    margin-bottom:15px;
}

.category-content a{
    color:#c62828;
    font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .metrics-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .specialties-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:3rem;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .metrics-grid{
        grid-template-columns:1fr;
    }

    .specialties-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }
}
/* =========================
   COMMON SECTION HEADING
========================= */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-family:'Poppins',sans-serif;
    font-size:2.5rem;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
}

.light{
    color:#fff;
}

/* =========================
   INDUSTRIES
========================= */

.industries{
    padding:100px 0;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.industry-card{
    background:#fff;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.industry-card h3{
    margin-bottom:15px;
}

/* =========================
   ABOUT HIGHLIGHT
========================= */

.about-highlight{
    padding:120px 0;
    background:#ffffff;
}

.about-highlight-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-highlight-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    background:#c62828;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:20px;
}

.about-highlight-content h2{
    font-size:2.8rem;
    line-height:1.2;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

.about-highlight-content p{
    margin-bottom:20px;
    font-size:1.05rem;
    color:#555;
}

@media(max-width:992px){

    .about-highlight-grid{
        grid-template-columns:1fr;
    }

    .about-highlight-content h2{
        font-size:2rem;
    }

}

/* =========================
   WHY SOUVIKS
========================= */

.why-souviks{
    background:#111;
    color:#fff;
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#1c1c1c;
    padding:35px;
    border-radius:12px;
}

.why-card h3{
    color:#fff;
    margin-bottom:15px;
}

/* =========================
   BRANDS
========================= */

.brands-stock{
    padding:100px 0;
    background:#f5f5f5;
}

.brand-group{
    margin-bottom:40px;
}

.brand-group h3{
    margin-bottom:20px;
    color:#c62828;
}

.brand-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.brand-tags span{
    background:#fff;
    border:1px solid #ddd;
    padding:10px 16px;
    border-radius:30px;
    font-weight:600;
}
/* =========================
   GALLERY
========================= */

.gallery{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.gallery-large img,
.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}

.gallery-small{
    display:grid;
    gap:20px;
}

/* =========================
   REQUEST PART
========================= */

.request-part-section{
    background:#111111;
    color:#fff;
    padding:100px 0;
}

.request-wrapper{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.request-wrapper h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.request-wrapper p{
    margin-bottom:30px;
}

.request-wrapper form{
    display:grid;
    gap:15px;
}

.request-wrapper input,
.request-wrapper textarea{
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:1rem;
}

.request-wrapper textarea{
    min-height:140px;
    resize:vertical;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3,
.footer h4{
    margin-bottom:15px;
}

.copyright{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
    text-align:center;
}

/* =========================
   WHATSAPP
========================= */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:#fff;
    padding:15px 22px;
    border-radius:50px;
    font-weight:700;
    z-index:9999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .category-grid{
        display:flex;
        overflow-x:auto;
        gap:20px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
    }

    .category-card{
        min-width:280px;
        scroll-snap-align:start;
    }

}
