:root {
    --teal: #00BFA5;
    --teal-dark: #00897B;
    --teal-light: #4DD0C4;
    --navy: #1A2B5F;
    --navy-dark: #0F1A3E;
    --navy-light: #2E4080;
    --coral: #FF4757;
    --gold: #F59E0B;
    --emerald: #10B981;
    --violet: #7C3AED;
    --midnight: #0B1426;
    --white: #fff;
    --gray-light: #F4F7FB;
    --gray: #4A5568;
    --text: #1E2D4E;
    --accent: #00E5D0
}

/* WordPress integration */
.nav-links li,
.mobile-menu li,
.footer-links li {
    list-style: none;
}

.nav-links .menu-item,
.footer-links .menu-item {
    margin: 0;
}

.mobile-menu .menu-item {
    margin: 0;
}

.contact-right .wpcf7 p {
    margin: 0 0 16px;
}

.contact-right .wpcf7 label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.contact-right .wpcf7 input,
.contact-right .wpcf7 select,
.contact-right .wpcf7 textarea,
.modal .wpcf7 input,
.modal .wpcf7 select,
.modal .wpcf7 textarea {
    width: 100%;
    border: 1px solid #d8e1ed;
    border-radius: 4px;
    padding: 13px 14px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.contact-right .wpcf7 textarea,
.modal .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-right .wpcf7-submit,
.modal .wpcf7-submit {
    background: var(--coral);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

/* ── UTILITY ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
}

.section-title span {
    color: var(--teal);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transition: left .5s
}

.btn:hover::after {
    left: 100%
}

.btn-coral {
    background: var(--coral);
    color: #fff
}

.btn-coral:hover {
    background: #e8404f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 71, 87, .4)
}

.btn-primary {
    background: var(--teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 191, 165, .35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--navy);
}

.btn-white:hover {
    background: var(--teal);
    color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 165, .4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 191, 165, 0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes counter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp .7s ease both;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .2s;
}

.delay-3 {
    animation-delay: .3s;
}

.delay-4 {
    animation-delay: .4s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── TOP BAR ── */
.topbar {
    background: var(--navy-dark);
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar a {
    color: #b0bfd0;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    color: var(--teal);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-enquiry {
    background: var(--coral);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 14px;
    border-radius: 2px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-enquiry:hover {
    background: #e8404f !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, .3);
}

.topbar-socials {
    display: flex;
    gap: 6px;
}

.tsoc {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(255, 255, 255, .08);
    color: #b0bfd0 !important;
    transition: all .2s;
}

.tsoc-fb:hover {
    background: #1877F2 !important;
    color: #fff !important;
}

.tsoc-ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #fff !important;
}

.tsoc-li:hover {
    background: #0077B5 !important;
    color: #fff !important;
}

.tsoc-wa:hover {
    background: #25D366 !important;
    color: #fff !important;
}

/* ── NAVBAR ── */
nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--teal);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: .3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 24px 24px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:hover {
    color: var(--teal);
}

.mobile-menu .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* ── HERO ── */
#home {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a6e 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-gear {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 500px;
    height: 500px;
    opacity: .05;
}

.hero-bg-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 191, 165, .15) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-teal-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--teal), transparent);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 10px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--teal);
}

.hero-title .t-gold {
    color: var(--gold)
}

.hero-desc {
    font-size: 16px;
    color: #a0b4cc;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tag {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #c5d4e8;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 2px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: #7a94b0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-main {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 28px;
    animation: float 4s ease-in-out infinite;
}

.hero-card-main img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    display: block;
}

.hero-cert-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.hero-cert {
    background: rgba(0, 191, 165, .1);
    border: 1px solid rgba(0, 191, 165, .25);
    border-radius: 6px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cert i {
    color: var(--teal);
    font-size: 14px;
}

.hero-cert span {
    font-size: 12px;
    color: #c5d4e8;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ── HERO IMAGE VISUAL ── */
.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7a94b0;
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-location i {
    color: var(--teal);
}

.hero-tag i {
    margin-right: 4px;
    color: var(--teal-light);
    font-size: 10px;
}

#home .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
    background: transparent;
}

#home .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

.hero-stat-num::after {
    content: '+';
}

.hero-img-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 52px;
    animation: float 4s ease-in-out infinite;
}

.hero-img-wrapper:hover {
    animation-play-state: paused;
}

.hero-img-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px;
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), box-shadow .45s ease;
    cursor: pointer;
}

.hero-img-wrapper:hover .hero-img-card {
    transform: scale(1.06);
    box-shadow: 0 32px 80px rgba(0, 191, 165, .3), 0 0 0 2px rgba(0, 191, 165, .35);
}

.hero-img-card img {
    width: 360px;
    max-width: 100%;
    border-radius: 10px;
    display: block;
}

.hero-float-badge {
    position: absolute;
    background: rgba(10, 24, 60, .7);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .5px;
    padding: 7px 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), background .3s, box-shadow .3s;
    z-index: 5;
}

.hero-float-badge i {
    font-size: 12px;
    color: var(--teal);
}

.hfb-1 {
    top: 12%;
    left: 0;
    transform: translateX(-16px);
}

.hfb-2 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -16px);
}

.hfb-3 {
    top: 30%;
    right: 0;
    transform: translateX(16px);
}

.hfb-4 {
    bottom: 30%;
    right: 0;
    transform: translateX(16px);
}

.hfb-5 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 16px);
}

.hfb-6 {
    bottom: 12%;
    left: 0;
    transform: translateX(-16px);
}

.hero-img-wrapper:hover .hfb-1 {
    transform: translateX(0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

.hero-img-wrapper:hover .hfb-2 {
    transform: translate(-50%, 0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

.hero-img-wrapper:hover .hfb-3 {
    transform: translateX(0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

.hero-img-wrapper:hover .hfb-4 {
    transform: translateX(0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

.hero-img-wrapper:hover .hfb-5 {
    transform: translate(-50%, 0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

.hero-img-wrapper:hover .hfb-6 {
    transform: translateX(0);
    background: rgba(0, 191, 165, .25);
    box-shadow: 0 4px 16px rgba(0, 191, 165, .2);
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
    background: var(--teal);
    padding: 10px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item i {
    font-size: 10px;
    opacity: .7;
}

/* ── CERTIFICATIONS STRIP ── */
.cert-strip {
    background: var(--midnight);
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.cert-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.cert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
}

.cert-icon.glow-teal {
    background: rgba(0, 191, 165, .12);
    color: var(--teal);
    box-shadow: 0 0 20px rgba(0, 191, 165, .15)
}

.cert-icon.glow-teal:hover {
    box-shadow: 0 0 30px rgba(0, 191, 165, .4)
}

.cert-icon.glow-gold {
    background: rgba(245, 158, 11, .12);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, .15)
}

.cert-icon.glow-gold:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, .4)
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.cert-desc {
    font-size: 11px;
    color: #6a8098;
    font-weight: 500;
}

/* ── ABOUT ── */
#about {
    padding: 100px 0;
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 20px 60px rgba(26, 43, 95, .15);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--teal);
    color: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 191, 165, .3);
}

.about-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.about-feat-icon.c-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark))
}

.about-feat-icon.c-gold {
    background: linear-gradient(135deg, var(--gold), #d97706)
}

.about-feat-icon.c-coral {
    background: linear-gradient(135deg, var(--coral), #e8404f)
}

.about-feat-icon.c-violet {
    background: linear-gradient(135deg, var(--violet), #6d28d9)
}

.about-feat-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4
}


.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.vm-box {
    background: var(--gray-light);
    border-left: 3px solid var(--teal);
    padding: 20px;
    border-radius: 0 6px 6px 0;
}

.vm-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vm-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── PRODUCTS ── */
#products {
    padding: 100px 0;
    background: #fff;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 43, 95, .12);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap i {
    font-size: 48px;
    color: rgba(26, 43, 95, .1);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 191, 165, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    gap: 12px;
}

.product-card-overlay button {
    background: #fff;
    color: var(--navy);
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.product-card-overlay button:hover {
    background: var(--navy);
    color: #fff;
}

.product-body {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.product-enquire {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
}

.product-enquire i {
    font-size: 11px;
    transition: .2s;
}

.product-card:hover .product-enquire i {
    transform: translateX(4px);
}

/* ── WHY CHOOSE US ── */
#why {
    padding: 100px 0;
    background: var(--gray-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: .3s;
    transform-origin: left;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    background: #fff;
    box-shadow: 0 12px 40px rgba(26, 43, 95, .1);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--teal);
    font-size: 24px;
}

.why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* STATS BANNER - OVERSIZED COLORFUL */
.stats-banner {
    background: linear-gradient(135deg, var(--midnight) 0%, #0d1b3a 50%, var(--navy-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 191, 165, .08) 1px, transparent 1px);
    background-size: 24px 24px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative
}

.stat-item {
    text-align: center;
    padding: 24px
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(60px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    transition: text-shadow .3s
}

.stat-num.c-teal {
    color: var(--teal)
}

.stat-num.c-gold {
    color: var(--gold)
}

.stat-num.c-coral {
    color: var(--coral)
}

.stat-num.c-emerald {
    color: var(--emerald)
}

.stat-num.glow {
    animation: glowPulse .6s ease-out
}

.stat-num::after {
    content: '+';
}

.stat-label {
    font-size: 14px;
    color: #6a8098;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px
}

/* CLIENTS - TAG CLOUD */
#clients {
    padding: 80px 0;
    background: #fff
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px
}

.client-chip {
    padding: 12px 22px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    cursor: default;
    border: 2px solid
}

.client-chip:nth-child(5n+1) {
    background: rgba(0, 191, 165, .04);
    border-color: rgba(0, 191, 165, .25);
    color: var(--teal-dark)
}

.client-chip:nth-child(5n+2) {
    background: rgba(245, 158, 11, .04);
    border-color: rgba(245, 158, 11, .25);
    color: #b45309
}

.client-chip:nth-child(5n+3) {
    background: rgba(124, 58, 237, .04);
    border-color: rgba(124, 58, 237, .25);
    color: var(--violet)
}

.client-chip:nth-child(5n+4) {
    background: rgba(255, 71, 87, .04);
    border-color: rgba(255, 71, 87, .25);
    color: #dc2626
}

.client-chip:nth-child(5n+5) {
    background: rgba(16, 185, 129, .04);
    border-color: rgba(16, 185, 129, .25);
    color: #059669
}

.client-chip:hover {
    transform: rotate(-2deg) scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08)
}

.client-logo-card {
    background: #fff;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 130px;
    transition: all .3s
}

.client-logo-card img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: .8;
    transition: all .3s
}

.client-logo-card:hover {
    border-color: var(--teal);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px)
}

.client-logo-card:hover img {
    filter: none;
    opacity: 1
}

.client-logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    line-height: 1.3
}

/* CONTACT - SPLIT LAYOUT */
#contact {
    padding: 100px 0;
    background: #fff
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
}

.contact-left {
    background: var(--midnight);
    color: #fff;
    padding: 48px 40px
}

.contact-left .section-tag {
    color: var(--gold)
}

.contact-left .section-title {
    color: #fff;
    margin-bottom: 32px
}

.contact-left .section-title span {
    color: var(--teal)
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 191, 165, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0
}

.contact-detail-label {
    font-size: 12px;
    color: #6a8098;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.contact-detail-val {
    font-size: 15px;
    color: #c5d4e8;
    font-weight: 500;
    margin-top: 2px
}

.contact-detail-val a {
    color: #c5d4e8;
    text-decoration: none;
    transition: .2s
}

.contact-detail-val a:hover {
    color: var(--teal)
}

.contact-right {
    background: #fff;
    padding: 48px 40px
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: .3px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d8e4ef;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    background: #f8fafc;
    transition: .2s;
    outline: none;
    font-family: 'Barlow', sans-serif
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 191, 165, .1);
    background: #fff
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.deals-in {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px
}

.deals-in-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px
}

.deals-in-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.deals-in-chip {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #c5d4e8;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600
}

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 56px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    color: #8090a8;
    line-height: 1.7;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8090a8;
    font-size: 14px;
    text-decoration: none;
    transition: .2s;
}

.social-btn:hover {
    background: var(--teal);
    color: #fff;
}

.footer-col-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #8090a8;
    text-decoration: none;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--teal);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: #5a6a80;
}

/* ── WHATSAPP ── */
.wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: .2s;
    animation: pulse 2s infinite;
}

.wa-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
    color: #fff;
}

.wa-btn i {
    font-size: 22px;
}

.wa-label {
    display: none;
}

@media (min-width:600px) {
    .wa-label {
        display: block;
    }
}

/* ── ENQUIRY MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 40, .7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(.97);
    transition: .3s;
}

.modal-overlay.active .modal {
    transform: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
}

.enquiry-privacy-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    text-align: center;
}

.enquiry-privacy-note i {
    color: var(--teal);
    margin-right: 4px;
}

.enquiry-privacy-note a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.enquiry-privacy-note a:hover {
    color: var(--teal);
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gray);
    padding: 0;
    line-height: 1;
    transition: .2s;
}

.modal-close:hover {
    color: var(--navy);
}

/* ── PRODUCT MODAL ── */
.prod-modal-img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    background: var(--gray-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.prod-modal-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.prod-modal-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.prod-modal-specs {
    background: var(--gray-light);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}

.prod-modal-specs h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.prod-modal-specs ul {
    list-style: none;
}

.prod-modal-specs li {
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
    border-bottom: 1px solid #e8f0f8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-modal-specs li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 11px;
}

.prod-modal-specs li:last-child {
    border-bottom: none;
}

/* ── PAGE SECTIONS ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
}

.page-hero p {
    color: #a0b4cc;
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    font-size: 13px;
    color: #7a94b0;
}

.breadcrumb a {
    color: var(--teal);
    text-decoration: none;
}

/* ── OUR CERTIFICATIONS ── */
#certifications {
    padding: 50px 0;
    background: var(--gray-light);
}

.cert-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.cert-card {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: all .3s;
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 43, 95, .13);
    border-color: var(--teal);
}

.cert-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 210 / 297;
    background: var(--gray-light);
}

.cert-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 24px;
}

.cert-placeholder-seal {
    width: 72px;
    height: 72px;
    border: 3px solid rgba(0, 191, 165, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 28px;
    background: rgba(0, 191, 165, .08);
    flex-shrink: 0;
}

.cert-placeholder-lines {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cert-placeholder-lines span {
    display: block;
    background: rgba(26, 43, 95, .08);
    border-radius: 2px;
    height: 7px;
    margin: 0 auto;
}

.cert-placeholder-lines span:nth-child(1) {
    width: 78%;
}

.cert-placeholder-lines span:nth-child(2) {
    width: 55%;
}

.cert-placeholder-lines span:nth-child(3) {
    width: 66%;
}

.cert-card-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}

.cert-card:hover .cert-card-img-wrap img {
    transform: scale(1.04);
}

.cert-card-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 191, 165, .88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .3s;
}

.cert-card:hover .cert-card-zoom {
    opacity: 1;
}

.cert-card-zoom i {
    font-size: 30px;
    color: #fff;
}

.cert-card-zoom span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cert-card-body {
    padding: 16px 20px 18px;
    border-top: 3px solid var(--teal);
}

.cert-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.cert-card-sub {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: .3px;
}

/* ── CERT LIGHTBOX ── */
.cert-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 40, .88);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    padding: 20px;
}

.cert-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.cert-lightbox-inner {
    position: relative;
    max-width: 680px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(.95) translateY(10px);
    transition: transform .3s;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}

.cert-lightbox.active .cert-lightbox-inner {
    transform: scale(1) translateY(0);
}

.cert-lightbox-img {
    width: 100%;
    display: block;
    max-height: 80vh;
    object-fit: contain;
    background: var(--gray-light);
    padding: 24px;
}

.cert-lightbox-footer {
    padding: 14px 22px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef2f8;
}

.cert-lightbox-footer span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.cert-lightbox-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gray);
    transition: .2s;
    line-height: 1;
    padding: 4px;
}

.cert-lightbox-close:hover {
    color: var(--navy);
    transform: scale(1.1);
}

/* ── NOTICE TOAST ── */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--teal);
}

/* ── LEADERSHIP ── */
#leadership {
    padding: 100px 0;
    background: #fff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: center;
}

.founder-img-wrap {
    position: relative;
}

.founder-img-card {
    background: linear-gradient(145deg, #e8f4f8, #d0eef5);
    border-radius: 12px;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border: 2px dashed rgba(0, 191, 165, .25);
    transition: transform .35s ease, box-shadow .35s ease;
}

.founder-img-icon {
    width: 100px;
    height: 100px;
    background: rgba(26, 43, 95, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    opacity: .35;
    font-size: 48px;
}

.founder-img-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy);
    opacity: .4;
    text-transform: uppercase;
}

.founder-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--navy);
    padding: 10px 16px;
    border-radius: 6px;
}

.founder-tag-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.founder-tag-role {
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.founder-img-wrap:hover .founder-img-card {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(26, 43, 95, .14);
}

.founder-years-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 191, 165, .35);
    color: #fff;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease;
    cursor: default;
}

.founder-img-wrap:hover .founder-years-badge {
    transform: scale(1.25);
    box-shadow: 0 14px 36px rgba(0, 191, 165, .55);
}

.fyd-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.fyd-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
}

.founder-quote {
    background: var(--navy);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.founder-quote p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    font-style: italic;
}

.founder-quote cite {
    font-size: 12px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
    font-style: normal;
}

.founder-highlights {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.fh-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 191, 165, .08);
    border: 1px solid rgba(0, 191, 165, .2);
    padding: 8px 14px;
    border-radius: 4px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    transition: .2s;
}

.fh-chip:hover {
    background: rgba(0, 191, 165, .15);
}

.fh-chip i {
    color: var(--teal);
    font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cert-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid,
    .contact-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .founder-years-badge {
        top: -10px;
        right: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .topbar {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .vision-mission,
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-badge {
        bottom: -10px;
        right: 10px;
    }

    .cert-strip-inner {
        gap: 20px;
    }

    .clients-grid {
        gap: 12px;
    }

    .cert-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cert-card-body {
        padding: 12px 14px 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal {
        padding: 24px;
    }
}

.filter-btn {
      background: #fff;
      border: 1px solid #d8e4ef;
      color: var(--navy);
      padding: 8px 18px;
      border-radius: 20px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      letter-spacing: .5px;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
    }

/* ── SINGLE PRODUCT DETAIL PAGE ── */

/* Page Banner */
.spd-page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #005f7a 45%, var(--teal) 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.spd-page-banner::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border: 64px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    left: -130px;
    top: -130px;
    pointer-events: none;
}

.spd-page-banner::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 44px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
    left: 160px;
    bottom: -90px;
    pointer-events: none;
}

.spd-banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 14px;
    line-height: 1.1;
    position: relative;
}

/* Reset global nav { } styles that would bleed onto the breadcrumb nav */
.spd-page-banner .spd-breadcrumb {
    background: transparent;
    position: static;
    top: auto;
    z-index: auto;
    box-shadow: none;
}

/* Breadcrumb base */
.spd-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.spd-breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .65);
}

.spd-breadcrumb li + li::before {
    content: '›';
    font-size: 16px;
    line-height: 1;
    margin: 0 10px;
    color: rgba(255, 255, 255, .4);
    font-family: sans-serif;
    font-weight: 400;
}

.spd-breadcrumb a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spd-breadcrumb a:hover {
    color: #fff;
}

.spd-breadcrumb li[aria-current="page"] {
    color: #fff;
    font-weight: 700;
}

.single-product-page {
    padding: 48px 0 80px;
    min-height: 40vh;
}

.spd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.spd-image-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spd-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.spd-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spd-image-placeholder i {
    font-size: 80px;
    color: var(--teal);
    opacity: .35;
}

.spd-category {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.spd-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin: 6px 0 18px;
}

.spd-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.spd-desc p {
    margin: 0 0 12px;
}

.spd-desc p:last-child {
    margin-bottom: 0;
}

.spd-specs {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.spd-specs h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin: 0 0 14px;
}

.spd-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spd-specs li {
    font-size: 13px;
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.spd-specs li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spd-specs li::before {
    content: '✓';
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.spd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    color: #fff;
}

.spd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 13px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    transition: opacity .2s;
}

.spd-back-link:hover {
    opacity: .7;
}

.spd-back-link i {
    transition: transform .2s;
}

.spd-back-link:hover i {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .spd-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .spd-image-wrap {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .spd-actions {
        flex-direction: column;
    }

    .spd-actions .btn,
    .spd-actions .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ── DEDICATED PRODUCTS PAGE ── */
.products-page {
    padding: 48px 0 80px;
}

.products-page-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.products-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

.sidebar-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal);
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    margin-bottom: 3px;
}

.cat-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s, color .18s;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--navy);
}

.cat-item:hover {
    background: var(--gray-light);
    color: var(--teal);
}

.cat-item.active {
    background: var(--teal);
    color: #fff;
}

.cat-item-name {
    flex: 1;
    font-weight: 500;
    line-height: 1.3;
}

.cat-item-count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, .08);
    color: inherit;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .5px;
}

.cat-item.active .cat-item-count {
    background: rgba(255, 255, 255, .25);
}

/* Main content */
.products-page-main {
    flex: 1;
    min-width: 0;
}

.products-active-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .8px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 20px;
}

#productsEmpty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .products-sidebar {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .products-page-layout {
        flex-direction: column;
        gap: 24px;
    }

    .products-sidebar {
        width: 100%;
        position: static;
    }

    .sidebar-heading {
        margin-bottom: 12px;
    }

    .cat-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cat-list li {
        margin-bottom: 0;
    }

    .cat-item {
        width: auto;
        padding: 8px 14px;
        border: 1px solid #d8e4ef;
        border-radius: 20px;
    }

    .cat-item.active {
        border-color: var(--teal);
    }

    .cat-item-count {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-page {
        padding: 32px 0 60px;
    }
}

/* ============================================================
   PRODUCT SECTIONS ACCORDION  (single-product.php)
   ============================================================ */

.spd-accordion {
    margin-top: 28px;
    border-top: 1px solid #e0e0e0;
}

.spd-acc-item {
    border-bottom: 1px solid #e0e0e0;
}

.spd-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.spd-acc-header:hover {
    color: var(--teal);
}

.spd-acc-item.open .spd-acc-header {
    color: var(--teal);
}

.spd-acc-icon {
    flex-shrink: 0;
    font-size: 13px;
    margin-left: 14px;
    transition: transform 0.3s ease;
    color: var(--gray);
}

.spd-acc-item.open .spd-acc-icon {
    transform: rotate(180deg);
    color: var(--teal);
}

.spd-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.spd-acc-content {
    padding: 4px 6px 28px;
}

.spd-acc-content p,
.spd-acc-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.spd-acc-content ul,
.spd-acc-content ol {
    padding-left: 20px;
    margin: 12px 0;
}

.spd-acc-content li {
    margin-bottom: 6px;
}

/* ---- Technical specs table ---- */
.spd-tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.spd-tech-table tr:nth-child(odd) {
    background: var(--gray-light);
}

.spd-tech-table td {
    padding: 11px 16px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    vertical-align: top;
}

.spd-tech-table td:first-child {
    font-weight: 700;
    color: var(--navy);
    width: 35%;
    white-space: nowrap;
}

.spd-tech-table td:last-child {
    color: var(--gray);
}

@media (max-width: 480px) {
    .spd-acc-header {
        font-size: 15px;
        padding: 15px 4px;
    }

    .spd-tech-table td:first-child {
        white-space: normal;
        width: 40%;
    }
}

/* PRODUCT HIGHLIGHTS */
.spd-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 26px
}

.spd-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(0, 191, 165, .08);
    border: 1.5px solid rgba(0, 191, 165, .3);
    color: var(--teal-dark);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600
}

.spd-highlight-chip i {
    font-size: 11px;
    color: var(--teal)
}

/* PRODUCT VIDEO EMBED */
.spd-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 32px;
    background: var(--gray-light)
}

.spd-video-wrap iframe,
.spd-video-wrap embed,
.spd-video-wrap object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

/* PRODUCT BROCHURE DOWNLOAD */
.spd-brochure-wrap {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light)
}

.spd-brochure-wrap .btn i {
    color: #e53935
}

/* ============================================================
   WHATSAPP CHAT WIDGET  (#waPopupWidget)
   ============================================================ */

#waPopupWidget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    z-index: 9998;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#waPopupWidget.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wa-pw-header {
    background: #25D366;
    color: #fff;
    padding: 14px 40px 14px 16px;
    position: relative;
}

.wa-pw-header strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.wa-pw-header span {
    font-size: 12px;
    opacity: 0.92;
}

.wa-pw-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.wa-pw-close:hover {
    opacity: 1;
}

.wa-pw-body {
    background: #fff;
    padding: 20px 16px 16px;
}

.wa-pw-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wa-pw-photo-wrap {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.wa-pw-photo-wrap img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-pw-photo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 22px;
}

.wa-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    border: 2px solid #fff;
}

.wa-pw-person {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-pw-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-pw-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.wa-pw-msg {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.wa-pw-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.wa-pw-cta:hover {
    background: #1ebe57;
    transform: translateY(-1px);
}

.wa-pw-cert-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0 4px;
    border-top: 1px solid var(--gray-light);
    margin-top: 12px
}

.wa-pw-cert-strip img {
    max-height: 28px;
    max-width: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: .75;
    transition: opacity .2s, filter .2s
}

.wa-pw-cert-strip img:hover {
    filter: none;
    opacity: 1
}

.wa-pw-secondary {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
}

.wa-pw-secondary a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.wa-pw-secondary a:hover {
    color: var(--teal);
}
