/* =======================================
   SUPER MINERAL — INDUSTRIAL THEME (FINAL)
   ======================================= */

/* ===== ROOT / RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0d;
    color: #eaeaea;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

/* ===== UTILITY ===== */
.container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.small {
    font-size: 14px;
}

.mt20 {
    margin-top: 20px;
}

/* ===== COLORS ===== */
:root {
    --orange: #f36b21;
    --dark: #0d0d0d;
    --dark2: #151515;
    --dark3: #1a1a1a;
    --white: #fff;
}

/* =======================================
   HEADER / NAVIGATION
   ======================================= */
.site-header {
    background: #111;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

/* NAV LINKS */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.nav a.active {
    color: var(--orange);
}

/* BUTTONS */
.btn-primary,
.btn-outline {
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--orange);
    color: var(--white);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin: 10px 0 20px;
}

.tagline {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #ccc;
}

.hero-subtext {
    color: #ccc;
    max-width: 750px;
    margin: 0 auto 26px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =======================================
   FEATURES / USP
   ======================================= */
.features {
    background: var(--dark3);
    padding: 50px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 25px;
}

.feature-item {
    background: var(--dark2);
    padding: 20px;
    border-left: 3px solid var(--orange);
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 6px;
}

/* =======================================
   PRODUCTS GRID (FIXED PERFECT)
   ======================================= */
.home-products {
    padding: 60px 0;
    background: #111;
}

.home-products h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: 700;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* CARD FIX */
.product-card {
    background: #1a1a1a;
    padding: 22px;
    border-left: 4px solid var(--orange);

    display: flex;
    flex-direction: column;
    gap: 12px;

    min-height: 400px;
}

/* PRODUCT IMAGE FIX */
.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

/* TITLE */
.product-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

/* BUTTON ALWAYS BOTTOM */
.product-card a {
    margin-top: auto;
}

/* =======================================
   INDUSTRIES
   ======================================= */
.industries {
    padding: 60px 0;
    background: var(--dark3);
}

.industries h2 {
    text-align: center;
    margin-bottom: 30px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--dark2);
    padding: 18px;
    text-align: center;
    font-weight: 600;
}

/* =======================================
   ABOUT PREVIEW
   ======================================= */
.about-preview {
    padding: 70px 0;
    background: #111;
}

.about-preview h2 {
    margin-bottom: 18px;
}

.about-preview ul {
    margin: 18px 0;
    padding-left: 18px;
}

.about-preview li {
    margin-bottom: 6px;
}

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
    background: #0b0b0b;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.footer-sec h4,
.footer-sec h3 {
    margin-bottom: 8px;
    color: var(--white);
}

.footer-sec a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-sec a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999;
}

/* =======================================
   WHATSAPP FLOAT
   ======================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.whatsapp-float img {
    width: 34px;
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 820px) {

    .nav {
        position: absolute;
        background: #111;
        top: 62px;
        right: 0;
        height: 100vh;
        width: 240px;
        flex-direction: column;
        padding: 40px 20px;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .sm-hide {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}
.product-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
}
/* ISO VERIFIED FOOTER LINE */
.iso-footer {
    margin-top: 10px;
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}
