/* --- 3.9.2 Palette: Eco-Tech Premium 2026 --- */
:root {
    /* Brand Colors */
    --brand-green: #008f45; 
    --brand-lime: #cddc39;  
    --brand-black: #0a0f14; /* Deepest Void */
    --brand-dark: #131b24;  /* Soft Charcoal */
    --brand-gold: #ffd700;  /* For Leadership Hiring */
    
    /* Backgrounds */
    --bg-paper: #ffffff;
    --bg-mist: #f8fafc;     
    
    /* UI Elements */
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 143, 69, 0.1);
    --glass-blur: blur(30px);
    
    /* Animation Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Typography --- */
* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--bg-paper);
    color: var(--brand-black);
    font-family: 'Outfit', sans-serif;
    overflow-x: clip;
    cursor: none;
    padding-bottom: 0;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: all;
}

.page-loader:not(.hidden) {
    display: flex !important;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}

.loader-content {
    text-align: center;
    position: relative;
    display: block;
}

.loader-spinner {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: block;
}

/* Outer rotating ring */
.loader-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--brand-green);
    border-right-color: var(--brand-lime);
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* Inner pulsing circle */
.loader-spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-lime));
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 143, 69, 0.5);
}

/* Orbiting dots */
.loader-spinner .orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-lime);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: orbit 2s linear infinite;
    box-shadow: 0 0 10px rgba(205, 220, 57, 0.8);
}

.loader-spinner .orbit-dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-spinner .orbit-dot:nth-child(2) {
    animation-delay: -0.5s;
}

.loader-spinner .orbit-dot:nth-child(3) {
    animation-delay: -1s;
}

.loader-spinner .orbit-dot:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes spin {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% { 
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(60px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(60px) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(60px) scale(1);
        opacity: 1;
    }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    letter-spacing: 0.2em;
    color: white;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
    display: block;
    text-align: center;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

#page-container {
    min-height: 100vh;
    width: 100%;
    display: block;
    position: relative;
    overflow: visible;
    transform: none;
}

h1, h2, h3, h4, .display-type {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    color: var(--brand-black);
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--brand-green);
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }

/* --- Advanced Custom Cursor (Hidden on Touch) --- */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--brand-green); }
.cursor-outline {
    width: 40px; height: 40px;
    border: 1.5px solid var(--brand-green);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
body.hovering .cursor-outline {
    background-color: rgba(205, 220, 57, 0.1);
    width: 70px; height: 70px;
    border-color: var(--brand-lime);
    mix-blend-mode: multiply;
}
/* Hide cursor on mobile/tablet */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
    .dock-item, .dock-cta, .btn-brand, [data-hover-trigger] { 
        cursor: pointer; 
    }
}

/* --- Fixed Logo Badge (Top Left) --- */
.fixed-logo-badge {
    position: fixed;
    top: 20px; left: 20px;
    /* background: rgba(255, 255, 255, 0.9); */
    background-color: #ffffff;
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 2000;
    transition: transform 0.3s;
    cursor: none;
    display: flex; align-items: center; gap: 10px;
}
.fixed-logo-badge:hover { transform: scale(1.05); }
.fixed-logo-badge img { height: 60px; width: auto; }
.fixed-logo-text { font-weight: 700; font-size: 1rem; letter-spacing: -0.5px; color: var(--brand-black); }

/* --- FIXED: FLOATING GLASS DOCK (Bottom Center) --- */
.dock-container {
    position: fixed !important;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.9); /* Dark glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    max-width: 95vw;
    opacity: 1 !important;
    visibility: visible !important;
}

.dock-item {
    position: relative;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    color: #a1a1aa;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: none;
    border: 1px solid transparent;
    flex-shrink: 0;
}

/* Hover Effects (Magnification) */
.dock-item:hover {
    width: 65px; height: 65px;
    background: var(--brand-green);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 143, 69, 0.4);
    margin: 0 10px;
}

.dock-item.active {
    background: white;
    color: var(--brand-black);
    border-color: var(--brand-lime);
}

/* Tooltip */
.dock-tooltip {
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--brand-black);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.2s;
    pointer-events: none;
    white-space: nowrap;
}
.dock-item:hover .dock-tooltip { opacity: 1; transform: translateX(-50%) scale(1); top: -50px; }

/* Contact CTA in Dock */
.dock-cta {
    background: var(--brand-lime);
    color: var(--brand-black);
    padding: 0 25px;
    height: 50px;
    border-radius: 50px;
    display: flex; align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: all 0.3s;
    cursor: none;
    border: none;
    white-space: nowrap;
}
.dock-cta:hover { transform: scale(1.05); background: white; }

/* Mobile Dock Responsiveness */
@media (max-width: 768px) {
    .dock-container {
        padding: 8px 12px;
        gap: 5px;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(15, 23, 42, 0.98);
        width: auto;
        max-width: 95%;
        justify-content: center;
        position: fixed !important;
        display: flex !important;
    }
    .dock-item {
        width: 42px; height: 42px;
        font-size: 1.1rem;
    }
    .dock-item:hover {
        width: 45px; height: 45px;
        margin: 0 2px;
        transform: translateY(-3px);
    }
    .dock-cta {
        padding: 0 12px;
        width: auto;
        min-width: 50px;
        height: 42px;
        justify-content: center;
        margin-left: 5px;
        font-size: 1.1rem;
        background: var(--brand-lime);
        display: flex;
        align-items: center;
        border-radius: 50px;
    }
    .dock-cta span { display: none; }
    .dock-cta::after { 
        content: '\f0e0'; 
        font-family: "Font Awesome 6 Free"; 
        font-weight: 900;
        color: var(--brand-black);
        font-size: 1rem;
    }
    .dock-cta:hover {
        background: white;
    }
    .dock-cta:hover::after {
        color: var(--brand-green);
    }
    .dock-tooltip { display: none; }
}

/* --- Buttons --- */
.btn-brand {
    background: var(--brand-black); color: white !important; 
    padding: 16px 32px; border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid var(--brand-black); font-weight: 600;
    position: relative; overflow: hidden; z-index: 1;
}
.btn-brand::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: var(--brand-lime); z-index: -1;
    transition: width 0.4s var(--ease-out-expo);
}
.btn-brand:hover {
    color: var(--brand-black) !important;
    border-color: var(--brand-lime);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 220, 57, 0.3);
}
.btn-brand:hover::before { width: 100%; }

/* --- Hero Section --- */
.hero-wrapper {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px;
    position: relative;
    background: radial-gradient(circle at 10% 10%, rgba(0, 143, 69, 0.05), transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(205, 220, 57, 0.1), transparent 40%);
}
.hero-title-main {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1; font-weight: 800;
    background: linear-gradient(45deg, var(--brand-black), #4a4a4a);
    background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-card-float {
    border-radius: 40px 0 40px 40px; overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1); position: relative;
}
.hero-card-float img { transition: transform 2s ease; }
.hero-card-float:hover img { transform: scale(1.1); }

@media (max-width: 991px) {
    .hero-wrapper {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-card-float { margin-top: 40px; }
    .hero-title-main {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .service-title {
        font-size: 1.5rem;
    }
    .display-4 {
        font-size: 2.5rem;
    }
    .display-3 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }
    
    .hero-wrapper {
        padding-top: 60px;
        padding-bottom: 100px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .hero-title-main {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
        overflow-wrap: break-word;
    }
    .lead {
        font-size: clamp(0.9rem, 4vw, 1rem) !important;
        line-height: 1.5 !important;
    }
    .btn-brand {
        padding: 10px 20px;
        font-size: clamp(0.75rem, 3.5vw, 0.85rem);
        width: 100%;
        margin-bottom: 10px;
        white-space: normal;
        line-height: 1.4;
    }
    .btn-outline-dark {
        width: 100%;
        padding: 10px 20px;
        white-space: normal;
        line-height: 1.4;
    }
    .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .service-row {
        padding: 20px 10px;
    }
    .service-row > h3.fw-light {
        display: none;
    }
    .service-title {
        font-size: clamp(1.1rem, 4.5vw, 1.2rem) !important;
        line-height: 1.3 !important;
        overflow-wrap: break-word;
        color: var(--brand-black) !important;
    }
    .service-row p {
        width: 100% !important;
        font-size: clamp(0.8rem, 3.5vw, 0.85rem);
        line-height: 1.5 !important;
        overflow-wrap: break-word;
    }
    .display-4 {
        font-size: clamp(1.5rem, 6vw, 1.75rem) !important;
        line-height: 1.2 !important;
    }
    .display-3 {
        font-size: clamp(1.75rem, 7vw, 2rem) !important;
        line-height: 1.2 !important;
    }
    .display-6 {
        font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
        line-height: 1.3 !important;
    }
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
    }
    p, span, div {
        overflow-wrap: break-word;
    }
    .testimonial-modern-card p {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem) !important;
        line-height: 1.5 !important;
    }
    .director-card-modern {
        margin-bottom: 30px;
    }
    .director-bio-text {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem) !important;
        line-height: 1.5 !important;
    }
    body {
        padding-bottom: 90px !important;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .fixed-logo-badge {
        width: auto;
        height: 55px;
        top: 10px;
        left: 10px;
        padding: 10px 16px !important;
    }
    .fixed-logo-badge img {
        height: 35px;
        width: auto;
    }
    .fixed-logo-text {
        display: none;
    }
    .dock-container {
        bottom: 10px !important;
        padding: 6px 8px !important;
        gap: 3px !important;
    }
    .dock-item {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    .dock-cta {
        min-width: 45px !important;
        height: 38px !important;
        padding: 0 10px !important;
    }
}

/* --- Services Accordion --- */
.service-link-wrapper {
    display: block; text-decoration: none; color: inherit;
}
.service-row {
    border-top: 1px solid rgba(0,0,0,0.08); padding: 50px 30px;
    transition: all 0.5s var(--ease-out-expo); background: transparent; border-radius: 20px;
    margin-bottom: 20px;
}
.service-row:hover {
    background: white; box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-color: transparent; transform: scale(1.02);
}
.service-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
.service-row:hover .service-title { color: var(--brand-green); }

/* --- Modern Testimonials --- */
.testimonial-modern-card {
    background: white; border: 1px solid rgba(0,0,0,0.05);
    padding: 40px; border-radius: 24px; height: 100%;
    transition: all 0.4s var(--ease-out-expo); position: relative;
}
.testimonial-modern-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 143, 69, 0.1);
    border-color: var(--brand-lime);
}
.quote-mark {
    font-size: 4rem; color: var(--brand-lime); opacity: 0.3;
    position: absolute; top: 20px; right: 30px;
}

/* --- Masonry Gallery --- */
.masonry-grid { column-count: 3; column-gap: 24px; }
.masonry-item {
    break-inside: avoid; margin-bottom: 24px; border-radius: 20px; overflow: hidden; position: relative;
}
.masonry-img { width: 100%; display: block; transition: transform 0.6s var(--ease-out-expo); }
.masonry-item:hover .masonry-img { transform: scale(1.1); }
@media(max-width: 991px) { .masonry-grid { column-count: 2; } }
@media(max-width: 768px) { .masonry-grid { column-count: 1; } }

/* --- Directors --- */
.director-card-modern {
    position: relative; 
    border-radius: 30px; 
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    /* Fixed card height to ensure visual consistency (slightly taller to fit portrait photos) */
    height: 560px;
}
.director-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px; color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
    display: flex; flex-direction: column; justify-content: flex-end;
    /* min-height: 200px; */
}
.director-overlay p {
    margin: 0; padding: 0;
}
.director-overlay p:not(.director-bio-text) {
    margin-bottom: 8px;
}
.director-bio-text {
    font-size: 0.95rem; opacity: 0.9; line-height: 1.6; color: #e0e0e0;
    margin-top: 12px;
}
.linkedin-btn {
    width: 50px; height: 50px; background: #0077b5; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: absolute; top: 20px; right: 20px;
    z-index: 10; transition: all 0.3s;
}
.linkedin-btn:hover { transform: scale(1.1); }

/* Ensure director images fill the card and remain consistent */
.director-card-modern img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }

/* Responsive adjustments */
@media (max-width: 991px) {
    /* Tablet: slightly reduced height */
    .director-card-modern { height: 520px; }
    .director-overlay { padding: 32px; }
    .linkedin-btn { width:44px; height:44px; top:16px; right:16px; }
}
@media (max-width: 767px) {
    /* Mobile: allow natural flow but keep image tall for visual balance */
    .director-card-modern { 
        height: 500px;
        margin-bottom: 30px;
    }
    .director-overlay {
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 60%, transparent 100%);
    }
    .director-bio-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    .director-card-modern img { width: 100%; height: 420px; object-fit: cover; }
    .director-overlay { padding: 18px; }
    .linkedin-btn { width:40px; height:40px; top:12px; right:12px; }
}

/* --- BLOG/COLUMN STYLES --- */
.blog-embed-frame {
    width: 100%;
    height: 700px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.subscribe-bar {
    background: var(--brand-black);
    color: white;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.subscribe-bar::before {
    content: '';
    position: absolute; top: 0; right: 0; width: 300px; height: 100%;
    background: linear-gradient(to left, rgba(205, 220, 57, 0.1), transparent);
}

/* --- Certification --- */
.horizontal-scroll-section {
    position: relative;
    height: 300vh;
    background: var(--brand-dark);
    width: 100%;
}
.sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--brand-dark);
}
.horizontal-header {
    padding: 0 5vw 40px 5vw;
    color: white;
    flex-shrink: 0;
}
.cards-track {
    display: flex;
    gap: 40px;
    padding: 0 5vw;
    height: auto;
    align-items: center;
    will-change: transform;
}
.syllabus-card {
    position: relative;
    min-width: 380px; height: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 220, 57, 0.2);
    border-radius: 30px; padding: 40px;
    color: white; 
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
}

.syllabus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,143,69,0.1), rgba(205,220,57,0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

.syllabus-card:hover::before {
    opacity: 1;
}

.syllabus-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(205, 220, 57, 0.4), 0 0 0 1px rgba(205, 220, 57, 0.3);
    border-color: var(--brand-lime);
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile Override for Certification (Vertical) */
.mobile-timeline-section { display: none; background: var(--brand-dark); padding: 60px 20px; }

@media (max-width: 991px) {
    .horizontal-scroll-section { display: none; }
    .mobile-timeline-section { display: block; }
    .syllabus-card { min-width: 100%; height: auto; margin-bottom: 20px; }
}
.step-num {
    position: relative;
    z-index: 2;
    font-size: 5rem; 
    font-family: 'Playfair Display'; 
    font-weight: 900;
    opacity: 0.15;
    line-height: 1; 
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand-lime), var(--brand-green));
    background-clip: text;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.syllabus-card:hover .step-num {
    opacity: 0.25;
    transform: scale(1.1);
}

/* Card Logo Badge Styling */
.card-logo-badge {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 15px 0;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(205, 220, 57, 0.2);
}

.card-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-logo-badge i {
    font-size: 1.5rem;
}

.syllabus-card:hover .card-logo-badge {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(205, 220, 57, 0.3);
    border-color: var(--brand-lime);
}

/* Mobile responsive adjustments for logo badges */
@media (max-width: 991px) {
    .card-logo-badge {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .card-logo-badge i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .card-logo-badge {
        width: 40px;
        height: 40px;
        padding: 6px;
        margin: 8px 0 12px 0;
    }
    
    .card-logo-badge i {
        font-size: 1.1rem;
    }
}

.syllabus-title { 
    position: relative;
    z-index: 2;
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: white; 
    transition: color 0.3s ease;
}

.syllabus-card:hover .syllabus-title {
    color: var(--brand-lime);
}

.syllabus-desc { 
    position: relative;
    z-index: 2;
    font-size: 1.1rem; 
    color: rgba(255, 255, 255, 0.7); 
    transition: color 0.3s ease;
}

.syllabus-card:hover .syllabus-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Why Certify Cards --- */
.why-cert-card {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05); border-radius: 24px; padding: 40px; text-align: center;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.why-cert-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 143, 69, 0.15);
    border-color: var(--brand-green);
}
.why-cert-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(to right, var(--brand-green), var(--brand-lime));
}

/* --- Why Hire --- */
.why-card {
    background: white; border-radius: 24px; padding: 40px;
    transition: all 0.4s var(--ease-out-expo); border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.why-card:hover {
    border-bottom-color: var(--brand-green); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 143, 69, 0.1);
}

/* Pricing Overhaul */
.pricing-modern {
    background: #0f172a; color: white; border-radius: 30px;
    padding: 60px; position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.pricing-bg-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    animation: glowSpin 15s linear infinite; z-index: 1;
}
.text-gold { color: var(--brand-gold) !important; }

/* --- Resume Artistry (Light Theme) --- */
.resume-page-wrap {
    background-color: var(--bg-paper); color: var(--brand-black);
    padding: 100px 0; position: relative;
}
.resume-header { text-align: center; margin-bottom: 80px; }
.resume-title-lg {
    font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5rem);
    color: var(--brand-green); margin-bottom: 20px;
}
.resume-subtitle-lg { font-size: 1.5rem; color: #666; font-weight: 300; letter-spacing: 1px; }
.method-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
    background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .method-grid { grid-template-columns: 1fr; }
    .resume-page-wrap { padding: 60px 0; }
}

.method-cell {
    background: #ffffff; padding: 60px 40px; position: relative; transition: all 0.4s;
}
.method-cell:hover { background: var(--bg-mist); }
.method-num {
    font-family: 'Playfair Display'; font-size: 2rem; color: var(--brand-green);
    margin-bottom: 20px; display: block;
}
.method-head { font-size: 2rem; font-weight: 700; margin-bottom: 15px; color: var(--brand-black); }
.method-body { color: #555; font-size: 1.1rem; }

/* Signature Button (Dark on Light) */
.btn-gold {
    background: var(--brand-black); border: 1px solid var(--brand-black); color: white;
    padding: 15px 40px; letter-spacing: 2px; text-transform: uppercase;
    font-size: 0.9rem; transition: all 0.3s; margin-top: 60px; display: inline-block;
}
.btn-gold:hover { background: transparent; color: var(--brand-black); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Footer Modern */
.footer-modern {
    background: var(--bg-mist); padding: 60px 0 120px;
    border-top: 1px solid rgba(0,0,0,0.05); margin-top: 60px;
}

/* Employer trust avatar */
.trust-avatar {
    width: 80px; height: 80px; object-fit: cover; border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* --- 3.9.3 Our Clients - Infinite Scrolling Section --- */
.clients-section {
    background: var(--bg-paper);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
}

.clients-scroll-wrapper {
    overflow: hidden;
    position: relative;
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.clients-track {
    display: flex; 
    animation: scrollClients 80s linear infinite;
    gap: 40px; 
    padding: 0 20px;
    width: fit-content;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.client-logo {
    min-width: 160px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    text-align: center; cursor: pointer; position: relative;
    background: white;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s var(--ease-out-expo);
}

.client-logo:hover {
    box-shadow: 0 8px 24px rgba(0,143,69,0.08);
    border-color: rgba(0,143,69,0.1);
    transform: translateY(-4px);
}

.client-logo img {
    max-width: 120px; max-height: 60px; width: auto; height: auto;
    object-fit: contain; transition: all 0.3s var(--ease-out-expo);
    filter: grayscale(0%) opacity(0.85);
    mix-blend-mode: multiply;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.client-logo span {
    font-size: 0.95rem; font-weight: 600; color: var(--brand-black);
    letter-spacing: -0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s var(--ease-out-expo);
}

.client-logo:hover span {
    color: var(--brand-green);
}

@media (max-width: 768px) {
    .client-logo { min-width: 140px; padding: 16px; }
    .client-logo img { max-width: 100px; max-height: 50px; }
    .client-logo span { font-size: 0.85rem; }
    .clients-track { gap: 20px; padding: 0 15px; }
    .clients-section { padding: 60px 0; }
}

/* ======================================= */
/* AI COACHING SERVICE PAGE 2025 STYLES   */
/* ======================================= */

/* Service Hero Section */
.service-hero-2025 {
    position: relative;
    background: linear-gradient(135deg, rgba(0,143,69,0.03) 0%, rgba(205,220,57,0.05) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-green), transparent);
    top: -100px;
    left: -150px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--brand-lime), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.hero-highlight-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(205,220,57,0.1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.highlight-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--brand-black);
}

.highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Program Cards 2025 */
.program-card-2025 {
    position: relative;
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(205,220,57,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,143,69,0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.program-card-2025:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,143,69,0.15);
    border-color: rgba(0,143,69,0.3);
}

.program-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0,143,69,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.program-card-2025:hover .program-glow {
    opacity: 1;
}

.program-card-2025 .card-left {
    flex-shrink: 0;
    z-index: 1;
}

.card-number-2025 {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-green), #00b85c);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,143,69,0.25);
    transition: all 0.3s ease;
}

.program-card-2025:hover .card-number-2025 {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 36px rgba(0,143,69,0.35);
}

.program-card-2025 .card-right {
    flex: 1;
    z-index: 1;
}

.program-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,143,69,0.1), rgba(205,220,57,0.1));
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--brand-green);
    transition: all 0.3s ease;
}

.program-card-2025:hover .program-icon-badge {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--brand-green), #00b85c);
    color: white;
}

.program-title-2025 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 12px;
}

.meta-2025 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0,143,69,0.08);
    border: 1px solid rgba(0,143,69,0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-tag i {
    color: var(--brand-green);
    font-size: 0.9rem;
}

.program-card-2025:hover .meta-tag {
    background: rgba(0,143,69,0.12);
    border-color: rgba(0,143,69,0.25);
}

.section-head-2025 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-black);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.section-head-2025 i {
    color: var(--brand-green);
    font-size: 1rem;
}

.program-list-2025 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list-2025 li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.program-list-2025 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-lime));
    border-radius: 3px;
    opacity: 0.8;
}

.program-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card-2025:hover .program-accent {
    transform: scaleX(1);
}

/* LinkedIn Recommendation Cards */
.linkedin-recommendation-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(0,143,69,0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,143,69,0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.linkedin-recommendation-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    /* background: linear-gradient(180deg, var(--brand-green), var(--brand-lime)); */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.linkedin-recommendation-card:hover::before {
    transform: scaleY(1);
}

.linkedin-recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,143,69,0.12);
    border-color: rgba(0,143,69,0.2);
}

.linkedin-profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,143,69,0.2);
    transition: all 0.3s ease;
}

.linkedin-recommendation-card:hover .linkedin-profile-pic {
    border-color: var(--brand-green);
    transform: scale(1.05);
}

.linkedin-rec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0,119,181,0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #0077b5;
    font-weight: 600;
    transition: all 0.3s ease;
}

.linkedin-recommendation-card:hover .linkedin-rec-badge {
    background: rgba(0,119,181,0.15);
    box-shadow: 0 4px 12px rgba(0,119,181,0.2);
}

.linkedin-job-title {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.linkedin-recommendation-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

/* Industry Badges */
.industry-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(0,143,69,0.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,143,69,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.industry-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-green), #00b85c);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.industry-badge:hover::before {
    opacity: 1;
}

.industry-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,143,69,0.15);
    border-color: transparent;
}

.industry-badge i {
    font-size: 2.5rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-badge:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: white !important;
}

.industry-badge p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-black);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-badge:hover p {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-hero-2025 {
        padding: 80px 0 60px;
    }

    .hero-highlight-card {
        padding: 30px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .program-card-2025 {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .program-title-2025 {
        font-size: 1.5rem;
    }

    .meta-2025 {
        gap: 8px;
    }

    .meta-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .hero-glow-1, .hero-glow-2 {
        width: 300px;
        height: 300px;
    }

    .highlight-icon {
        font-size: 2.5rem;
    }

    .highlight-item h5 {
        font-size: 1rem;
    }

    .card-number-2025 {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .program-icon-badge {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .program-title-2025 {
        font-size: 1.3rem;
    }

    .section-head-2025 {
        font-size: 1rem;
    }

    .program-list-2025 li {
        font-size: 0.9rem;
    }

    .linkedin-profile-pic {
        width: 56px;
        height: 56px;
    }

    .industry-badge i {
        font-size: 2rem;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


