﻿:root {
    --blue: #1a4b8c;
    --blue-mid: #2d7be0;
    --blue-light: #4ea3ff;
    --blue-soft: #e8f1ff;
    --accent: #6fd3ff;
    --cream: #f5f0e8;
    --charcoal: #141a12;
    --charcoal-mid: #232b1e;
    --warm-gray: #8a8a7e;
    --off-white: #fafaf5;
    --border: rgba(26,75,140,0.18);
    --shadow: 0 8px 48px rgba(26,75,140,0.13);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    overflow-x: hidden;
}
p {
    font-family: "Roboto", sans-serif;
}
/* ───── PAGE SYSTEM ───── */
.page {
    display: none;
    animation: fadeUp 0.55s cubic-bezier(.22,1,.36,1);
}

    .page.active {
        display: block;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ───── NAV ───── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 70px;
    background:#fff;
    /*background: rgba(245,240,232,0.92);*/
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

 
.nav-logo img{
    width:80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav-links a {
        color: #000;
    }

    .nav-links a, .nav-dropdown > span {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--charcoal);
        text-decoration: none;
        padding: 7px 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }

        .nav-links a:hover, .nav-dropdown > span:hover {
            background: rgba(26,107,60,0.09);
            color: var(--blue);
        }

        .nav-links a.active {
            /*background: var(--blue);*/
            background: #005cff;
            color: white;
        }

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 8px;
    color: var(--charcoal);
}

    .nav-dropdown-menu a:hover {
        background: var(--cream);
        color: var(--blue);
    }

.nav-cta {
    background: var(--blue) !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

    .nav-cta:hover {
        background: var(--blue-mid) !important;
    }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--charcoal);
        border-radius: 2px;
        transition: 0.3s;
    }

/* ───── HERO ───── */
.hero {
    /*min-height: 100vh;*/
    /*background: var(--charcoal);*/
    background:#084298;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 5vw 20px;
}
/* hero layout */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* content left */
.hero-content {
    width: 50%;
}

.hero-slider {
    height: 100vh !important;
    position: relative !important;
    overflow: hidden;
}

    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item,
    .hero-slider img {
        height: 100vh !important;
    }

    .hero-slider img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    /* Black Overlay */
    .hero-slider::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }

/* Hero Content */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    padding: 20px;
    text-align: center;
    color: #fff;
}

    .hero-text h1 {
        font-size: 70px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
    }

        .hero-text h1 em {
            font-style: normal;
            color: #ffcc00;
        }

    .hero-text p {
        font-size: 18px;
        line-height: 1.8;
        max-width: 750px;
        margin: 0 auto 30px;
        color: #f1f1f1;
    }

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .hero-slider,
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item,
    .hero-slider img {
        height: 80vh !important;
    }

    .hero-text {
        padding: 15px;
    }

        .hero-text h1 {
            font-size: 34px;
            line-height: 1.3;
        }

        .hero-text p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 22px;
        }

    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* slider right */
/*.hero-slider {
    height: 100vh !important;
    position: relative !important;
    margin-left: auto;  
}*/
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(78,201,127,0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,107,60,0.25) 0%, transparent 50%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(78,201,127,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(78,201,127,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111,211,255,0.12);
    border: 1px solid rgba(111,211,255,0.3);
    /* background: rgba(184,240,74,0.12);
    border: 1px solid rgba(184,240,74,0.3);*/
    color:#fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--lime);
        display: block;
        box-shadow: 0 0 8px var(--lime);
    }

.hero h1 {
    font-size: clamp(42px, 6vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 28px;
    font-family: "Archivo Black", sans-serif;
}

    .hero h1 em {
        font-style: normal;
        /*color: var(--lime);*/
        /*color: #005cff;*/
    }

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
/* slider container */
/*.hero-slider {
    width: 40% !important;
    height: 450px !important; 
    position: relative !important;
}*/

    /* owl wrapper bhi full height le */
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item {
        height: 100%;
    }

    /* image fix */
    .hero-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* important */
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    }
.btn-primary {
    /*background: var(--lime);*/
    background: #084298;
    color: #fff;
    /*color: var(--charcoal);*/
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(184,240,74,0.35);
    }

.btn-outline {
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(184, 240, 74, 0.35);
    }

.hero-stats {
    position: absolute;
    right: 5vw;
    bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2px;
    width: min(380px, 42vw);
}

.hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px;
    z-index:99;
    backdrop-filter: blur(9px);
}

    .hero-stat:first-child {
        border-radius: 14px 0 0 0;
    }

    .hero-stat:nth-child(2) {
        border-radius: 0 14px 0 0;
    }

    .hero-stat:nth-child(3) {
        border-radius: 0 0 0 14px;
    }

    .hero-stat:last-child {
        border-radius: 0 0 14px 0;
    }

.hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    /*color: var(--lime);*/
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 5vw;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* ───── SECTION STYLES ───── */
section {
    padding: 100px 5vw;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::before {
        content: '';
        width: 24px;
        height: 2px;
        /*background: var(--blue);*/
        background: #0dcaf0;
    }

.section-title {
    font-size: clamp(32px, 4vw, 35px);
    font-weight: 800;
    line-height: 1.05;
    /*letter-spacing: -1.5px;*/
    color: var(--charcoal);
    margin-bottom: 20px;
}

    .section-title.light {
        color: white;
    }

.section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-gray);
    font-weight: 400;
}

    .section-desc.light {
        color: rgba(255,255,255,0.55);
    }

/* ───── NUMBERS BAND ───── */
.numbers-band {
    /*background: var(--blue);*/
    background: #090979;
    background: linear-gradient(329deg, rgba(9, 9, 121, 1) 35%, rgba(7, 44, 144, 1) 47%, rgba(0, 212, 255, 1) 100%);
    padding: 70px 5vw;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    position: relative;
    overflow: hidden;
}

    .numbers-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
        background-size: 12px 12px;
    }

.numbers-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.numbers-item-num {
    font-size: clamp(36px, 4.5vw, 55px);
    font-weight: 800;
    /*color: var(--lime);*/
    color:#fff;
    line-height: 1;
    margin-bottom: 10px;
}

.numbers-item-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ───── PRODUCTS ───── */
.products-section {
    background: var(--off-white);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));*/
    gap: 10px;
}

a.product-card {
    text-decoration: none;
}


.product-card {
    background: white;
    border: 1px solid var(--border);
    /*border: 2px solid rgb(26 107 60);*/
    /*border: 2px solid #1a4b8c;*/
    border-radius: 0px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
}

    .product-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(26,107,60,0.04) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(26,107,60,0.13);
        border-color: rgba(26,75,140,0.3);
    }

        .product-card:hover::before {
            opacity: 1;
        }

.product-card-icon {
    width: 52px;
    height: 52px;
    /*background: rgba(26,107,60,0.08);*/
    background: rgba(26,75,140,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
}

.product-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26,75,140,0.08);
    /*color: var(--blue);
    background: rgba(26,107,60,0.08);*/
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.product-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 24px;
    font-weight: 400;
}

.product-card-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height:100px;
    margin-bottom: 30px;
}

.product-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--charcoal);
    font-weight: 400;
}

    .product-spec::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        /*background: var(--blue-light);*/
        background: #005cff;
        flex-shrink: 0;
    }

.product-card .btn-sm {
    background: var(--charcoal);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

    .product-card .btn-sm:hover {
        background: var(--blue);
    }

/* ───── ABOUT ───── */
.about-section {
    /*background: var(--charcoal);*/
    background: #020024;
    background: linear-gradient(201deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-visual-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

    .about-visual-card:nth-child(1) {
        top: 0;
        left: 0;
        right: 60px;
        height: 200px;
        background: linear-gradient(135deg, rgba(26,107,60,0.3), rgba(26,107,60,0.05));
    }

    .about-visual-card:nth-child(2) {
        top: 50px;
        right: 0;
        width: 180px;
        bottom: 100px;
        background: rgba(184,240,74,0.06);
        border-color: rgba(184,240,74,0.2);
    }

    .about-visual-card:nth-child(3) {
        bottom: 0;
        left: 20px;
        right: 30px;
        height: 160px;
    }

.about-visual-card-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*color: var(--lime);*/
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-visual-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.about-visual-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    line-height: 1.6;
}

.about-visual-big-num {
    font-size: 45px;
    font-weight: 800;
    /*color: var(--lime);*/
    color: #fff;
    line-height: 1;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
}

.about-pillar-icon {
    font-size: 20px;
    margin-top: 2px;
}

.about-pillar h5 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.about-pillar p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.6;
}

/* ───── SUSTAINABILITY ───── */
.sustain-section {
    background: var(--cream);
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 60px;
}

.sustain-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(26,107,60,0.12);
    position: relative;
    overflow: hidden;
}

    .sustain-card::after {
        content: attr(data-number);
        position: absolute;
        top: -20px;
        right: -10px;
        font-size: 120px;
        font-weight: 800;
        color: rgba(26,107,60,0.04);
        line-height: 1;
        pointer-events: none;
    }

.sustain-icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.sustain-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.sustain-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.sustain-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 10px 14px;
    background: var(--cream);
    border-radius: 8px;
}

    .sustain-metric span:first-child {
        color: var(--warm-gray);
    }

    .sustain-metric span:last-child {
        font-weight: 600;
        color: var(--blue);
    }

/* ───── GALLERY ───── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--blue-mid);
    cursor: pointer;
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

.gallery-item-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, var(--charcoal-mid) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover .gallery-item-inner {
    transform: scale(1.04);
}

.gallery-item-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 0, transparent 20px);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

    .gallery-caption h4 {
        font-size: 16px;
        font-weight: 700;
    }

    .gallery-caption p {
        font-size: 11px;
        color: rgba(255,255,255,0.6);
        margin-top: 2px;
    }

.gallery-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* ───── CONTACT ───── */
.contact-section {
    /*background: var(--charcoal);*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #1a4b8c;
    /*background: rgba(255,255,255,0.03);*/
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
}

.contact-detail-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.contact-detail h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-detail p {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    font-weight: 300;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

    .contact-form h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--charcoal);
        margin-bottom: 28px;
        letter-spacing: -0.5px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--charcoal);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 13px 16px;
        border: 1px solid rgba(0,0,0,0.12);
        border-radius: 10px;
        font-size: 14px;
        color: var(--charcoal);
        background: var(--off-white);
        transition: border-color 0.2s;
        outline: none;
        resize: none;
    }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--blue);
            background: white;
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

    .form-submit:hover {
        background: var(--blue-mid);
        transform: translateY(-1px);
    }

/* ───── PRODUCT DETAIL PAGE ───── */
/*.product-hero {
    min-height: 50vh;*/
    /*background: var(--charcoal);*/
    /*background: #090979;
    background: linear-gradient(329deg, rgba(9, 9, 121, 1) 35%, rgba(7, 44, 144, 1) 47%, rgba(0, 212, 255, 1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 120px 5vw 60px;
    position: relative;
    overflow: hidden;
}

    .product-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(78,201,127,0.15), transparent);
    }

.product-hero-content {
    position: relative;
    z-index: 1;
}

.product-hero h1 {
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.02;
    margin-bottom: 14px;
}

    .product-hero h1 em {
        font-style: normal;
        color: var(--lime);
    }

.product-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
}

.product-detail-section {
    padding: 80px 5vw;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);*/
/*    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));*/
    /*gap: 16px;
    margin: 40px 0;
}*/
/* Tablet */
/*@media (max-width: 1024px) {
    .product-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}*/

/* Mobile */
/*@media (max-width: 768px) {
    .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}*/

/* Small mobile */
/*@media (max-width: 480px) {
    .product-specs-grid {
        grid-template-columns: 1fr;
    }
}
.spec-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s;
}

    .spec-block:hover {
        border-color: var(--blue-mid);
    }

.spec-block-label {
    font-size: 11px;
    font-weight: 600;*/
    /*letter-spacing: 1.5px;*/
    /*text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.spec-block-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
}

.spec-block-sub {
    font-size: 12px;
    color: var(--warm-gray);
    margin-top: 4px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);*/
    /*grid-template-columns: repeat(auto-fill, minmax(180px,1fr));*/
    /*gap: 12px;
    margin-top: 30px;
}*/
 
/* Tablet */
/*@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}*/

/* Mobile */
/*@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}*/

/* Small mobile */
/*@media (max-width: 480px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}
.app-tag {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .app-tag::before {
        content: '✓';
        color: var(--blue);
        font-weight: 700;
    }*/


/* =========================
       PRODUCT DETAIL SECTION
    ========================= */

.product-detail-section {
    padding: 90px 6%;
    background: #f7f7f7;
}

/* Card */
.productBox {
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

    .productBox:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 70px rgba(0,0,0,0.10);
    }

/* Top Label */
.section-label {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(0,0,0,0.06);
    color: #222;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Title */
/*.section-title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    letter-spacing: -1px;
}*/

/* Specification Grid */
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Dynamic Grids */
.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Spec Card */
.spec-block {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border-radius: 22px;
    padding: 28px 22px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .spec-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #111;
    }

    .spec-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

.spec-block-label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    /*letter-spacing: 1px;*/
    margin-bottom: 15px;
}

.spec-block-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 10px;
}

.spec-block-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Application Title */
.productBox h3 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
    color: #111 !important;
}

/* Applications */
.applications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.app-tag {
    padding: 14px 24px;
    border-radius: 50px;
    background: #005cff;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .app-tag:hover {
        transform: translateY(-3px);
    }

/* =========================
       TABLET
    ========================= */

@media (max-width: 1100px) {
    .product-specs-grid, .grid-6, .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 38px;
    }
}

/* =========================
       MOBILE
    ========================= */

@media (max-width: 767px) {
    .product-detail-section {
        padding: 60px 20px;
    }

    .productBox {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .product-specs-grid,
    .grid-6,
    .grid-5,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .spec-block {
        padding: 24px 18px;
    }

    .spec-block-value {
        font-size: 24px;
    }

    .productBox h3 {
        font-size: 24px !important;
    }

    .app-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 13px 18px;
        font-size: 14px;
    }
}
/* ───── ABOUT PAGE ───── */
.about-hero {
    min-height: 55vh;
    background: #090979;
    background: linear-gradient(329deg, rgba(9, 9, 121, 1) 35%, rgba(7, 44, 144, 1) 47%, rgba(0, 212, 255, 1) 100%);
    /*background: linear-gradient(150deg, var(--charcoal) 0%, var(--charcoal-mid) 60%, rgba(26,107,60,0.2) 100%);*/
    display: flex;
    align-items: flex-end;
    padding: 120px 5vw 60px;
    position: relative;
    overflow: hidden;
}

    .about-hero::after {
        content: 'CBIPT';
        position: absolute;
        right: 4vw;
        bottom: -30px;
        font-size: 200px;
        font-weight: 800;
        color: rgba(255,255,255,0.025);
        letter-spacing: -8px;
        line-height: 1;
        pointer-events: none;
    }

.timeline {
    position: relative;
    padding-left: 32px;
    margin-top: 40px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(var(--blue), var(--blue-light), var(--lime));
    }

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -38px;
        top: 4px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--lime);
        border: 3px solid var(--off-white);
        box-shadow: 0 0 0 2px var(--blue);
    }

.timeline-item-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-columns: repeat(auto-fill, minmax(260px,1fr));*/
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.value-card-emoji {
    font-size: 32px;
    margin-bottom: 14px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* ───── FOOTER ───── */
/* =========================
   FOOTER DESIGN
========================= */

footer {
    position: relative;
    background: #0f1115;
    color: #fff;
    overflow: hidden;
}

/* Top Footer */
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 90px 7% 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo */
footer .nav-logo img {
    max-width: 220px;
    margin-bottom: 25px;
}

/* Brand Text */
.footer-brand-desc {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.8;
    max-width: 320px;
}

/* Column */
.footer-col h5 {
    font-size: 20px;
    margin-bottom: 28px;
    font-weight: 600;
    position: relative;
}

    .footer-col h5::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 45px;
        height: 3px;
        background: #fff;
        border-radius: 10px;
    }

/* Lists */
.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 16px;
    }

        /* Links */
        .footer-col ul li a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            font-size: 15px;
            line-height: 1.8;
            transition: all 0.3s ease;
        }

             

/* Bottom Footer */
.footer-bottom {
    padding: 24px 20px;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.60);
        font-size: 14px;
        letter-spacing: 0.5px;
    }
/* =========================
   FOOTER CONTACT
========================= */

.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-contact-list li {
        margin-bottom: 18px;
    }

        /* Link */
        .footer-contact-list li a {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            text-decoration: none;
            color: rgba(255,255,255,0.72);
            line-height: 1.8;
            transition: all 0.3s ease;
        }

/* Icon Box */
.footer-contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all 0.3s ease;
}

    .footer-contact-icon i {
        font-size: 15px;
        color: #fff;
    }

/* Text */
.footer-contact-text {
    flex: 1;
    font-size: 15px;
}

/* Hover */
.footer-contact-list li a:hover {
    color: #fff;
}

    .footer-contact-list li a:hover .footer-contact-icon {
        background: #fff;
    }

        .footer-contact-list li a:hover .footer-contact-icon i {
            color: #111;
        }

/* Mobile */
@media (max-width: 767px) {

    .footer-contact-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-contact-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }
}
/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 70px 6% 50px;
    }

    .nav-logo img {
        max-width: 190px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 20px 40px;
    }

    .footer-col h5 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .footer-brand-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            font-size: 14px;
        }

    .footer-bottom {
        padding: 20px 15px;
    }

        .footer-bottom p {
            font-size: 13px;
            line-height: 1.6;
        }
}
/*footer {
    background: var(--charcoal);
    padding: 70px 5vw 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-top: 16px;
    font-weight: 300;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    .footer-col ul li a {
        font-size: 15px;
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s;
        font-weight: 300;
    }

        .footer-col ul li a:hover {
            color: #fff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;*/
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    /*text-align:center;
    flex-wrap: wrap;
    gap: 14px;
}

    .footer-bottom p {
        font-size: 14px;
        color: rgba(255,255,255,0.25);
    }

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 15px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}

    .footer-social:hover {
        border-color: var(--lime);
        color: var(--lime);
        background: rgba(184,240,74,0.08);
    }*/

/* ───── TOAST ───── */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--blue);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(26,107,60,0.4);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
    }

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
    .hero-stats {
        display: none;
    }

    .numbers-band {
        grid-template-columns: repeat(2,1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .sustain-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 60px 16px;
    }

    .about-section, .contact-section {
        padding: 60px 16px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

        .hero h1 {
            letter-spacing: -1px;
        }

    .numbers-band {
        grid-template-columns: repeat(2,1fr);
        padding: 40px 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    /*.product-specs-grid {
        grid-template-columns: 1fr 1fr;
    }*/

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
.product-specs-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.product-specs-grid.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}
.product-specs-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.product-specs-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.applications-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1024px) {
    .product-specs-grid.grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-specs-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .applications-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-specs-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-detail{
        gap:0;
    }
    .contact-form {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .product-specs-grid.grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-specs-grid.grid-3 {
        grid-template-columns: 1fr;
    }
    .applications-grid.grid-4 {
        grid-template-columns: 1fr;
    }
    .product-specs-grid.grid-4 {
        grid-template-columns: 1fr;
    }
    .contact-detail {
        gap: 0;
    }
    .contact-form {
        padding: 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .product-specs-grid.grid-5 {
        grid-template-columns: 1fr;
    }
    .product-specs-grid.grid-6 {
        grid-template-columns: 1fr;
    }
    .contact-detail {
        gap: 0;
    }
    .contact-form {
        padding: 20px;
    }
}
.management-section {
    padding: 80px 5vw;
    background:#fff;
    /*background: var(--off-white);*/
}

/* Owl slider fix */
.management-slider {
    margin-top: 50px;
}

    /* Owl item ko flex bana do */
    .management-slider .owl-stage {
        display: flex;
    }

    .management-slider .owl-item {
        display: flex;
    }

/* Card */
.management-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    /* Image */
    .management-card img {
        width: 90px !important;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        /*border: 3px solid #00c853;*/
    }

    /* Name */
    .management-card h3 {
        font-size: 20px;
        font-weight:600;
        margin-bottom: 5px;
    }

    /* Role */
    .management-card span {
        display: block;
        font-size: 13px;
        color: var(--warm-gray);
        margin-bottom: 10px;
    }

    /* Text */
    .management-card p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--warm-gray);
        flex-grow: 1; 
    }

    /* Hover */
    .management-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 5vw;
    background: #fff;
}

/* Left */
.about-left p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-top: 15px;
}

/* Right Image */
.about-right img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: 0.4s;
}

    .about-right img:hover {
        transform: scale(1.05);
    }

/* Mobile */
@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.vmv-section {
    padding: 80px 5vw;
    background: var(--off-white);
}

/* Grid */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Card */
.vmv-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.4s;
}

/* Icon */
.vmv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    /*background: rgba(0, 200, 83, 0.1);*/
    background: rgba(45,123,224,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vmv-icon i {
        font-size: 26px;
        color: #005cff;
    }

/* Heading */
.vmv-card h3 {
    font-size: 22px;
    font-weight:600;
    margin-bottom: 10px;
}

/* Text */
.vmv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
}

/* Hover */
.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .vmv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .vmv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    /*.hero {
        flex-direction: column;
    }

    .hero-content,
    .hero-slider {
        width: 100%;
    }

    .hero-slider {
        margin-left: 0;
        margin-top: 30px;
        display: none !important;
    }*/
    
}

/* container */
.media-gallery {
    padding: 80px 5vw;
    background: var(--off-white);
}

/* grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

    /* thumbnail box */
    .media-grid a {
        display: block;
        overflow: hidden;
        border-radius: 16px;
        position: relative;
    }

    /* equal height trick */
    .media-grid img {
        width: 100%;
        height: 240px; /* 🔥 same height */
        object-fit: cover;
        transition: 0.4s;
    }

    /* overlay effect */
    .media-grid a::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.2);
        opacity: 0;
        transition: 0.3s;
    }

    /* hover */
    .media-grid a:hover img {
        transform: scale(1.08);
    }

    .media-grid a:hover::after {
        opacity: 1;
    }

/* responsive */
@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

        .media-grid img {
            height: 200px;
        }
}

.productBox{
    margin-bottom:40px;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 100px 7%;
    background: #fff;
    overflow: hidden;
}

/* Image */
.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        border-radius: 30px;
        display: block;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

/* Content */
.about-content {
    position: relative;
}

.about-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0,0,0,0.08);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    text-align:justify;
}

.inner-title {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}
.contact-detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #123b72;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
/* Tablet */
@media (max-width: 991px) {

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 5%;
    }

    .about-image img {
        height: 500px;
    }

    .section-title {
        font-size: 42px;
    }
    .contact-detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
        margin-right: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .about-split {
        padding: 60px 20px;
        gap: 30px;
    }

    .about-image img {
        height: 320px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    .inner-title {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
        font-weight: 700;
    }
    .contact-detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
        margin-right: 15px;
    }
}
/* Tablet */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
        margin-right: 15px;
    }
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

    /* Show Button */
    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Hover */
    #scrollTopBtn:hover {
        transform: translateY(-4px);
        background: #000;
    }

/* Mobile */
@media (max-width: 767px) {

    #scrollTopBtn {
        width: 46px;
        height: 46px;
        font-size: 20px;
        right: 18px;
        bottom: 18px;
    }
}