@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0b1a3b;
    --navy-mid: #0e2147;
    --navy-dark: #081530;
    --green: #2e9e4f;
    --green-light: #35b55a;
    --green-dark: #237a3d;
    --gold: #c9a84c;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --gray-light: #e8edf4;
    --gray-text: #6b7a99;
    --text-dark: #0b1a3b;
    --text-body: #4a5568;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(11, 26, 59, 0.10);
    --shadow-lg: 0 8px 40px rgba(11, 26, 59, 0.14);
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font: 'Manrope', sans-serif;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ── CONTAINER ── */
.container-pro {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1.5px solid var(--gray-light);
    box-shadow: 0 2px 16px rgba(11, 26, 59, 0.07);
}

header .container-pro {
    max-width: 100%;
    padding: 0 50px;
}

@media (max-width: 768px) {
    header .container-pro {
        padding: 0 20px;
    }
}

.navbar-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo img {
    height: 90px;
    width: auto;
    padding: 10px;
}

.logo span {
    color: var(--green);
}

.made-in-india-badge {
    margin-left: 16px;
}

.made-in-india-badge img {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .made-in-india-badge {
        margin-left: 0;
        margin-top: 12px;
    }

    .made-in-india-badge img {
        height: 38px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.1px;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a.active {
    background: var(--navy);
    color: var(--white);
    padding: 8px 22px;
}

.nav-links a.active:hover {
    background: var(--navy-mid);
}

/* ===================================================
   NAVBAR DROPDOWN SYSTEM
=================================================== */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 380px;
    box-shadow: 0 8px 30px rgba(11, 26, 59, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    z-index: 1001;
    border: 1.5px solid #edf1f7;
    margin-top: 5px;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu-custom a {
    display: block !important;
    color: #0b1b46 !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: background 0.25s ease, color 0.25s ease !important;
    text-align: left;
    white-space: normal;
    line-height: 1.4;
}

.dropdown-menu-custom a:hover {
    background-color: #f5f7fa !important;
    color: #2ca24c !important;
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 993px) {
    .dropdown-container:hover .dropdown-menu-custom {
        display: block;
    }
}

/* Mobile Accordion Styles */
@media (max-width: 992px) {
    .dropdown-container {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .dropdown-trigger {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
    }

    .dropdown-menu-custom {
        position: static;
        display: none;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        border-radius: 8px;
        padding: 6px 0;
        margin-top: 8px;
        min-width: 100%;
    }

    .dropdown-container.mobile-open .dropdown-menu-custom {
        display: block;
    }

    .dropdown-container.mobile-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu-custom a {
        text-align: center;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
}

.quote-btn {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-left: 8px;
    transition: var(--transition) !important;
    box-shadow: 0 2px 12px rgba(46, 158, 79, 0.22);
}

.quote-btn:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(46, 158, 79, 0.32) !important;
}

/* ── HERO ── */
.hero {
    min-height: 85vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../hero-bg.png') right center / contain no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    z-index: 2;
}

.hero .container-pro {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 100px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .hero-content {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
    }
}

.hero-mobile-img {
    display: none;
}

.hero-content h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(46, 158, 79, 0.3);
    font-family: var(--font);
}

.btn-main:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 158, 79, 0.38);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid var(--navy);
    transition: var(--transition);
    font-family: var(--font);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

/* Scroll arrow */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--navy);
    opacity: 0.5;
    font-size: 22px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── STATS ── */
.stats {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1.5px solid var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat {
    text-align: center;
    padding: 20px 24px;
    border-right: 1.5px solid var(--gray-light);
}

.stat:last-child {
    border-right: none;
}

.stat h2 {
    font-size: 45px;
    font-weight: 650;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat p {
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 500;
}

/* ── SECTION BASE ── */
.section {
    padding: 100px 0;
}

.subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 17px;
}

.dark-title {
    color: var(--white);
}

.section-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 480px;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}



/* ── PRODUCTS GRID ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--gray-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 158, 79, 0.2);
}

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

.product-content {
    padding: 24px 28px 28px;
}

.product-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    transition: var(--transition);
}

.product-link:hover {
    gap: 10px;
}

/* ── CATEGORY BADGE ── */
.cat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

/* ── DARK SECTION (Industries) ── */
.dark-section {
    background: linear-gradient(160deg, #0b1a3b 0%, #0d2050 100%);
}

.dark-section .subtitle {
    color: var(--gold);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 250px;
}

.industry-card:hover {
    background: rgba(46, 158, 79, 0.12);
    border-color: var(--green);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.industry-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.industry-card:hover .industry-image img {
    transform: scale(1.08);
}

.industry-name {
    padding: 14px;
    text-align: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

@media (max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .industry-card {
        height: 200px;
    }

    .industry-image {
        height: 135px;
    }
}

/* ── WHY CHOOSE ── */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.adv-card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.adv-card:hover {
    border-color: rgba(46, 158, 79, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 22px;
    color: var(--white);
}

.adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.adv-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
}

/* ── FOOTER ── */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer .logo {
    color: var(--white);
    font-size: 22px;
}

.footer .logo span {
    color: var(--green);
}

.footer .logo::before {
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 20px;

}

.footer-grid h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-grid a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--green);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── WHATSAPP ── */
.whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46, 158, 79, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp:hover {
    background: var(--green-dark);
    transform: scale(1.1);
}

/* ── ADDITIONAL SECTIONS (Why Choose, More Products) ── */

/* Dark section subtitle override */
.dark-section .section-title {
    color: var(--white);
}

.dark-section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container-pro {
        padding: 0 20px;
    }

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

    .stat {
        border-right: none;
        border-bottom: 1.5px solid var(--gray-light);
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero::before {
        display: none;
    }

    .hero::after {
        display: none;
    }

    .hero .container-pro {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-content {
        max-width: 100%;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        text-align: center;
    }

    .hero-mobile-img {
        display: block;
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1024 / 714;
        margin: 25px auto;
    }

    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 0;
    }

    .hero-content p {
        margin-bottom: 24px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat h2 {
    font-size: 45px;
    font-weight: 600;
    color: #111;
    display: inline-block;
}

.stat span {
    font-size: 52px;
    font-weight: 700;
    color: #111;
}

.stat p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.25) 100%);

    pointer-events: none;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #0b1b46;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.container-pro {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}

/* =========================
   SECTION SPACING
========================= */

section {
    padding: 90px 0;
    position: relative;
}

/* =========================
   HEADINGS
========================= */

h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
}

h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

h3 {
    font-size: 32px;
    font-weight: 600;
}

p {
    font-size: 17px;
    color: #5d6475;
}

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

header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #edf1f7;
}

.navbar-pro {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #0b1b46;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 40px;
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: #081d4d;
    color: #fff;
}

.quote-btn {
    background: #2ca24c !important;
    color: #fff !important;
}

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

.page-hero {
    background: #f8fafc;
    padding: 40px 0;
    border-bottom: 1px solid #edf1f7;
}

.page-hero h1 {
    margin-top: 12px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: #2ca24c;
    text-decoration: none;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .35s;
    border: 1px solid #edf1f7;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin-bottom: 14px;
    font-size: 30px;
}

.product-content p {
    margin-bottom: 18px;
}

.product-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #081d4d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

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

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: #2ca24c;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-main:hover {
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1.5px solid #d6deea;
    border-radius: 12px;
    color: #081d4d;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   STATS
========================= */

.stats {
    background: #fff;
}

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

.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #edf1f7;
}

.stat:last-child {
    border-right: none;
}

.stat h2 {
    font-size: 64px;
    margin-bottom: 10px;
}

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

.footer {
    background: #121212;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-bottom {

    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

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

@media(max-width:1100px) {

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

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

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

@media(max-width:768px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    section {
        padding: 70px 0;
    }

    .navbar-pro {
        height: auto;
        padding: 18px 0;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .stat {
        border-right: none;
        border-bottom: 1px solid #edf1f7;
    }

    .stat:last-child {
        border-bottom: none;
    }

    .product-image {
        height: 240px;
    }
}


.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.products-grid,
.values-grid,
.blog-grid,
.team-grid,
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* =========================
CARDS
========================= */

.product-card,
.prod-detail-card,
.blog-card,
.value-card,
.team-card,
.adv-card,
.step-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .03);
}

.product-card:hover,
.prod-detail-card:hover,
.blog-card:hover,
.value-card:hover,
.team-card:hover,
.adv-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

/* =========================
IMAGE FIX
========================= */

.product-card img,
.prod-detail-card img,
.blog-card img,
.team-card img,
.about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product-card img,
.prod-detail-card img {
    height: 280px;
}

.blog-card img {
    height: 240px;
}

.team-card img {
    height: 320px;
}

.about-image img {
    min-height: 520px;
    border-radius: var(--radius);
}

/* =========================
CARD BODY
========================= */

.product-content,
.pdc-body,
.bc-body,
.tc-body,
.value-card,
.adv-card,
.step-card {
    padding: 30px;
}

.product-content h3,
.pdc-body h3,
.bc-body h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.product-content p,
.pdc-body p,
.bc-body p {
    color: var(--text);
}

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

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
}

/* =========================
FILTERS
========================= */

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 50px;
}

.filter-btn {
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: #fff;
}

/* =========================
STATS
========================= */

.stats {
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}



.stat p {
    color: var(--text);
}

/* =========================
CONTACT FORM
========================= */

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    outline: none;
}

.form-submit {
    width: 100%;
    height: 58px;
    border: none;
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

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

.footer {
    background: #121212;
    color: #fff;
    padding-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer h4 {
    margin-bottom: 24px;
}

.footer a {
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, .65);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 60px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
}

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

@media(max-width:1100px) {

    .products-grid,
    .values-grid,
    .blog-grid,
    .team-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media(max-width:768px) {

    .navbar-pro {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .products-grid,
    .values-grid,
    .blog-grid,
    .team-grid,
    .advantages-grid,
    .stats-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* FOOTER */
.footer {
    background: #121212;
    padding: 80px 0 30px;
    color: #fff;
    border-top: 3px solid var(--green);
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    opacity: 0.95;
}

.footer-desc {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 22px;
    color: #fff;
}

.footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer a:hover {
    color: #00c853;
    transform: translateX(4px);
}

.footer a i {
    color: #00c853;
    width: 18px;
}

.footer-bottom {

    margin-top: 30px;
    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* SECTION */
.values-section {
    background: #f5f7fb;
    padding: 50px 0;
    position: relative;
}

/* HEADING */
.values-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.values-heading .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00b86b;
    margin-bottom: 18px;
}

.values-heading h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #081c3a;
    margin-bottom: 20px;
}

.values-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.value-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    transition: all 0.35s ease;
    border: 1px solid rgba(10, 25, 47, 0.05);

    box-shadow:
        0 10px 30px rgba(2, 6, 23, 0.04);

    position: relative;
    overflow: hidden;
}

/* TOP BORDER EFFECT */
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #00b86b,
            #0077ff);

    transform: scaleX(0);
    transition: 0.4s ease;
    transform-origin: left;
}

/* HOVER */
.value-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 60px rgba(2, 6, 23, 0.10);
}

.value-card:hover::before {
    transform: scaleX(1);
}

/* ICON */
.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;

    background: linear-gradient(135deg,
            rgba(0, 184, 107, 0.12),
            rgba(0, 119, 255, 0.08));

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}

.value-icon i {
    font-size: 30px;
    color: #081c3a;
}

/* TITLE */
.value-card h3 {
    font-size: 29px;
    font-weight: 600;
    color: #081c3a;
    margin-bottom: 18px;
    line-height: 1.1;
}

/* TEXT */
.value-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
}

/* RESPONSIVE */
@media(max-width: 992px) {

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

    .values-heading h2 {
        font-size: 44px;
    }
}

@media(max-width: 768px) {

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

    .values-heading h2 {
        font-size: 36px;
    }

    .value-card {
        padding: 32px;
    }
}



.product-details-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.product-details-image {

    overflow: hidden;

    border-radius: 32px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
}

.product-details-image img {

    width: 100%;

    display: block;

    height: 650px;

    object-fit: cover;
}

.details-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 42px;

    padding: 0 18px;

    border-radius: 40px;

    background: #081d4d;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;
}

.product-details-content h2 {

    font-size: 56px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #081d4d;
}

.details-desc {

    font-size: 18px;

    line-height: 1.9;

    color: #667085;

    margin-bottom: 35px;
}

.details-block {

    margin-bottom: 35px;
}

.details-block h4 {

    font-size: 24px;

    margin-bottom: 20px;

    color: #081d4d;
}

.details-features {

    list-style: none;

    padding: 0;
}

.details-features li {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    font-size: 17px;

    color: #081d4d;
}

.details-features i {

    color: #2ca24c;
}

.details-specs {

    display: flex;

    gap: 22px;

    margin-bottom: 40px;
}

.details-spec {

    flex: 1;

    background: #f7f9fc;

    padding: 24px;

    border-radius: 22px;
}

.details-spec h5 {

    margin-bottom: 10px;

    font-size: 16px;

    color: #081d4d;
}

.details-spec p {

    color: #667085;

    line-height: 1.7;
}

@media(max-width:992px) {

    .product-details-grid {

        grid-template-columns: 1fr;
    }

    .product-details-image img {

        height: 450px;
    }
}

@media(max-width:768px) {

    .product-details-content h2 {

        font-size: 40px;
    }

    .details-specs {

        flex-direction: column;
    }
}


.pricing-section {

    background: #fff;

    padding: 90px 0;
}

.pricing-heading {

    text-align: center;

    margin-bottom: 50px;
}

.pricing-sub {

    max-width: 720px;

    margin: 14px auto 0;

    font-size: 17px;

    line-height: 1.8;

    color: #667085;
}

.pricing-table-wrap {

    background: #fff;

    border-radius: 32px;

    overflow: hidden;

    border: 1px solid #edf1f7;

    box-shadow:
        0 10px 35px rgba(16, 24, 40, .05);
}

.pricing-table {

    width: 100%;

    border-collapse: collapse;
}

.pricing-table thead {

    background: #081d4d;
}

.pricing-table thead th {

    color: #fff;

    padding: 24px 28px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: .8px;

    font-weight: 700;

    text-align: left;
}

.pricing-table tbody tr {

    transition: .25s ease;
}

.pricing-table tbody tr:hover {

    background: #f8fbff;
}

.pricing-table tbody td {

    padding: 26px 28px;

    border-bottom: 1px solid #edf1f7;

    font-size: 15px;

    font-weight: 500;

    color: #344054;
}

.pricing-product {

    display: flex;

    align-items: center;

    gap: 18px;
}

.pricing-icon {

    width: 54px;
    height: 54px;

    border-radius: 18px;

    background: #f5f8fc;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2ca24c;

    font-size: 20px;
}

.pricing-product h4 {

    font-size: 16px;

    font-weight: 700;

    color: #081d4d;

    margin-bottom: 5px;
}

.pricing-product span {

    font-size: 13px;

    color: #667085;
}

.pricing-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 34px;

    padding: 0 14px;

    border-radius: 40px;

    background: #ecfdf3;

    color: #169c43;

    font-size: 12px;

    font-weight: 700;
}

.discount-green {

    color: #169c43 !important;

    font-weight: 700 !important;
}

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

@media(max-width:992px) {

    .pricing-table-wrap {

        overflow-x: auto;
    }

    .pricing-table {

        min-width: 900px;
    }
}

.bulk-cta-section {
    padding: 90px 0;
    background: #fff;
}

.bulk-cta {
    background: linear-gradient(135deg, #081d4d 0%, #102c73 100%);
    border-radius: 34px;
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.bulk-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.bulk-cta-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.bulk-cta-content .subtitle {
    color: #7ee29b;
    margin-bottom: 18px;
}

.bulk-cta-content h2 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.bulk-cta-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .78);
}

.bulk-cta-action {
    position: relative;
    z-index: 2;
    min-width: max-content;
}

.bulk-cta-action .btn-main {
    height: 62px;
    padding: 0 34px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(44, 162, 76, .28);
}

/* =================================================== RESPONSIVE =================================================== */
@media(max-width:992px) {
    .bulk-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px;
    }

    .bulk-cta-content h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {
    .bulk-cta {
        padding: 36px 28px;
        border-radius: 26px;
    }

    .bulk-cta-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .bulk-cta-content p {
        font-size: 16px;
    }

    .bulk-cta-action {
        width: 100%;
    }

    .bulk-cta-action .btn-main {
        width: 100%;
    }
}

/* Base Layout Fixes */
.container-pro.navbar-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hide hamburger menu on desktop screen sizes */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* ── RESPONSIVE MEDIA QUERY (Break at 992px or lower) ── */
@media screen and (max-width: 992px) {

    /* Force the header container into a strict row */
    header .container-pro.navbar-pro {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Keep the logo container left-aligned and prevent it from centering */
    .logo {
        margin: 0 !important;
        text-align: left !important;
    }

    .logo img {
        height: 40px !important;
        /* Forces the image to a clean mobile size */
        width: auto !important;
        display: block !important;
    }

    /* Force the three lines to the far right */
    .menu-toggle {
        display: block !important;
        margin: 0 !important;
        font-size: 24px !important;
        cursor: pointer !important;
    }

    /* Keep the mobile navigation hidden until clicked */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 15px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }
}

.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-heading {
    text-align: center;
    margin-bottom: 50px;
}

.team-heading .subtitle {
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.team-heading .section-title {
    margin: 0;
}

.team-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    /* Important */
}

.team-content {
    padding-top: 0;
}

.team-content p {
    font-size: 17px;
    line-height: 2;
    color: #5f6b7a;
    margin-bottom: 25px;
}

.owner-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #ff7a00;
}

.owner-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #fff1e6;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.owner-card h3 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #13254a;
}

.owner-line {
    width: 70px;
    height: 4px;
    background: #ff7a00;
    border-radius: 20px;
    margin-bottom: 25px;
}

.owner-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #5f6b7a;
}

.owner-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.owner-stats span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #13254a;
}

.owner-stats small {
    color: #7b8794;
}

@media(max-width:991px) {

    .team-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-heading {
        margin-bottom: 35px;
    }

    .owner-card {
        padding: 30px;
    }

    .owner-card h3 {
        font-size: 30px;
    }
}