@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0A1C3A;
    --primary-rgb: 10, 28, 58;
    --primary-light: #12284E;
    --accent-color: #D59B2E;
    --accent-rgb: 213, 155, 46;
    --accent-hover: #B88320;
    --accent-soft: #FFF9EE;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 25px -5px rgba(10, 28, 58, 0.05), 0 8px 10px -6px rgba(10, 28, 58, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(10, 28, 58, 0.08), 0 10px 15px -5px rgba(10, 28, 58, 0.03);
    --shadow-gold: 0 10px 20px -5px rgba(213, 155, 46, 0.25);
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--accent-color);
}

.text-gold {
    color: var(--accent-color) !important;
}

.text-navy {
    color: var(--primary-color) !important;
}

.bg-gold {
    background-color: var(--accent-color) !important;
}

.bg-navy {
    background-color: var(--primary-color) !important;
}

.bg-navy-light {
    background-color: var(--primary-light) !important;
}

.bg-navy-dark {
    background-color: #030D1E !important;
}

.bg-gold-soft {
    background-color: var(--accent-soft) !important;
}

.bg-light-blue {
    background-color: var(--bg-light) !important;
}

/* Custom Spacing & Alignment Utilities */
.py-6 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
}

.pt-6 {
    padding-top: 5.5rem !important;
}

.pb-6 {
    padding-bottom: 5.5rem !important;
}

.mt-6 {
    margin-top: 5.5rem !important;
}

.mb-6 {
    margin-bottom: 5.5rem !important;
}

@media (max-width: 991px) {
    .py-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .mt-6 {
        margin-top: 4rem !important;
    }
    .mb-6 {
        margin-bottom: 4rem !important;
    }
}


/* Premium Buttons */
.btn-gold {
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-navy {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-outline-navy:hover, .btn-outline-navy:focus {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover, .btn-outline-gold:focus {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-light-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-light-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

/* Header & Navigation */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar a:hover {
    color: var(--accent-color);
}

.main-navbar {
    background-color: var(--bg-white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-navbar.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition-smooth);
}

.navbar-sticky .navbar-brand img {
    height: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 10px !important;
    animation: dropdownFade 0.25s ease;
}

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

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.dropdown-item:hover {
    background-color: var(--accent-soft);
    color: var(--accent-color);
    padding-left: 1.75rem;
}

/* Modern Dropdown Styles */
.dropdown-menu-modern {
    min-width: 380px;
    padding: 1.25rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: var(--shadow-lg) !important;
    margin-top: 15px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu-modern {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-top: 0 !important;
    }
    
    .dropdown-menu-modern {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 0.25rem;
}

.dropdown-item-modern:last-child {
    margin-bottom: 0;
}

.dropdown-item-modern:hover {
    background-color: var(--accent-soft);
}

.dropdown-item-modern .item-icon {
    width: 36px;
    height: 36px;
    background-color: var(--bg-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.dropdown-item-modern:hover .item-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.dropdown-item-modern .item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.dropdown-item-modern .item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Page Banners */
.page-banner {
    background: #031B4E; /* solid deep navy background */
    color: var(--bg-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.page-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Gradient overlay so the image fades smoothly into navy on the left and has high contrast */
.page-banner-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #031B4E 0%, rgba(3, 27, 78, 0.9) 25%, rgba(3, 27, 78, 0.3) 70%, rgba(3, 27, 78, 0.6) 100%);
    z-index: 2;
}

@media (max-width: 991px) {
    .page-banner-img {
        width: 100%;
        opacity: 0.25; /* soft blend on tablet/mobile */
    }
    .page-banner-img::before {
        background: linear-gradient(90deg, #031B4E 0%, rgba(3, 27, 78, 0.9) 100%);
    }
}

.page-banner-content {
    position: relative;
    z-index: 3; /* sits on top of image and overlay */
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

/* Hero Section – Full-Bleed Split Layout */
.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    left: -5%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 50%, rgba(213, 155, 46, 0.07) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* hero-inner: full-width flex container, no container padding constraints */
.hero-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

/* Left text column */
.hero-text-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 6vw;
    position: relative;
    z-index: 3;
}

/* Eyebrow label */
.hero-eyebrow {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(213, 155, 46, 0.2);
}

/* Main heading */
.hero-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
    line-height: 1.12;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

/* Sub-text */
.hero-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* CTA buttons row */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

/* Trust badges row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-light);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary-color);
}

.hero-trust-item i {
    font-size: 1rem;
}

/* Right image column – fills the entire right half */
.hero-img-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

/* The image itself fills the column 100% */
.hero-full-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Subtle left-edge gradient so the image blends into the white left side */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0) 50%);
    z-index: 2;
    pointer-events: none;
}

/* Floating stat badge */
.hero-float-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -1.5rem;
    z-index: 4;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 20px 45px -10px rgba(10, 28, 58, 0.18);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent-color);
    animation: float 4s ease-in-out infinite;
}

.hero-float-badge .badge-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-float-badge .badge-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.hero-float-badge .badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Entrance animations */
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.animate-hero-text {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.animate-hero-img {
    opacity: 0;
    animation: heroFadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Responsive: stack on mobile */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-col {
        flex: none;
        max-width: 100%;
        padding: 3.5rem 1.5rem 2rem;
        order: 1;
    }

    .hero-img-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 320px;
        order: 2;
        position: relative;
    }

    .hero-float-badge {
        left: 1rem;
        bottom: 1rem;
    }

    .hero-trust-row {
        gap: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-img-col {
        height: 240px;
    }

    .hero-trust-item {
        font-size: 0.75rem;
    }
}


/* Client Logo Slider */
.logo-slider-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background-color: var(--bg-white);
}

.logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: var(--transition-base);
    padding: 0.5rem 0;
}

.logo-swiper .swiper-slide:hover {
    opacity: 1;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #4A5568;
    text-transform: uppercase;
}

/* Stats Cards */
.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-card .stat-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-card .stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Solution Cards */
.solution-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.solution-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Measurable Impact */
.impact-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.impact-item:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Process Timeline */
.process-step-col {
    position: relative;
}

.process-step-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 4px, transparent 4px, transparent 8px);
    z-index: 1;
}

@media (max-width: 991px) {
    .process-step-col:not(:last-child)::after {
        display: none;
    }
}

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

.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem auto;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

/* Program Cards */
.program-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.program-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.program-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.program-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
}

.program-card .card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card .program-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.program-card .program-meta i {
    color: var(--accent-color);
}

.program-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.program-card .card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Lead Consultant Section */
.consultant-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 6rem 0;
    position: relative;
}

.consultant-section h2 {
    color: var(--bg-white);
}

.consultant-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,0.1);
}

.consultant-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.consultant-list {
    list-style: none;
    padding-left: 0;
}

.consultant-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.consultant-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.consultant-stat {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
}

.consultant-stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1.2;
}

.consultant-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--accent-soft);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author .author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author .author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}

/* Blog List / Article Cards */
.article-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.article-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-img-wrapper img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.article-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
}

.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 0;
}

.article-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.article-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-link:hover {
    color: var(--accent-hover);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.sidebar-search-form .input-group {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.sidebar-search-form input {
    border: none;
    box-shadow: none !important;
}

.sidebar-search-form .btn {
    border: none;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.sidebar-search-form .btn:hover {
    background-color: var(--accent-color);
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    margin-bottom: 0.75rem;
}

.topic-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.topic-link:hover {
    color: var(--accent-color);
}

.topic-count {
    background-color: var(--border-light);
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-banner {
    background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(213,155,46,0.03) 100%);
    border: 1px solid rgba(213, 155, 46, 0.15);
    border-radius: 12px;
    padding: 3rem;
}

/* CTA Banners */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--bg-white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(213, 155, 46, 0.08) 0%, transparent 60%);
}

.cta-whatsapp-btn {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.cta-whatsapp-btn:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
    background-color: #030D1E;
    color: #A0AEC0;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.main-footer h5 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #A0AEC0;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.bottom-footer {
    background-color: #020914;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: #718096;
    font-size: 0.8rem;
}

.bottom-footer a {
    color: #718096;
}

.bottom-footer a:hover {
    color: var(--accent-color);
}

/* Floating Elements */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--bg-white);
}

/* Contact Page Specifics */
.contact-info-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-map-wrapper {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Page Specifics */
.booking-nav-tabs {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.booking-tab-btn {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.booking-tab-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.booking-tab-btn:hover:not(.active) {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.booking-card-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Calendar Styling Mockup */
.calendar-widget {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

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

.calendar-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
}

.calendar-cell.muted {
    color: var(--text-light);
    pointer-events: none;
}

.calendar-cell.active-day {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.calendar-cell.selected-day {
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.calendar-cell:hover:not(.muted):not(.selected-day):not(.active-day) {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.time-slot-btn {
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.time-slot-btn.selected-slot {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white);
}

.time-slot-btn:hover:not(.selected-slot) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Multi-Step Wizard */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.wizard-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: var(--bg-white);
    padding: 0 10px;
}

.wizard-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 auto 0.5rem auto;
    transition: var(--transition-smooth);
}

.wizard-step.active .wizard-step-circle {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: var(--accent-soft);
}

.wizard-step.completed .wizard-step-circle {
    border-color: var(--primary-color);
    color: var(--bg-white);
    background-color: var(--primary-color);
}

.wizard-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.wizard-step.active .wizard-step-label {
    color: var(--accent-color);
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: panelFade 0.4s ease;
}

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

/* Founder Profile Circular Diagram */
.approach-diagram {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.approach-circle-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* square aspect ratio */
}

.approach-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, var(--accent-soft) 0%, rgba(213,155,46,0.1) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.approach-node {
    position: absolute;
    width: 75px;
    height: 75px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-smooth);
}

.approach-node:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-gold);
}

.approach-node i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.approach-node:hover i {
    color: var(--accent-color);
}

.approach-node span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

/* Node layout on circle circumference */
.node-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 5%; transform: translateY(-50%); }
.node-3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 5%; transform: translateY(-50%); }

.approach-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Form Styles */
.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(213, 155, 46, 0.1);
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Blog categories filters */
.blog-filter-btn {
    border: 1px solid var(--border-color);
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.blog-filter-btn.active, .blog-filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Custom Micro-animations */
.hover-float {
    transition: var(--transition-smooth);
}

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

/* Stats Bar Styles */
.stat-icon-circle {
    background-color: var(--accent-soft);
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.stat-icon-circle:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: scale(1.1) rotate(15deg);
}

/* Side-by-Side Testimonials & Insights Styles */
.testimonial-card-modern {
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 2.25rem;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.testimonial-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: #FFFFFF;
    border-color: var(--accent-color);
}

.testimonial-text-modern {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.article-item-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 12px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.article-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.article-img-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-item-modern:hover .article-img-thumb img {
    transform: scale(1.08);
}

.article-title-modern {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.article-title-modern a {
    color: var(--primary-color);
}

.article-title-modern a:hover {
    color: var(--accent-color);
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem;
    color: var(--text-muted);
}
