:root {
    --primary-green: #0FA958;
    --dark-blue: #0B1C3D;
    --white: #ffffff;
    --light-gray: #f5f7fa;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--white);
    color: #333;
}

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

/* =============================
   TOP CONTACT BAR
==============================*/
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    font-size: 14px;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar span {
    margin-right: 20px;
}

.top-bar i {
    color: var(--primary-green);
    margin-right: 6px;
}

/* =============================
   NAVBAR
==============================*/
header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

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

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    white-space: nowrap;
}

.logo-text .accent {
    color: var(--primary-green);
}

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

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

.nav-links a {
    font-weight: 500;
    color: var(--dark-blue);
    transition: 0.3s;
}

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

.cta-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--dark-blue);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark-blue);
}

@media(max-width: 900px) {
    .logo-text {
        font-size: 18px;
    }

    .top-bar {
        justify-content: center;
        text-align: center;
        padding: 10px 5%;
    }

    .top-bar > div {
        width: 100%;
    }

    .top-bar span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

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

    .menu-toggle {
        display: block;
    }
}

/* GLOBAL FIX FOR OVERFLOW (White Space on Right) */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =============================
   EXECUTIVE DARK HERO STYLES
============================= */
.hero-executive {
    position: relative;
    background: #060E1E; /* Deeper than your dark-blue for premium feel */
    background-image: linear-gradient(135deg, #0B1C3D 0%, #060E1E 100%);
    padding: 180px 5% 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Visuals */
.hero-bg-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 169, 88, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(15, 169, 88, 0.15);
    top: -100px;
    right: -50px;
    animation: floating 8s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(11, 28, 61, 0.8);
    bottom: -50px;
    left: -50px;
}

/* Layout */
.hero-flex-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* Text Content */
.hero-badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 30px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
}

.hero-text-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    color: #ffffff;
    line-height: 1.1;
    font-weight: 800;
}

.text-green {
    color: var(--primary-green);
}

.hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 25px 0 45px;
    max-width: 550px;
}

/* Buttons */
.btn-primary-modern {
    background: var(--primary-green);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 169, 88, 0.3);
    background: #12c065;
}

.hero-partnership {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Glass Card Visual */
.feature-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.glass-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.glass-row:last-child { margin-bottom: 0; }

.glass-icon {
    width: 55px;
    height: 55px;
    background: rgba(15, 169, 88, 0.1);
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.glass-info h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.glass-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Floating Animation */
@keyframes floating {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-flex-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-cta-box { display: flex; flex-direction: column; align-items: center; }
    .hero-glass-visual { margin-top: 50px; }
}

/* =============================
   MODERN CLIENT PORTFOLIO STYLES
============================= */
.clients-modern-section {
    position: relative;
    background: #060E1E; /* Matches your Dark Executive theme */
    padding: 100px 5%;
    overflow: hidden;
}

.clients-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Glass Grid Layout */
.client-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(15, 169, 88, 0.05);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(15, 169, 88, 0.1);
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s ease;
}

.client-card:hover .client-icon-wrap {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 0 20px var(--primary-green);
}

.client-info h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
}

.client-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .client-glass-grid {
        grid-template-columns: 1fr;
    }
    .client-card {
        padding: 20px;
    }
}

.client-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05); /* Softened background for images */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensures image doesn't bleed past corners */
    transition: 0.3s ease;
}

.client-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image fills the 60x60 box without stretching */
    transition: transform 0.3s ease;
}

.client-card:hover .client-icon-wrap img {
    transform: scale(1.1); /* Subtle zoom effect on hover */
}

/* Remove the previous icon-specific hover color if you don't want a solid green block */
.client-card:hover .client-icon-wrap {
    background: transparent;
    box-shadow: 0 0 15px rgba(15, 169, 88, 0.4);
}

/* =============================
   WHY SECTION
============================= */

.why-section {
    padding: 60px 5%;
    background: #f5f7fa;
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: #0FA958;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-intro h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-intro h2 .text-green {
    color: var(--primary-green); /* Keeps "Client Portfolio" green */
}

.section-intro p {
    color: #555;
    line-height: 1.6;
}

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

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #0B1C3D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 22px;
}

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

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.why-cta {
    text-align: center;
    margin-top: 40px;
}

/* =============================
   MODERN SERVICES SECTION
============================= */
.services-section {
    padding: 100px 5%;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--dark-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 169, 88, 0.1);
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.service-card:hover .card-icon {
    background: var(--primary-green);
    color: white;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Benefits Strip Modern */
.services-benefits-modern {
    margin-top: 80px;
    background: var(--dark-blue);
    padding: 60px;
    border-radius: 30px;
    color: white;
    background-image: linear-gradient(45deg, #0b1c3d 0%, #0f2a5a 100%);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

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

.benefits-grid i {
    color: var(--primary-green);
}

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 61, 0.8);
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    max-width: 700px;
    width: 100%;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

#modalBody h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

#modalBody p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* =============================
   INTERNATIONAL BRAND ABOUT PAGE
============================= */

/* HERO */
.about-hero {
    background: linear-gradient(135deg, #0B1C3D, #132b5c);
    padding: 60px 5%;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.about-hero-content {
    max-width: 800px;
    margin: auto;
}

.about-hero h1 {
    font-size: 40px;
    margin: 20px 0;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* GENERAL */
.section-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0FA958;
    font-weight: 600;
}

.section-tag.light {
    color: #fff;
    opacity: 0.8;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 5%;
    background: #fff;
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.about-text h2 {
    margin: 20px 0;
    font-size: 32px;
    color: #0B1C3D;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* VISION MISSION */
.vision-mission {
    padding: 60px 5%;
    background: #f7f9fc;
}

.vm-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.vm-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(15,169,88,0.05);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.vm-card h3 {
    margin-bottom: 15px;
    color: #0B1C3D;
}

/* LEADERSHIP */
.leadership-section {
    padding: 60px 5%;
    background: white;
}

.leadership-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

.leadership-card {
    background: linear-gradient(135deg, #0B1C3D, #132b5c);
    padding: 50px;
    border-radius: 24px;
    color: white;
}

.leadership-card h3 {
    font-size: 24px;
}

.leadership-card span {
    opacity: 0.8;
}

/* VALUES */
.values-section {
    padding: 60px 5%;
    background: #f7f9fc;
    text-align: center;
}

.values-container {
    max-width: 1100px;
    margin: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

/* =============================
   ABOUT PAGE PREMIUM STYLING
============================= */

.about-section {
    position: relative;
    padding: 60px 5%;
    background: linear-gradient(135deg, #ffffff 60%, #f5f7fa 100%);
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(15,169,88,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.about-text h2 {
    margin: 20px 0 30px;
    color: #0B1C3D;
    font-size: 34px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}


/* =============================
   VISION & MISSION
============================= */

.vision-mission {
    position: relative;
    padding: 60px 5%;
    background: #0B1C3D;
    overflow: hidden;
}

.vm-bg-shape {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

.vm-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    transition: 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #0B1C3D;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(15,169,88,0.1);
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.vm-card p {
    color: #555;
    line-height: 1.7;
}


/* =============================
   COMMITMENT SECTION
============================= */

.commitment-section {
    position: relative;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    text-align: center;
    overflow: hidden;
}

.commitment-shape {
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(15,169,88,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.commitment-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.commitment-container h2 {
    margin: 20px 0 30px;
    font-size: 32px;
    color: #0B1C3D;
}

.commitment-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}


/* =============================
   SECTION TAG STYLE
============================= */

.section-tag {
    display: inline-block;
    background: #0FA958;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* =============================
   LIGHT THEME VIDEO SECTION
============================= */
.video-light-section {
    position: relative;
    background: #ffffff; /* Clean white background */
    padding: 100px 5%;
    overflow: hidden;
    color: var(--dark-blue);
}

.video-bg-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Subtle soft glow instead of dark orbs */
.accent-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 169, 88, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.video-flex-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Badge & Headings */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f4f8;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(15, 169, 88, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(15, 169, 88, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 169, 88, 0); }
}

.video-text-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.video-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Feature Grid - Light Theme */
.feature-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item-light {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: 0.3s ease;
}

.feature-item-light:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-green);
}

.icon-box-light {
    font-size: 20px;
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    background: rgba(15, 169, 88, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-light h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.info-light p {
    font-size: 13px;
    color: #777;
}

/* Video Player Container */
.player-container-shadow {
    background: white;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(11, 28, 61, 0.1);
    border: 1px solid #eee;
}

.video-canvas {
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    background: #000;
}

.video-canvas video {
    width: 100%;
}

.player-footer {
    padding: 15px 10px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-blue);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .video-flex-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .video-description {
        margin-left: auto;
        margin-right: auto;
    }
    .feature-grid-light {
        justify-items: center;
    }
    .feature-item-light {
        width: 100%;
        text-align: left;
    }
    .video-player-side {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .feature-grid-light {
        grid-template-columns: 1fr;
    }
}

/* =============================
   Blog
============================= */
/* --- High-Contrast & Fixed Spacing Blog --- */

.blog-page {
    background-color: #f1f5f9; /* Slate background */
    display: flex;
    flex-direction: column;
}

.blog-header {
    padding: 100px 5% 60px; /* Standard padding, no negative overlap */
    text-align: center;
    background: #e2e8f0; /* Darker slate for header area */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-header .section-tag {
    background: var(--primary-green);
    color: #fff;
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.blog-header .display-title {
    color: var(--dark-blue);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-top: 10px;
}

.blog-header .display-title span {
    color: var(--primary-green);
}

/* The Grid Section */
.blog-section {
    padding: 60px 5% 0px; /* Bottom padding set to 0 to touch footer */
    background-color: #f1f5f9; /* Match page background */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.card-body {
    padding: 25px;
}

/* Fix for the white box/gap at bottom */
.pagination-wrapper {
    background-color: #f1f5f9; /* Ensures no white strips show */
    padding: 40px 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

/* High Contrast Empty State */
.empty-state-card {
    grid-column: 1 / -1;
    background: var(--dark-blue);
    color: white;
    padding: 60px 30px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.empty-icon i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* --- Modern Blog Details --- */
.post-details-page {
    background-color: #ffffff;
    color: #1a1a1b;
}

.post-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 120px 5% 60px;
}

.post-header {
    text-align: center;
    margin-bottom: 50px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumb i { font-size: 0.7rem; color: #cbd5e1; }

.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #64748b;
    font-size: 0.95rem;
}

.meta-divider {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

.post-hero-image {
    margin-bottom: 60px;
}

.post-hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

/* --- Content Styling (Ensuring formatting is seen) --- */
.post-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.post-body p { margin-bottom: 25px; }

.post-body h2, .post-body h3 {
    color: var(--dark-blue);
    margin: 45px 0 20px;
    font-weight: 800;
}

.post-body strong {
    color: #0f172a;
    font-weight: 800; /* Makes bold text pop */
}

.post-body ul, .post-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.post-body li { margin-bottom: 10px; }

/* --- Author Box --- */
.post-author-box {
    margin-top: 80px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 { margin-bottom: 5px; color: var(--dark-blue); font-size: 1.2rem; }
.author-info p { color: #64748b; font-size: 0.95rem; line-height: 1.5; }

/* --- Recommended Section --- */
.recommended-section {
    background: #f1f5f9;
    padding: 80px 5%;
}

.recommended-section .section-title {
    max-width: 1200px;
    margin: 0 auto 40px;
    font-weight: 800;
    font-size: 1.8rem;
}

.recommended-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.recommended-card {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.recommended-card:hover { transform: translateY(-5px); }

.rec-img { width: 90px; height: 90px; flex-shrink: 0; }
.rec-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.rec-content h5 { font-size: 1rem; margin-bottom: 5px; line-height: 1.4; color: var(--dark-blue); }
.rec-content span { font-size: 0.8rem; color: #94a3b8; }

/* =============================
   IMAGE SPLIT SECTION
============================= */

/* Container & Section Spacing */
.split-feature {
    padding: 100px 5%;
    background-color: #ffffff;
    overflow: hidden;
}

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

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: column; /* Mobile stack */
}

/* Image Styling */
.split-image {
    position: relative;
    width: 100%;
}

.image-overlay-card img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Text Styling */
.split-text {
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: #10b981; /* Matches the green in your image */
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.display-title {
    font-size: clamp(28px, 5vw, 42px); /* Fluid size */
    line-height: 1.2;
    color: #1a1a1b;
    margin-bottom: 25px;
    font-weight: 800;
}

.display-title span {
    color: #333; /* Subtitle highlight color */
}

.content-body p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #1a1a1b;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #10b981;
}

/* Responsive Tablet/Desktop Desktop */
@media (min-width: 992px) {
    .split-wrapper {
        flex-direction: row; /* Side by side */
    }

    .split-image, .split-text {
        flex: 1;
    }

    /* Reverse order option if you want image on right */
    /* .split-wrapper { flex-direction: row-reverse; } */
}

/* =============================
   MODERN TRUST STRIP
============================= */
.trust-strip {
    background: #0B1C3D;
    background-image: radial-gradient(circle at 10% 20%, rgba(15, 169, 88, 0.1) 0%, transparent 40%);
    padding: 60px 5%;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 240px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 169, 88, 0.15);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 0 15px rgba(15, 169, 88, 0.4);
}

.trust-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.trust-text p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.4;
}

/* =============================
   RESPONSIVE ADJUSTMENTS
============================= */
@media (max-width: 1100px) {
    .trust-container {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .trust-item {
        min-width: 100%; /* Stack fully on mobile */
    }
}

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

.industries-section {
    padding: 60px 5%;
    background: #f8fafc;
}

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

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

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

.industry-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0FA958;
}

/* =============================
   PROCESS SECTION
============================= */

.process-section {
    padding: 60px 5%;
    background: white;
}

.process-container {
    max-width: 1100px;
    margin: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 40px;
    font-weight: bold;
    color: rgba(11,28,61,0.1);
    margin-bottom: 10px;
}

/* =============================
   PREMIUM LEADERSHIP SECTION
============================= */
.leadership-premium {
    padding: 120px 5%;
    background: #ffffff;
    position: relative;
}

.leadership-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

/* Portrait Styling */
.leadership-portrait {
    position: relative;
}

.portrait-stack {
    position: relative;
    z-index: 2;
}

.main-portrait {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px 40px 150px 40px; /* Modern asymmetric radius */
    box-shadow: 30px 30px 80px rgba(11, 28, 61, 0.15);
}

.portrait-overlay-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--dark-blue);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-left: 5px solid var(--primary-green);
}

.experience-years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
}

.experience-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}

.geometric-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--light-gray);
    border-radius: 50%;
    z-index: 1;
}

/* Narrative Styling */
.leader-name {
    font-size: 48px;
    color: var(--dark-blue);
    letter-spacing: -1px;
    margin: 10px 0;
}

.leader-role {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
}

.lead-para {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.leadership-focus {
    list-style: none;
    margin-bottom: 40px;
}

.leadership-focus li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.leadership-focus i {
    font-size: 20px;
    color: var(--primary-green);
    margin-top: 5px;
}

.leadership-focus span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.leadership-philosophy {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    font-style: italic;
    font-size: 17px;
    color: var(--dark-blue);
    font-weight: 500;
    border-left: 2px solid #ddd;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0f4f8;
    padding: 15px 30px;
    border-radius: 50px;
    color: #0077b5;
    font-weight: 700;
    transition: 0.3s;
}

.btn-linkedin:hover {
    background: #0077b5;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .leadership-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .main-portrait {
        height: 450px;
    }

    .portrait-overlay-card {
        left: 20px;
        bottom: -20px;
    }
}

/* =============================
   FINAL STRONG CTA
============================= */

.final-cta {
    padding: 140px 5%;
    background: linear-gradient(135deg, #0B1C3D, #132b5c);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

.final-cta-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 40px;
    margin: 20px 0;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* White Button */
.btn-white {
    background: white;
    color: #0B1C3D;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* Outline White Button */
.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #0B1C3D;
}

/* Responsive */
@media(max-width: 768px) {
    .final-cta h2 {
        font-size: 30px;
    }
}

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

/* =============================
   CONTACT PAGE REWRITE
============================= */

/* Modern Hero */
.contact-hero-modern {
    padding: 100px 5%;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.contact-hero-modern h1 {
    font-size: 48px;
    line-height: 1.2;
    z-index: 2;
    position: relative;
}

.contact-hero-modern h1 span {
    color: var(--primary-green);
}

.contact-hero-modern p {
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.8;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.hero-bg-shapes .shape {
    position: absolute;
    background: var(--primary-green);
    filter: blur(80px);
    opacity: 0.1;
    border-radius: 50%;
}

.s1 { width: 300px; height: 300px; top: -100px; left: -50px; }
.s2 { width: 250px; height: 250px; bottom: -50px; right: -50px; }

/* Contact Grid */
.contact-main {
    padding: 80px 5%;
    background: #fdfdfd;
}

.contact-grid {
    max-width: 1200px;
    margin: -150px auto 0; /* Pulls form up into hero */
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Sidebar Info */
.contact-sidebar {
    background: var(--dark-blue);
    color: white;
    padding: 60px 40px;
}

.info-card-premium h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box .icon {
    width: 45px;
    height: 45px;
    background: rgba(15, 169, 88, 0.2);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-box .details span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 5px;
}

.info-box .details a, .info-box .details p {
    font-size: 16px;
    font-weight: 500;
    display: block;
    line-height: 1.5;
}

.confidentiality-badge {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.confidentiality-badge i {
    font-size: 24px;
    color: var(--primary-green);
}

.confidentiality-badge p {
    font-size: 13px;
    opacity: 0.7;
}

/* Form Styling */
.contact-form-wrapper {
    background: white;
    padding: 60px;
}

.form-container h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.form-container p {
    color: #777;
    margin-bottom: 40px;
}

.modern-form .input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-box {
    margin-bottom: 25px;
}

.input-box label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.input-box input, .input-box select, .input-box textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
    background: #f8fafc;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-box input:focus, .input-box select:focus, .input-box textarea:focus {
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(15, 169, 88, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:hover {
    background: #0d964d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 169, 88, 0.2);
}

/* Toasts */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
}

.toast.success { background: #0FA958; }
.toast.error { background: #e74c3c; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
    .contact-hero-modern h1 { font-size: 32px; }
}

@media (max-width: 600px) {
    .modern-form .input-group { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px; }
}

/* =============================
   INFINITE LOGO CAROUSEL
==============================*/
/* =============================
   REGISTRATION MARQUEE - LIGHT THEME
============================= */
.reg-marquee-section {
    padding: 80px 0;
    background: #FFFFFF; /* Pure white background */
    overflow: hidden;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.reg-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Edge fade effect adjusted for white background */
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.reg-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollReg 35s linear infinite;
}

.reg-marquee-track:hover {
    animation-play-state: paused;
}

.reg-marquee-set {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}

.reg-marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F8FAFC; /* Very light blue-gray background */
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid #E2E8F0; /* Soft border */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.reg-marquee-item:hover {
    border-color: #0FA958; /* Green accent on hover */
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reg-marquee-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.reg-name {
    color: #0B1C3D !important; /* Your theme's dark blue for text contrast */
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes scrollReg {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =============================
   PAYMENT TERMS SECTION
============================= */
:root {
    --primary-green: #0FA958;
    --dark-blue: #0B1C3D;
    --light-green: rgba(15, 169, 88, 0.12);
    --green-glow:  rgba(15, 169, 88, 0.25);
    --border-soft: rgba(11, 28, 61, 0.08);
    --text-muted:  #6B7A96;
}

/* Demo body – remove in production */
body { margin: 0; font-family: 'Segoe UI', sans-serif; background: #f5f7fa; }

/* =====================================================================
   PAYMENT TERMS SECTION
===================================================================== */
.payment-section {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle watermark grid */
.payment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,169,88,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,169,88,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.payment-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* ── Section intro ─────────────────────────────────────────────────── */
.section-intro.center { text-align: center; max-width: 620px; margin: 0 auto 64px; }

.section-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-intro h2 {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--dark-blue);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 16px;
}

.section-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── PACKAGES STRIP ─────────────────────────────────────────────────── */
.packages-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.pkg-card {
    background: #ffffff;
    border: 1.5px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 22px 24px;
    position: relative;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    cursor: default;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,28,61,.10);
    border-color: rgba(15,169,88,.35);
}

/* Popular badge */
.pkg-card.popular {
    border-color: var(--primary-green);
    box-shadow: 0 12px 32px var(--green-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pkg-tier {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.pkg-tier-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-basic   { background: #94A3B8; }
.dot-pro     { background: #3B82F6; }
.dot-ultra   { background: #8B5CF6; }
.dot-exec    { background: var(--primary-green); }

.pkg-tier-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pkg-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 6px;
}

.pkg-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 20px;
    font-style: italic;
}

.pkg-divider {
    border: none;
    border-top: 1px solid var(--border-soft);
    margin: 0 0 16px;
}

.pkg-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #4A5568;
    line-height: 1.4;
}

.pkg-features li i {
    color: var(--primary-green);
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pkg-plus-note {
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-green);
    background: var(--light-green);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-price-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ── PAYMENT GRID (terms + methods) ─────────────────────────────────── */
.payment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Term items */
.payment-info { display: flex; flex-direction: column; gap: 0; }

.term-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-soft);
}
.term-item:first-child { padding-top: 0; }
.term-item:last-child  { border-bottom: none; }

.term-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: background .2s, transform .2s;
}
.term-item:hover .term-icon {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.05);
}

.term-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 7px;
}
.term-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Payment Methods Card */
.payment-methods-card {
    background: var(--dark-blue);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(11,28,61,.18);
    position: sticky;
    top: 100px;
}

.payment-methods-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0 0 10px;
}
.payment-methods-card > p {
    font-size: 14px;
    opacity: .75;
    margin: 0 0 24px;
    line-height: 1.6;
}

.methods-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.method {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.055);
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14.5px;
    border: 1px solid rgba(255,255,255,.09);
    transition: background .2s;
}
.method:hover { background: rgba(15,169,88,.15); }
.method i { color: var(--primary-green); font-size: 16px; }

/* Request quote CTA */
.quote-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--primary-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 22px;
    transition: opacity .2s, transform .15s;
}
.quote-cta:hover { opacity: .88; transform: translateY(-1px); }
.quote-cta i { font-size: 15px; }

.payment-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: .5;
}

/* =====================================================================
  TESTIMONIAL SECTION
===================================================================== */
.testimonial-section {
    padding: 40px 5% 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9f6 100%);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    padding: 46px 52px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 169, 88, 0.18);
    box-shadow: 0 24px 50px rgba(11, 28, 61, 0.09);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 26px;
    font-size: 98px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(15, 169, 88, 0.16);
    pointer-events: none;
}

.testimonial-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(15, 169, 88, 0.1);
    color: #0FA958;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.testimonial-card blockquote {
    margin: 0;
    color: #0B1C3D;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    line-height: 1.8;
    font-weight: 600;
}

.testimonial-author {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0B1C3D;
}

.author-role {
    color: #5a6a86;
    font-size: 0.96rem;
    font-weight: 500;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .packages-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .payment-grid { grid-template-columns: 1fr; }
    .payment-methods-card { max-width: 500px; margin: auto; position: static; }
}

@media (max-width: 640px) {
    .packages-strip { grid-template-columns: 1fr; }
    .payment-section { padding: 70px 5%; }
    .testimonial-section { padding: 25px 5% 70px; }
    .testimonial-card { padding: 36px 24px 30px; border-radius: 18px; }
    .testimonial-card::before { left: 14px; top: 4px; font-size: 74px; }
    .testimonial-card blockquote { line-height: 1.7; }
}

/* =============================
   SNACKBAR / ALERTS
============================= */
#snackbar {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#snackbar.success {
    background: #0FA958;
}

#snackbar.error {
    background: #e74c3c;
}

/* =============================
   FOOTER
==============================*/
footer {
    background: var(--dark-blue);
    color: var(--white);
    margin-top: 80px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-text {
    color: var(--white);
}

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

.footer-about p {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-green);
    margin-right: 8px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: var(--white);
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #07142d;
    font-size: 13px;
}

/* =============================
   WHATSAPP WIDGET
============================= */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #0B1C3D;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #0B1C3D;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}


/* =============================
   ABOUT PAGE STYLES
============================= */

/* About Hero */
.about-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(rgba(11, 28, 61, 0.9), rgba(11, 28, 61, 0.9)), url('/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 48px;
    margin: 20px 0;
}

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

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 5%;
    margin-top: -60px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 169, 88, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

/* Story Section */
.about-story {
    padding: 100px 5%;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-green);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(15, 169, 88, 0.3);
}

.experience-badge strong {
    display: block;
    font-size: 36px;
}

.story-content {
    flex: 1.2;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h4 {
    color: var(--dark-blue);
    border-left: 4px solid var(--primary-green);
    padding-left: 15px;
    margin-bottom: 10px;
}

/* Core Values */
.core-values {
    padding: 100px 5%;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 5px solid transparent;
    transition: 0.3s;
}

.value-box:hover {
    border-bottom: 5px solid var(--primary-green);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.value-box i {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .mv-grid, .story-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }

    .about-hero h1 { font-size: 36px; }

    .story-image { order: 2; }
    .story-content { order: 1; }
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    border-color: #0FA958;
    background: #f0fff4;
}

.checkbox-item input {
    accent-color: #0FA958; /* modern checkbox color */
    cursor: pointer;
}

/* =============================
   CLIENT MARQUEE - LIGHT THEME
============================= */
.client-marquee-section {
    padding: 80px 0;
    background: #FFFFFF; /* Pure white background */
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    /* Edge fade effect for white background */
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollContinuous 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-set {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F8FAFC; /* Soft off-white/gray for definition */
    padding: 12px 25px;
    border-radius: 100px;
    border: 1px solid #E2E8F0; /* Clean light border */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    border-color: #0FA958; /* Your theme's primary green */
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.marquee-item img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: none !important; /* Keep brand colors vibrant */
}

.client-name {
    color: #0B1C3D !important; /* Dark blue from your theme for text */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

@keyframes scrollContinuous {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
