/* =============================================== */
/* GLOBAL IMPORTS & RESET */
/* =============================================== */
@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Serif+Pro:wght@300;400;600;700&display=swap');
 
:root {
    /* Global Colors */
    --primary: #006d77;
    --primary-dark: #00555e;
    --primary-light: rgba(0, 109, 119, 0.1);
    --secondary: #fabe2c;
    --text-main: #333333;
    --text-muted: #94A3B8;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-lighter: rgba(255, 255, 255, 0.5);
    --bg-light: #f8fafc;
    --bg-dark: #000000;
    --card-bg-dark: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.4);
}
body.modal-open {
    cursor: auto !important;
}
body.modal-open .custom-cursor {
    display: none !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
}


/* Custom cursor reset */
html,
body,
a,
button,
input,
select,
textarea,
.btn,
[role="button"] {
    cursor: none !important;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
}
.bodyinght {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: white !important;
    color: var(--text-main);
    line-height: 1.5;
}

/* Font Assignments */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
textarea,
.btn,
.section-title,
.section-subtitle,
.video-hero-title,
.video-hero-subtitle {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Hover/Touch Reset */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* =============================================== */
/* GLOBAL ANIMATIONS */
/* =============================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes ceoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary);
    }
}

/* Animation Utility Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    opacity: 0;
    transition: opacity 0.8s ease;
}

[data-animate="fade-in"].animate {
    opacity: 1;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* =============================================== */
/* GLOBAL COMPONENTS */
/* =============================================== */

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 109, 119, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, width, height, border-color;
    box-shadow: 0 0 10px rgba(0, 109, 119, 0.1);
}

.cursor.active {
    transform: scale(1.5);
    background-color: var(--secondary);
    mix-blend-mode: normal;
}

.cursor-follower.active {
    border-color: var(--secondary);
    background-color: rgba(250, 190, 44, 0.05);
}

     /* Loading Screen */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s, visibility 0.8s;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 3px solid var(--primary-light);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

/* =============================================== */
/* OPTIMIZED FOR 32" LED TV - 1366x768 RESOLUTION */
/* =============================================== */

/* Base CSS - TV Friendly */
.float-img {
    position: absolute;
    width: 1200px; /* TV ke liye optimized size */
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.25));
    z-index: 2;
}

/* IMAGE POSITIONS - TV Viewing Distance Optimized */
.img-2 {
    top: -180px;
    left: -180px;
}

.img-1 {
    bottom: -120px;
    right: -220px;
}

/* Center Content - TV Text Readability */
.center-content {
    text-align: center;
    max-width: 700px; /* TV ke liye thora bada */
    z-index: 10;
    position: relative;
    transform: translateY(-15px);
    padding: 40px 45px;

    
    
    
    
}

.floating-showcase,
.floating-showcase * {
    font-family: "Avenir", sans-serif;
}

/* SECTION - TV Optimized */
.floating-showcase {
    background: #ffffff;
    padding: 180px 0; /* TV viewing ke liye perfect */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAP - Fixed for 1366px width */
.floating-wrap {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

/* CENTER CONTENT - TV Font Sizes */
.center-content h2 {
    font-size: 42px; /* TV distance ke liye perfect */
    line-height: 1.2;
    font-weight: 600;
    color: #006D77;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.center-content p {
    font-size: 18px; /* TV reading ke liye comfortable */
    line-height: 1.7;
    color: #5F7D82;
    margin-bottom: 35px;
    font-weight: 400;
}

/* BUTTON - TV Friendly */
.cta-btn2 {
    display: inline-block;
    padding: 16px 40px;
    background: #006D77;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 15px 35px rgba(0, 109, 119, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px; /* TV remote navigation ke liye */
}

.cta-btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 109, 119, 0.4);
    background: #00555e;
    border-color: rgba(255, 255, 255, 0.2);
}

/* =============================================== */
/* SPECIFIC FOR 1366x768 RESOLUTION */
/* =============================================== */

/* Exact match for 1366x768 */
@media (width: 1366px) and (height: 768px) {
    .floating-showcase {
        padding: 120px 0;
    }
    
    .floating-wrap {
        max-width: 1000px;
        min-height: 500px;
    }
    
    .float-img {
        width: 1000px;
    }
    
    .img-2 {
        top: -120px;
        left: -120px;
    }
    
    .img-1 {
        bottom: -100px;
        right: -180px;
        width: 1100px;
    }
    
    .center-content {
        max-width: 650px;
        padding: 35px 40px;
        transform: translateY(-10px);
    }
    
    .center-content h2 {
        font-size: 38px;
    }
    
    .center-content p {
        font-size: 17px;
    }
}

/* Range for 32" TV typical resolutions */
@media (min-width: 1280px) and (max-width: 1366px) {
    .floating-showcase {
        padding: 160px 0;
    }
    
    .floating-wrap {
        max-width: 1150px;
        min-height: 580px;
    }
    
    .float-img {
                width: 1018px;
    }
    
    .img-2 {
               top: -196px;
        left: -140px;
    }
    
    .img-1 {
                bottom: -139px;
        right: -163px;
        width: 1130px;
    }
    
    .center-content {
        max-width: 633px;
        padding: 17px 73px;
    }
    }
    
    .center-content h2 {
        font-size: 40px;
    }


/* =============================================== */
/* RESPONSIVE FOR OTHER DEVICES */
/* =============================================== */

/* For larger monitors (Above 1366px) */
@media (min-width: 1367px) {
    .floating-showcase {
        padding: 200px 0;
    }
    
    .floating-wrap {
        max-width: 1300px;
        min-height: 650px;
    }
    
    .float-img {
        width: 1300px;
    }
    
    .img-2 {
        top: -200px;
        left: -200px;
    }
    
    .img-1 {
        bottom: -140px;
        right: -250px;
        width: 1300px;
    }
    
    .center-content {
        max-width: 720px;
        padding: 45px 50px;
        transform: translateY(-20px);
    }
    
    .center-content h2 {
        font-size: 46px;
    }
    
    .center-content p {
        font-size: 19px;
    }
    
    .cta-btn {
        padding: 18px 45px;
        font-size: 18px;
    }
}

/* For tablets and smaller screens */
@media (max-width: 1279px) and (min-width: 1024px) {
    .floating-showcase {
        padding: 120px 0;
    }
    
    .floating-wrap {
        max-width: 1000px;
        min-height: 500px;
    }
    
    .float-img {
        width: 1000px;
    }
    
    .img-2 {
        top: -120px;
        left: -120px;
    }
    
    .img-1 {
        bottom: -80px;
        right: -150px;
        width: 1000px;
    }
    
    .center-content {
        max-width: 600px;
        padding: 32px 35px;
        transform: translateY(-5px);
    }
    
    .center-content h2 {
        font-size: 34px;
    }
    
    .center-content p {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 14px 36px;
    }
}

/* Your existing 900px breakpoint - TV Optimized */
@media (max-width: 900px) {
    .floating-showcase {
        padding: 100px 20px;
    }
    
    .floating-wrap {
        max-width: 800px;
        min-height: 450px;
    }
    
    .float-img {
        width: 600px;
    }
    
    .img-2 {
        top: -80px;
        left: -80px;
    }
    
    .img-1 {
        display: block;
        bottom: -60px;
        right: -90px;
        width: 600px;
    }
    
    .center-content {
        max-width: 500px;
        padding: 30px 32px;
        transform: none;
        
    }
    
    .center-content h2 {
        font-size: 30px;
    }
    
    .center-content p {
        font-size: 15px;
    }
    
    .cta-btn {
        padding: 13px 34px;
        font-size: 16px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .floating-showcase {
        padding: 80px 15px;
        min-height: auto;
    }
    
    .floating-wrap {
        min-height: 400px;
    }
    
    .float-img {
        width: 300px;
    }
    
    .img-2 {
        top: -40px;
        left: -30px;
    }
    
    .img-1 {
        display: none;
    }
    
    .center-content {
        max-width: 90%;
        padding: 25px 28px;
        transform: none;
        
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .center-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .center-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}

/* TV Remote Navigation Support */
@media (pointer: coarse) and (min-width: 1024px) {
    .cta-btn {
        min-height: 50px;
        min-width: 200px;
        padding: 15px 40px;
    }
    
    .center-content h2 {
        font-size: 44px; /* TV distance ke liye aur bada */
    }
    
    .center-content p {
        font-size: 20px; /* Better readability from distance */
    }
}

/* High Contrast Mode for TV */
@media (prefers-contrast: high) {
    .center-content {
        
        border: 2px solid #006D77;
    }
    
    .center-content h2 {
        color: #00474e;
    }
    
    .center-content p {
        color: #333333;
    }
    
    .cta-btn {
        background: #00474e;
        border: 2px solid #006D77;
    }
}
         .section-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
 .section-title3 {
            font-size: 3.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-top: 20px;
        }

        .section-subtitle3 {
            font-size: 1.75rem;
            font-weight: 400;
            color: #64748b;
            line-height: 1.6;
        }

        /* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    height: auto;
    margin-left: 25px !important;
    margin-right: 25px !important;
}

/* Slider Track for Animation */
.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
    padding: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Card Design - Soft Neumorphism */
.slider-card {
    flex: 0 0 calc(25% - 22.5px); /* 4 cards visible */
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #006D77;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 109, 119, 0.205),
        0 5px 15px rgba(0, 0, 0, 0.192),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Icon Styling */
.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff,#008891, #ffffff);
    padding: 10px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
    padding-top: 10px;
}

.card-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    flex-grow: 1;
}

/* Card Features List */
.card-features {
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.card-features ul {
    list-style: none;
    padding-left: 0;
}

.card-features li {
    color: #5d7a7c;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.4;
}

.card-features li i {
    color: #006D77;
    margin-right: 8px;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Accent Line */
.accent-line {
    height: 3px;
    width: 60px;
    background-color: #006D77;
    border-radius: 2px;
    margin-top: 28px;
    opacity: 0.7;
    transition: width 0.3s ease;
}

.slider-card:hover .accent-line {
    width: 80px;
    opacity: 1;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.slider-container:hover .slider-nav {
    opacity: 1;
}

.slider-nav:hover {
    background: #006D77;
    box-shadow: 0 10px 25px rgba(0, 109, 119, 0.2);
}

.slider-nav:hover i {
    color: white;
}

.slider-nav i {
    font-size: 1.4rem;
    color: #006D77;
    transition: color 0.3s ease;
}

.slider-nav.prev {
    left: -16px;
}

.slider-nav.next {
    right: -28px;
}

/* Pause on Hover Animation */
.slider-track.paused {
    animation-play-state: paused;
}

/* Autoplay Indicator */
.autoplay-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    margin: 0 4px;
    transition: background-color 0.3s ease;
}

.indicator-dot.active {
    background-color: #006D77;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-card {
        flex: 0 0 calc(33.333% - 20px); /* 3 cards visible */
    }
}

@media (max-width: 992px) {
    .slider-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards visible */
    }
}

@media (max-width: 768px) {
    .slider-card {
        flex: 0 0 calc(100% - 0px); /* 1 card visible */
        min-height: 280px;
        padding: 28px 24px;
    }
    
    .slider-nav {
        width: 48px;
        height: 48px;
    }
    
    .slider-nav.prev {
        left: -12px;
    }
    
    .slider-nav.next {
        right: -20px;
    }
}

/* Base Container Styles */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #004952;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #5d7a7c;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Body Styles */

        
        /* =============================================== */
        /* LIGHT THEME COLORS */
        /* =============================================== */
        :root {
            --primary: #006d77;
            --primary-dark: #00555e;
            --primary-light: rgba(0, 109, 119, 0.08);
            --accent: #0097a7;
            --text: #1a1a1a;
            --text-light: #666666;
            --text-lighter: #888888;
            --bg: #ffffff;
            --card-bg: #ffffff;
            --card-border: #e0e0e0;
            --border: #e5e5e5;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.08);
            --light-bg: #f8fafc;
            --section-bg: #f9fafb;
        }

        /* =============================================== */
        /* ENHANCED TYPOGRAPHY SYSTEM WITH AVENIR */
        /* =============================================== */
        * {
            cursor: none !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Apply Avenir Font Systematically */
        body, 
        h1, h2, h3, h4, h5, h6,
        p, span, a, li, button, input, textarea,
        .nav-links li a,
        .btn,
        .section-title,
        .section-subtitle,
        .video-hero-title,
        .video-hero-subtitle,
        .blog-slider-title,
        .blog-slider-subtitle,
        .result-title,
        .result-description,
        .feature-title,
        .feature-description,
        .pricing-title,
        .pricing-price,
        .blog-slide-title,
        .blog-slide-excerpt,
        .adv-card h3,
        .adv-card p,
        .footer-title,
        .footer-links a,
        .footer-description,
        .time-display,
        .marquee-label,
        .blog-slide-category,
        .pricing-badge,
        .blog-read-badge {
            font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
        }

        /* Typography Hierarchy with Avenir */
        .video-hero-title {
            font-weight: 800 !important;
            line-height: 1.05;
            letter-spacing: -0.02em;
            font-size: clamp(52px, 5vw, 84px);
            color: #ffffff;
        }
        .laptop-hero-title {
            font-weight: 800 !important;
            line-height: 1.05;
            letter-spacing: -0.02em;
            font-size: clamp(52px, 5vw, 84px);
            color: #00555e;
        }

         .blog-slider-title {
            font-weight: 700 !important;
            line-height: 1.1;
            letter-spacing: -0.01em;
            font-size: clamp(40px, 4vw, 52px);
            color: var(--text);
        }

          .pricing-title, .blog-slide-title, .adv-card h3 {
            font-weight: 600 !important;
            line-height: 1.2;
            letter-spacing: 0;
            font-size: clamp(20px, 2.5vw, 24px);
            color: #666666;

        }
        .feature-title{
            padding-top: 20px;
            line-height: 20px;
            font-size: 18px !important;
            font-weight: 600 !important;
        }
        .blog-slide-read-more{
            text-decoration: none;
            color: #006D77;
            text-align: center;
        }
        .video-hero-subtitle {
            font-weight: 350 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #ffffff;
            font-size: clamp(18px, 2vw, 22px);
            padding-top: 20px;
        }

         .section-subtitle, .blog-slider-subtitle {
            font-weight: 350 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #ffffff;
            font-size: clamp(18px, 2vw, 22px);
        }

        .section-subtitleinght{
            font-weight: 350 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #666666;
            font-size: clamp(18px, 2vw, 22px);
        }

        p, .result-description, .feature-description, .adv-card p, .blog-slide-excerpt, .footer-description {
            font-weight: 400 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: var(--text-light);
            font-size: clamp(15px, 1.8vw, 17px);

        }

        .nav-links li a,  .login-btn {
            font-weight: 500 !important;
            letter-spacing: 0.02em;
        }

        .marquee-label, .blog-slide-category, .pricing-badge, .blog-read-badge {
            font-weight: 600 !important;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: white;
        }

        .footer-links a, .time-display, .dropdown-content a {
            font-weight: 400 !important;
        }

        /* Fine-tune specific elements */
        .video-hero-subtitle {
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .blog-slide-excerpt {
            margin-bottom: 20px;
        }

        .result-description, .feature-description {
            font-size: 16px;
        }

        .adv-card p {
            font-size: 15px;
            line-height: 1.6;
        }

        
        /* =============================================== */
        /* NAVBAR - FROM INDEX.HTML WITH SCROLL EFFECT AND COLOR CHANGE */
        /* =============================================== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
           
            z-index: 1000;
            box-shadow: none;
            border-bottom: 1px solid transparent;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(-20px);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            background-color: white;
            color: white;
        }

       

        

        @keyframes slideDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
            height: 80px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
.navbar.scrolled {
    padding: 0;
    background: linear-gradient(
        90deg,
        #702e86cc 0%,
        #355ca4ce 50%,
        #2086c5c7 100%
    ) !important;
    backdrop-filter: blur(100px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
        /* Logo transition on scroll */
        .logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .logo img {
            height: 55px !important ;
            width:auto !important ;
            filter: brightness(0) invert(1); /* Makes logo white */
        }

        /* Navigation links color transition */
        .nav-links li a {
            color: #333;
            transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .nav-links li a {
            color: #ffffff !important;
        }

        .navbar.scrolled .nav-links li a:hover {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        /* Dropdown styles for scrolled state */
        .navbar.scrolled .dropdown-content {
            background: rgba(0, 109, 119, 0.651) ;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .navbar.scrolled .dropdown-content a {
            color: #333;
        }
                @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .logo img {
            height: 40px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 32px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            opacity: 0;
            transform: translateY(-10px);
        }
        .nav-links li a.active {
            color: var(--primary);
        }

        .nav-links li:nth-child(1) { animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards; }
        .nav-links li:nth-child(2) { animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards; }
        .nav-links li:nth-child(3) { animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards; }
        .nav-links li:nth-child(4) { animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards; }

        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 180px;
            box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
            z-index: 1001;
            border-radius: 8px;
            top: 100%;
            left: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0,0,0,0.08);
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 20px;
            display: block;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
            font-size: 14px;
            transition: all 0.2s;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(0, 109, 119, 0.08);
            color: var(--primary) !important;
            padding-left: 24px;
        }

        .arrow {
            border: solid #333;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            margin-left: 5px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .down { 
            transform: rotate(45deg); 
        }

        .dropdown:hover .arrow { 
            transform: rotate(225deg); 
            border-color: var(--primary); 
        }

        .nav-actions {
            opacity: 0;
            transform: translateX(20px);
            animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .login-btn {
            background-color: var(--primary);
            color: #fff;
            padding: 10px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-block;
        }

        .login-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 109, 119, 0.2);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            z-index: 1001;
            opacity: 0;
            transform: translateX(20px);
            animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
        }

        .nav-spacer {
            height: 80px;
            width: 100%;
            display: block;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-block;
            background-color: #006d77;
            color: white;
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            border: #00555e 1px solid;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-align: center;
        }
        .btn1 {
            display: inline-block;
            background-color: #006d7762;
            color: white;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            border: 1px solid var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-align: center;
        }

        .btn:hover {
            background-color:#ffffff ;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
            color: #006D77;
            border: 1px solid #006D77;
        }
        .btn1:hover {
            background-color:#006d7762 ;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
            color: #006D77;
            border: 1px solid #006D77;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary-light);
        }

        

        .navbar.scrolled .dropdown-content a:hover {
            color: var(--primary) !important;
            background-color: rgba(0, 109, 119, 0.08);
        }

        /* Arrow color transition */
        .arrow {
            border-color: #333;
            transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .arrow {
            border-color: #ffffff;
        }

        .navbar.scrolled .dropdown:hover .arrow {
            border-color: #ffffff;
            transform: rotate(225deg);
        }

        /* Login button transition */
        .login-btn {
            background-color: #006d77;
            color: #ffffff;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .login-btn {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .navbar.scrolled .login-btn:hover {
            background-color: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Mobile toggle color transition */
        .mobile-toggle {
            color: #333;
            transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled .mobile-toggle {
            color: #ffffff;
        }
        

        /* =============================================== */
        /* BODY STYLES - LIGHT THEME */
        /* =============================================== */
        body {
            min-height: 100vh;
            overflow-x: hidden;
            background-color: var(--bg);
            color: var(--text);
        }

        /* Hide cursor on touch devices */
        @media (hover: none) and (pointer: coarse) {
            * {
                cursor: auto !important;
            }
            
            .cursor,
            .cursor-follower {
                display: none !important;
            }
        }

        .cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 8px;
            height: 8px;
            background-color: #006D77;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
        }

        .cursor-follower {
            position: fixed;
            top: 0;
            left: 0;
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(0, 109, 119, 0.4);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, width, height, border-color;
            box-shadow: 0 0 10px rgba(0, 109, 119, 0.1);
        }

        /* Hover states for magnetic elements */
        .cursor-hover {
            transform: scale(1.8);
            background-color: #006D77;
            mix-blend-mode: normal;
        }

        .cursor-follower-hover {
            width: 60px;
            height: 60px;
            border-color: rgba(0, 109, 119, 0.6);
            background-color: rgba(0, 109, 119, 0.08);
            box-shadow: 0 0 20px rgba(0, 109, 119, 0.15);
            backdrop-filter: blur(2px);
        }

        /* Magnetic elements styling */
        .magnetic-element {
            position: relative;
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html, body {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            position: relative;
        }

        /* SMOOTH SCROLL SETUP */
        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        /* LOADING ANIMATION */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease-out, visibility 0.8s;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(0, 109, 119, 0.1);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes slideDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section {
            padding: 100px;
            position: relative;
            background-color: white;
        }

        .section-title {
            font-size: 50px !important;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            padding-left: 413px;
        }

        .section-titleinsiht {
            font-size: 60px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            
        }

        .section-title2 {
            font-size: 50px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            
        }

        

        .section-subtitle {
            font-size: 1.2rem;
            color: #666666;
            max-width: 700px;
            margin-bottom: 3rem;
        }

        /* =============================================== */
        /* 3D VIDEO PLAYER SECTION - LIGHT THEME */
        /* =============================================== */
        .video-hero-section {
            padding:  100px;
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .video-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            background-image: url(assets/imgs/bg.jpg);
            background-repeat: no-repeat;
            background-position: top;
            background-size: contain;
            background-color: black !important;
        }
        .laptop-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            background-color: white;
            
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .video-hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .video-hero-title .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
        }
        /* Additional controls styles */
.replay-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.replay-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.skip-controls {
    display: flex;
    gap: 8px;
}

.skip-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.skip-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Video controls layout update */
.video-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Mobile responsive controls */
@media (max-width: 768px) {
    .video-controls {
        gap: 10px;
        padding: 12px 16px;
    }
    
    .skip-controls {
        order: 5;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .volume-control {
        order: 4;
    }
    
    .video-progress {
        order: 3;
        width: 100%;
        margin: 10px 0;
    }
    
    .time-display {
        order: 2;
        min-width: 80px;
    }
}

        /* 3D Video Container */
        .video-3d-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1200px;
            padding: 100px;
            padding-left: 30px;
            padding-right: 30px;
        }

        .video-3d-wrapper {
            position: relative;
            width: 100%;
            transform-style: preserve-3d;
            transform-origin: center center;
            will-change: transform;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Video Player */
        .video-player {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.03),
                0 40px 80px rgba(0, 0, 0, 0.08),
                inset 0 0 80px rgba(0, 109, 119, 0.05);
            transform-style: preserve-3d;
        }

        .video-element {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            transition: all 0.3s;
        }
        .laptop-element {
            width: 100%;
            height: 600px;
           padding-right: 50px;
            display: block;
            transition: all 0.3s;
        }

        /* Video Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .video-player:hover .video-overlay {
            opacity: 1;
        }

        /* Video Controls */
        .video-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
            max-width: 600px;
            background: rgba(255, 255, 255, 0.9);
            padding: 16px 24px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .play-pause-btn {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .play-pause-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        .video-progress {
            flex: 1;
            height: 4px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .progress-bar {
            position: absolute;
            height: 100%;
            background: #006D77 !important;
            border-radius: 20px;
            
            width: 0%;
            transition: width 0.1s;
        }

        .time-display {
            color: var(--text-light);
            font-size: 14px;
            min-width: 100px;
            text-align: center;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .volume-icon {
            color: var(--text-light);
            font-size: 18px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .volume-level {
            position: absolute;
            height: 100%;
            background: var(--primary);
            border-radius: 2px;
            width: 100%;
        }

        /* Video Selection */
        .video-selection {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .video-thumbnail {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s;
            opacity: 0.7;
        }

        .video-thumbnail:hover {
            opacity: 1;
            transform: translateY(-4px);
        }

        .video-thumbnail.active {
            border-color: var(--primary);
            opacity: 1;
            box-shadow: 0 8px 24px rgba(0, 109, 119, 0.15);
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: background 0.3s;
        }

        .video-thumbnail:hover .video-thumbnail-overlay {
            background: rgba(0, 109, 119, 0.7);
        }

        /* 3D Glow Effect */
        .video-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(0, 109, 119, 0.1) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        /* Masking fade effect */
        .mask-fade {
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }
/* =============================================== */
        /* MARQUEE SECTION - LIGHT THEME */
        /* =============================================== */
        .marquee-section {
            padding: 40px 0;
            background: #000000;
            /* border-top: 1px solid var(--border); */
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .marquee-label {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 30px;
            color: white;
        }

        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marqueeScroll 40s linear infinite;
            will-change: transform;
        }

        .marquee-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin: 0 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .marquee-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.1);
            border-color: var(--primary-light);
        }

        .marquee-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(0%) !important;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .marquee-item:hover .marquee-logo {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        /* =============================================== */
        /* COMPENSATION SECTION - FIXED (ORIGINAL STYLE) */
        /* =============================================== */
        .compensation-section {
            padding: 90px 8%;
            background: var(--light-bg);
            color: var(--text);
            text-align: center;
        }

        /* Title */
        .comp-title {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .comp-title span {
            color: var(--primary);
        }

        /* Flex Grid */
        .comp-cards {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Single Card */
        .comp-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            width: 320px;
            padding: 26px 22px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .comp-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at top left,
                rgba(0, 109, 119, 0.08),
                transparent 60%
            );
            opacity: 0;
            transition: 0.4s;
        }

        .comp-card:hover::before {
            opacity: 1;
        }

        .comp-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

       
       

        /* Card Titles */
        .comp-card h3 {
            font-size: 20px;
            color: #006D77;
            margin-bottom: 8px;
        }

        /* Text */
        .comp-card p {
            font-size: 14px !important;
            color: #666666 !important;
            line-height: 1.6;
        }

        /* =============================================== */
        /* ADVANTAGES SECTION - FIXED (ORIGINAL STYLE) */
        /* =============================================== */
        .advantages-section {
            padding: 80px;
            background: var(--section-bg);
            color: var(--text);
        }

        .section-title {
            text-align: center;
            font-size: 44px;
            margin-bottom: 70px;
            padding-bottom: 30px;
        }


        .section-titleabout {
            text-align: center;
            font-size: 44px;
            
            padding-bottom: 30px;
            color: black !important;
        }
       

        .section-title span {
            color: var(--primary);
            padding-bottom: 30px;
            
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .adv-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 18px;
            padding: 34px 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .adv-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at top left,
                rgba(0, 109, 119, 0.08),
                transparent 60%
            );
            opacity: 0;
            transition: 0.4s;
        }

        .adv-card:hover::before {
            opacity: 1;
        }

        .adv-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .adv-icon {
            font-size: 30px;
            display: inline-block;
            margin-bottom: 18px;
        }

        .advantages-wrapper {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .advantages-row {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .advantages-row.center {
            justify-content: center;
        }

        .adv-card {
            width: 320px;
        }

        .adv-card h3 {
            color: black !important;
        }
        .adv-card p {
            color: #666666 !important;
        }
        

        

        /* =============================================== */
        /* SECTION COMMON STYLES - LIGHT THEME */
        /* =============================================== */
        .section-header {
            text-align: center;
            max-width: 800px;
            
        }

      

        .section-subtitle {
            opacity: 0;
            transform: translateY(20px);
        }
        .section-subtitle2 {
            opacity: 0;
            transform: translateY(20px);
            text-align: center;
        }

        /* RESULTS SECTION - LIGHT THEME */
        .results-section {
            background: var(--section-bg);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1061px;
            margin: 0 auto;
        }

        .result-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 22px 26px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .result-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .result-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .result-number {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1;
        }

        .result-title {
            margin-bottom: 12px;
        }

        /* FEATURES SECTION - LIGHT THEME */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 40px 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .feature-icon {
            width: 300px;
            height: 150px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-card:hover .feature-icon {
            
            color: white;
              transform: scale(1.05) translateY(-16px);
    box-shadow: 0 25px 60px rgba(0, 109, 119, 0.25);
    border: solid 1px #00555e;
        }

        /* PRICING SECTION - LIGHT THEME */
        .pricing-section {
            background: var(--section-bg);
        }

        .pricing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 64px;
            color: var(--text-light);
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.1);
            transition: .4s;
            border-radius: 32px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: var(--primary);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(28px);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 48px 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            background: white;
            transform: translateY(-20px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .pricing-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .pricing-badge {
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 0.05em;
            display: inline-block;
            margin-bottom: 20px;
        }

        .pricing-title {
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 32px;
            line-height: 1;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .pricing-features li {
            padding: 12px 0;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--primary);
            font-size: 14px;
        }

        

/* =============================================== */
/* PAGE SPECIFIC OVERRIDES (NAVBAR & LOADING) */
/* =============================================== */

/* -- Light Themes (Home, About, Consulting, Insights) -- */
.page-home .navbar.scrolled,
.page-about .navbar.scrolled,
.page-consulting .navbar.scrolled,
.page-insights .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* -- Dark Themes / Survey Themes (Teal/Glass) -- */
.page-survey .navbar.scrolled,
.page-ceo-survey .navbar.scrolled,
.page-engagement-survey .navbar.scrolled,
.page-feedback-survey .navbar.scrolled,
.page-customer-survey .navbar.scrolled,
.page-diversity-survey .navbar.scrolled,
.page-wellbeing-survey .navbar.scrolled,
.page-spot-survey .navbar.scrolled {
    background: rgba(0, 109, 119, 0.65) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.page-survey .navbar.scrolled .nav-links li a,
.page-ceo-survey .navbar.scrolled .nav-links li a,
.page-engagement-survey .navbar.scrolled .nav-links li a,
.page-feedback-survey .navbar.scrolled .nav-links li a,
.page-customer-survey .navbar.scrolled .nav-links li a,
.page-diversity-survey .navbar.scrolled .nav-links li a,
.page-wellbeing-survey .navbar.scrolled .nav-links li a,
.page-spot-survey .navbar.scrolled .nav-links li a {
    color: #ffffff !important;
}

.page-survey .navbar.scrolled .logo img,
.page-ceo-survey .navbar.scrolled .logo img,
.page-engagement-survey .navbar.scrolled .logo img,
.page-feedback-survey .navbar.scrolled .logo img,
.page-customer-survey .navbar.scrolled .logo img,
.page-diversity-survey .navbar.scrolled .logo img,
.page-wellbeing-survey .navbar.scrolled .logo img,
.page-spot-survey .navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
}

/* Rewards Specific (Teal Glass with unique opacity) */
.page-rewards .navbar.scrolled {
    background: rgba(0, 109, 119, 0.65) !important;
    backdrop-filter: blur(15px);
}

/* =============================================== */
/* PAGE SPECIFIC CONTENT STYLES */
/* =============================================== */

/* --- HOME PAGE (.page-home) --- */
.page-home .center-content {
    text-align: center;
    max-width: 640px;
    z-index: 5;
    position: relative;
    transform: translateY(-20px);
    color: #00555e;
}

.page-home .float-img {
    position: absolute;
    width: 1500px;
    filter: drop-shadow(0 50px 90px rgba(0, 0, 0, 0.22));
}

.page-home .img-2 {
    top: -275px;
    left: -275px;
}

.page-home .img-1 {
    bottom: -162px;
    right: -289px;
}

.page-home .floating-showcase {
    background: #ffffff;
    padding: 250px;
    padding-bottom: -150px;
    position: relative;
    overflow: hidden;
}

/* --- ABOUT PAGE (.page-about) --- */
.page-about .story-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.page-about .story-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 20px;
}

.page-about .story-highlight {
    color: var(--primary);
    font-weight: 700;
}

.page-about .marquee-section {
    background: #000;
    color: #fff;
    padding: 40px 0;
    overflow: hidden;
}

/* --- INSIGHTS PAGE (.page-insights) --- */
.page-insights  {
    padding: 120px 40px 80px;
    position: relative;
    background: black;
    background-image: url(../assets/imgs/bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-insights .section-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    /* Original logic might differ, assuming override */
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.page-insights .insight-card {
    background: var(--card-bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow);
    height: 500px;
    display: flex;
    flex-direction: column;
}

/* --- CONSULTING PAGE (.page-consulting) --- */
.page-consulting .consulting-page {
    padding: 120px 40px 80px;
    background: black url(../assets/imgs/bg.jpg) top no-repeat;
    background-size: cover;
}

.page-consulting .capability-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
}

/* --- SURVEY PAGES COMMON (.page-survey-base) --- */
.survey-section-base {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.survey-headline-base {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CEO Survey (.page-ceo-survey) */
.page-ceo-survey .ceo-survey-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-ceo-survey .ceo-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-ceo-survey .ceo-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

/* Engagement Survey (.page-engagement-survey) */
.page-engagement-survey .engagement-hero-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-engagement-survey .engagement-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feedback Survey (.page-feedback-survey) */
.page-feedback-survey .feedback-survey-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-feedback-survey .feedback-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Customer Survey (.page-customer-survey) */
.page-customer-survey .customer-survey-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-customer-survey .customer-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Diversity Survey (.page-diversity-survey) */
.page-diversity-survey .diversity-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-diversity-survey .diversity-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Wellbeing Survey (.page-wellbeing-survey) */
.page-wellbeing-survey .wellbeing-survey-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-wellbeing-survey .wellbeing-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Spot Survey (.page-spot-survey) */
.page-spot-survey .spot-survey-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-spot-survey .spot-headline {
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-spot-survey .spot-metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

/* Rewards Page (.page-rewards) */
.page-rewards body {
    background-color: #ffffff;
}

.page-rewards body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

.page-rewards .rewards-hero-section {
    padding: 140px 40px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent url(../assets/imgs/bg.jpg) bottom no-repeat;
    background-size: contain;
}

.page-rewards .rewards-headline {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-rewards .navbar {
    background-color: white;
    color: white;
}

.page-rewards .navbar.scrolled {
    background-color: #006d77b7;
}



/* =============================================== */
/* LOGIN PAGE STYLES */
/* =============================================== */
.page-login {
    background: #0f172a;
    /* Dark sleek background */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: url('../assets/imgs/bg.jpg') center/cover no-repeat;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary);
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.85rem;
}

.remember-me {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--secondary);
}

.login-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.login-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.3);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-container {
        padding: 40px 30px;
    }
}


         /* =============================================== */
/* OPTIMIZED FOR 32" LED TV - 1366x768 RESOLUTION */
/* =============================================== */

/* Base CSS - TV Friendly */
.float-img {
    position: absolute;
    width: 1200px; /* TV ke liye optimized size */
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.25));
    z-index: 2;
}

/* IMAGE POSITIONS - TV Viewing Distance Optimized */
.img-2 {
    top: -180px;
    left: -180px;
}

.img-1 {
    bottom: -120px;
    right: -220px;
}

/* Center Content - TV Text Readability */
.center-content {
    text-align: center;
    max-width: 700px; /* TV ke liye thora bada */
    z-index: 10;
    position: relative;
    transform: translateY(-15px);
    padding: 40px 45px;
    
    
    
    
}

.floating-showcase,
.floating-showcase * {
    font-family: "Avenir", sans-serif;
}

/* SECTION - TV Optimized */
.floating-showcase {
    background: #ffffff;
    padding: 180px 0; /* TV viewing ke liye perfect */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAP - Fixed for 1366px width */
.floating-wrap {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

/* CENTER CONTENT - TV Font Sizes */
.center-content h2 {
    font-size: 42px; /* TV distance ke liye perfect */
    line-height: 1.2;
    font-weight: 600;
    color: #006D77 !important;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.center-content p {
    font-size: 18px; /* TV reading ke liye comfortable */
    line-height: 1.7;
    color: #5F7D82;
    margin-bottom: 35px;
    font-weight: 400;
}

/* BUTTON - TV Friendly */
.cta-btn2 {
    display: inline-block;
    padding: 16px 40px;
    background: #006D77;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 15px 35px rgba(0, 109, 119, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px; /* TV remote navigation ke liye */
}

.cta-btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 109, 119, 0.4);
    background: #00555e;
    border-color: rgba(255, 255, 255, 0.2);
}

/* =============================================== */
/* SPECIFIC FOR 1366x768 RESOLUTION */
/* =============================================== */

/* Exact match for 1366x768 */
@media (width: 1366px) and (height: 768px) {
    .floating-showcase {
        padding: 120px 0;
    }
    
    .floating-wrap {
        max-width: 1000px;
        min-height: 500px;
    }
    
    .float-img {
        width: 1000px;
    }
    
    .img-2 {
        top: -120px;
        left: -120px;
    }
    
    .img-1 {
        bottom: -100px;
        right: -180px;
        width: 1100px;
    }
    
    .center-content {
        max-width: 650px;
        padding: 35px 40px;
        transform: translateY(-10px);
    }
    
    .center-content h2 {
        font-size: 38px;
    }
    
    .center-content p {
        font-size: 17px;
    }
}

/* Range for 32" TV typical resolutions */
@media (min-width: 1280px) and (max-width: 1366px) {
    .floating-showcase {
        padding: 160px 0;
    }
    
    .floating-wrap {
        max-width: 1150px;
        min-height: 580px;
    }
    
    .float-img {
                width: 1018px;
    }
    
    .img-2 {
               top: -196px;
        left: -140px;
    }
    
    .img-1 {
                bottom: -139px;
        right: -163px;
        width: 1130px;
    }
    
    .center-content {
        max-width: 633px;
        padding: 17px 73px;
    }
    }
    
    .center-content h2 {
        font-size: 40px;
    }


/* =============================================== */
/* RESPONSIVE FOR OTHER DEVICES */
/* =============================================== */

/* For larger monitors (Above 1366px) */
@media (min-width: 1367px) {
    .floating-showcase {
        padding: 200px 0;
    }
    
    .floating-wrap {
        max-width: 1300px;
        min-height: 650px;
    }
    
    .float-img {
        width: 1300px;
    }
    
    .img-2 {
        top: -200px;
        left: -200px;
    }
    
    .img-1 {
        bottom: -140px;
        right: -250px;
        width: 1300px;
    }
    
    .center-content {
        max-width: 720px;
        padding: 45px 50px;
        transform: translateY(-20px);
    }
    
    .center-content h2 {
        font-size: 46px;
    }
    
    .center-content p {
        font-size: 19px;
    }
    
    .cta-btn2 {
        padding: 18px 45px;
        font-size: 18px;
    }
}

/* For tablets and smaller screens */
@media (max-width: 1279px) and (min-width: 1024px) {
    .floating-showcase {
        padding: 120px 0;
    }
    
    .floating-wrap {
        max-width: 1000px;
        min-height: 500px;
    }
    
    .float-img {
        width: 1000px;
    }
    
    .img-2 {
        top: -120px;
        left: -120px;
    }
    
    .img-1 {
        bottom: -80px;
        right: -150px;
        width: 1000px;
    }
    
    .center-content {
        max-width: 600px;
        padding: 32px 35px;
        transform: translateY(-5px);
    }
    
    .center-content h2 {
        font-size: 34px;
    }
    
    .center-content p {
        font-size: 16px;
    }
    
    .cta-btn2 {
        padding: 14px 36px;
    }
}

/* Your existing 900px breakpoint - TV Optimized */
@media (max-width: 900px) {
    .floating-showcase {
        padding: 100px 20px;
    }
    
    .floating-wrap {
        max-width: 800px;
        min-height: 450px;
    }
    
    .float-img {
        width: 600px;
    }
    
    .img-2 {
        top: -80px;
        left: -80px;
    }
    
    .img-1 {
        display: block;
        bottom: -60px;
        right: -90px;
        width: 600px;
    }
    
    .center-content {
        max-width: 500px;
        padding: 30px 32px;
        transform: none;
        
    }
    
    .center-content h2 {
        font-size: 30px;
    }
    
    .center-content p {
        font-size: 15px;
    }
    
    .cta-btn2 {
        padding: 13px 34px;
        font-size: 16px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .floating-showcase {
        padding: 80px 15px;
        min-height: auto;
    }
    
    .floating-wrap {
        min-height: 400px;
    }
    
    .float-img {
        width: 300px;
    }
    
    .img-2 {
        top: -40px;
        left: -30px;
    }
    
    .img-1 {
        display: none;
    }
    
    .center-content {
        max-width: 90%;
        padding: 25px 28px;
        transform: none;
        
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .center-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .center-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-btn2 {
        padding: 12px 32px;
        font-size: 15px;
    }
}

/* TV Remote Navigation Support */
@media (pointer: coarse) and (min-width: 1024px) {
    .cta-btn2 {
        min-height: 50px;
        min-width: 200px;
        padding: 15px 40px;
    }
    
    .center-content h2 {
        font-size: 44px; /* TV distance ke liye aur bada */
    }
    
    .center-content p {
        font-size: 20px; /* Better readability from distance */
    }
}

/* High Contrast Mode for TV */
@media (prefers-contrast: high) {
    .center-content {
        
        border: 2px solid #006D77;
    }
    
    .center-content h2 {
        color: #00474e;
    }
    
    .center-content p {
        color: #333333;
    }
    
    .cta-btn2 {
        background: #00474e;
        border: 2px solid #006D77;
    }
}
         .section-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
 .section-title3 {
            font-size: 3.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-top: 20px;
        }

        .section-subtitle3 {
            font-size: 1.75rem;
            font-weight: 400;
            color: #64748b;
            line-height: 1.6;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            overflow: hidden;
           
            height: auto;
            margin-left: 25px !important;
            margin-right:25px !important;
            
        }

        .slider-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            gap: 30px;
            padding: 30px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Card Design - Soft Neumorphism */
        .slider-card {
            flex: 0 0 calc(25% - 22.5px); /* 4 cards visible */
            background: #ffffff;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.04),
                0 1px 3px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.9);
            display: flex;
            flex-direction: column;
            min-height: 220px;
            border: #006D77 1px solid;
            
        }

        .slider-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(0, 109, 119, 0.205),
                0 5px 15px rgba(0, 0, 0, 0.192),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        /* Icon Styling */
        .card-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }

        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
        }

        /* Card Content */
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #000000 !important;
            margin-bottom: 16px;
            line-height: 1.3;
            padding-top: 10px;
        }

        .card-description {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #64748b;
            flex-grow: 1;
        }

        /* Accent Line */
        .accent-line {
            height: 3px;
            width: 60px;
            background-color: #006D77;
            border-radius: 2px;
            margin-top: 28px;
            opacity: 0.7;
            transition: width 0.3s ease;
        }

        .slider-card:hover .accent-line {
            width: 80px;
            opacity: 1;
        }

        /* Navigation Arrows */
        .slider-nav {
            position: sticky;
            top: 50%;
            left: 95% !important;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.9);
        }

        .slider-container:hover .slider-nav {
            opacity: 1;
        }

        .slider-nav:hover {
            background: #006D77;
            box-shadow: 0 10px 25px rgba(0, 109, 119, 0.2);
        }

        .slider-nav:hover i {
            color: white;
        }

        .slider-nav i {
            font-size: 1.4rem;
            color: #006D77;
            transition: color 0.3s ease;
        }

        .slider-nav.prev {
            left: -16px !important;
        }

        .slider-nav.next {
            right: -28px;
        }

        /* Pause on Hover Animation */
        .slider-track.paused {
            animation-play-state: paused;
        }

        /* Autoplay Indicator */
        .autoplay-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            margin: 0 4px;
            transition: background-color 0.3s ease;
        }

        .indicator-dot.active {
            background-color: #006D77;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .slider-card {
                flex: 0 0 calc(33.333% - 20px); /* 3 cards visible */
            }
        }

        @media (max-width: 992px) {
            .slider-card {
                flex: 0 0 calc(50% - 15px); /* 2 cards visible */
            }
            
          
          
        }

        @media (max-width: 768px) {
            .slider-card {
                flex: 0 0 calc(100% - 0px); /* 1 card visible */
                min-height: 280px;
                padding: 28px 24px;
            }
            
           
            
            
        }/* =============================================== */
        /* LIGHT THEME COLORS */
        /* =============================================== */
        :root {
            --primary: #006d77;
            --primary-dark: #00555e;
            --primary-light: rgba(0, 109, 119, 0.08);
            --accent: #0097a7;
            --text: #1a1a1a;
            --text-light: #666666;
            --text-lighter: #888888;
            --bg: #ffffff;
            --card-bg: #ffffff;
            --card-border: #e0e0e0;
            --border: #e5e5e5;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.08);
            --light-bg: #f8fafc;
            --section-bg: #f9fafb;
        }

        /* =============================================== */
        /* ENHANCED TYPOGRAPHY SYSTEM WITH AVENIR */
        /* =============================================== */
        * {
            cursor: none !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Apply Avenir Font Systematically */
        body, 
        h1, h2, h3, h4, h5, h6,
        p, span, a, li, button, input, textarea,
        .nav-links li a,
        .btn,
        .section-title,
        .section-subtitle,
        .video-hero-title,
        .video-hero-subtitle,
        .blog-slider-title,
        .blog-slider-subtitle,
        .result-title,
        .result-description,
        .feature-title,
        .feature-description,
        .pricing-title,
        .pricing-price,
        .blog-slide-title,
        .blog-slide-excerpt,
        .adv-card h3,
        .adv-card p,
        .footer-title,
        .footer-links a,
        .footer-description,
        .time-display,
        .marquee-label,
        .blog-slide-category,
        .pricing-badge,
        .blog-read-badge {
            font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
        }

        /* Typography Hierarchy with Avenir */
        .video-hero-title {
            font-weight: 800 !important;
            line-height: 1.05;
            letter-spacing: -0.02em;
            font-size: clamp(52px, 5vw, 84px);
            color: #ffffff;
        }
        .laptop-hero-title {
            font-weight: 800 !important;
            line-height: 1.05;
            letter-spacing: -0.02em;
            font-size: clamp(52px, 5vw, 84px);
            color: #00555e;
        }

         .blog-slider-title {
            font-weight: 700 !important;
            line-height: 1.1;
            letter-spacing: -0.01em;
            font-size: clamp(40px, 4vw, 52px);
            color: var(--text);
        }

         .result-title h2,  .pricing-title, .blog-slide-title, .adv-card h3 {
            font-weight: 600 !important;
            line-height: 1.2;
            letter-spacing: 0;
            font-size: clamp(20px, 2.5vw, 24px);
            color: #666666;

        }
        .feature-title{
            padding-top: 20px;
            line-height: 20px;
            font-size: 16px !important;
            font-weight: 1000 !important;
        }
        .blog-slide-read-more{
            text-decoration: none;
            color: #006D77;
            text-align: center;
        }
        .video-hero-subtitle {
            font-weight: 350 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #ffffff;
            font-size: clamp(18px, 2vw, 22px);
            padding-top: 20px;
        }

         .section-subtitle, .blog-slider-subtitle {
            font-weight: 350 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #ffffff;
            font-size: clamp(18px, 2vw, 22px);
        }

        p,   .adv-card p, .blog-slide-excerpt, .footer-description {
            font-weight: 400 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: var(--text-light);
            font-size: clamp(15px, 1.8vw, 17px);

        }
        .result-description{
            font-weight: 400 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #666666;
            font-size: clamp(15px, 1.8vw, 17px);}

            .feature-description{
            font-weight: 400 !important;
            line-height: 1.6;
            letter-spacing: 0.01em;
            color: #666666;
            font-size: clamp(15px, 1.8vw, 17px);}

        .nav-links li a,  .login-btn {
            font-weight: 500 !important;
            letter-spacing: 0.02em;
        }

        .marquee-label, .blog-slide-category, .pricing-badge, .blog-read-badge {
            font-weight: 600 !important;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: white;
        }

        .footer-links a, .time-display, .dropdown-content a {
            font-weight: 400 !important;
        }

        /* Fine-tune specific elements */
        .video-hero-subtitle {
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .blog-slide-excerpt {
            margin-bottom: 20px;
        }

        .result-description, .feature-description {
            font-size: 16px;
        }

        .adv-card p {
            font-size: 15px;
            line-height: 1.6;
        }
/* =============================================== */
        /* 3D VIDEO PLAYER SECTION - LIGHT THEME */
        /* =============================================== */
        .video-hero-section {
            padding:  100px;
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .video-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            background-image: url(assets/imgs/bg.jpg);
            background-repeat: no-repeat;
            background-position: top;
            background-size: contain;
            background-color: black !important;
        }
        .laptop-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            background-color: white;
            
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .video-hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .video-hero-title .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
        }
        /* Additional controls styles */
.replay-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.replay-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.skip-controls {
    display: flex;
    gap: 8px;
}

.skip-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.skip-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Video controls layout update */
.video-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Mobile responsive controls */
@media (max-width: 768px) {
    .video-controls {
        gap: 10px;
        padding: 12px 16px;
    }
    
    .skip-controls {
        order: 5;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .volume-control {
        order: 4;
    }
    
    .video-progress {
        order: 3;
        width: 100%;
        margin: 10px 0;
    }
    
    .time-display {
        order: 2;
        min-width: 80px;
    }
}

        /* 3D Video Container */
        .video-3d-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1200px;
            padding: 100px;
            padding-left: 30px;
            padding-right: 30px;
        }

        .video-3d-wrapper {
            position: relative;
            width: 100%;
            transform-style: preserve-3d;
            transform-origin: center center;
            will-change: transform;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Video Player */
        .video-player {
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.03),
                0 40px 80px rgba(0, 0, 0, 0.08),
                inset 0 0 80px rgba(0, 109, 119, 0.05);
            transform-style: preserve-3d;
        }

        .video-element {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            transition: all 0.3s;
        }
        .laptop-element {
            width: 100%;
            height: 600px;
           padding-right: 50px;
            display: block;
            transition: all 0.3s;
        }

        /* Video Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .video-player:hover .video-overlay {
            opacity: 1;
        }

        /* Video Controls */
        .video-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
            max-width: 600px;
            background: rgba(255, 255, 255, 0.9);
            padding: 16px 24px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .play-pause-btn {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .play-pause-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        .video-progress {
            flex: 1;
            height: 4px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .progress-bar {
            position: absolute;
            height: 100%;
            background: var(--primary);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s;
        }

        .time-display {
            color: var(--text-light);
            font-size: 14px;
            min-width: 100px;
            text-align: center;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .volume-icon {
            color: var(--text-light);
            font-size: 18px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .volume-level {
            position: absolute;
            height: 100%;
            background: var(--primary);
            border-radius: 2px;
            width: 100%;
        }

        /* Video Selection */
        .video-selection {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .video-thumbnail {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s;
            opacity: 0.7;
        }

        .video-thumbnail:hover {
            opacity: 1;
            transform: translateY(-4px);
        }

        .video-thumbnail.active {
            border-color: var(--primary);
            opacity: 1;
            box-shadow: 0 8px 24px rgba(0, 109, 119, 0.15);
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: background 0.3s;
        }

        .video-thumbnail:hover .video-thumbnail-overlay {
            background: rgba(0, 109, 119, 0.7);
        }

        /* 3D Glow Effect */
        .video-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(0, 109, 119, 0.1) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        /* Masking fade effect */
        .mask-fade {
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }
/* =============================================== */
        /* MARQUEE SECTION - LIGHT THEME */
        /* =============================================== */
        .marquee-section {
            padding: 40px 0;
            background: #000000;
            /* border-top: 1px solid var(--border); */
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .marquee-label {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 30px;
            color: white;
        }

        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marqueeScroll 40s linear infinite;
            will-change: transform;
        }

        .marquee-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin: 0 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .marquee-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.1);
            border-color: var(--primary-light);
        }

        .marquee-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .marquee-item:hover .marquee-logo {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        /* =============================================== */
        /* COMPENSATION SECTION - FIXED (ORIGINAL STYLE) */
        /* =============================================== */
        .compensation-section {
            padding: 90px 8%;
            background: var(--light-bg);
            color: var(--text);
            text-align: center;
        }

        /* Title */
        .comp-title {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .comp-title span {
            color: var(--primary);
        }

        /* Flex Grid */
        .comp-cards {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Single Card */
        .comp-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            width: 320px;
            padding: 26px 22px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .comp-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at top left,
                rgba(0, 109, 119, 0.08),
                transparent 60%
            );
            opacity: 0;
            transition: 0.4s;
        }

        .comp-card:hover::before {
            opacity: 1;
        }

        .comp-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

       
       

        /* Card Titles */
        .comp-card h3 {
            font-size: 20px;
            color: #006D77;
            margin-bottom: 8px;
        }

        /* Text */
        .comp-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* =============================================== */
        /* ADVANTAGES SECTION - FIXED (ORIGINAL STYLE) */
        /* =============================================== */
        .advantages-section {
            padding: 80px;
            background: var(--section-bg);
            color: var(--text);
        }

        .section-title {
            text-align: center;
            font-size: 44px;
            margin-bottom: 70px;
            padding-bottom: 30px;
        }

        .section-title span {
            color: var(--primary);
            padding-bottom: 30px;
            
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .adv-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 18px;
            padding: 34px 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .adv-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at top left,
                rgba(0, 109, 119, 0.08),
                transparent 60%
            );
            opacity: 0;
            transition: 0.4s;
        }

        .adv-card:hover::before {
            opacity: 1;
        }

        .adv-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .adv-icon {
            font-size: 30px;
            display: inline-block;
            margin-bottom: 18px;
        }
        

        .advantages-wrapper {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .advantages-row {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .advantages-row.center {
            justify-content: center;
        }

        .adv-card {
            width: 320px;
        }

        

        /* =============================================== */
        /* SECTION COMMON STYLES - LIGHT THEME */
        /* =============================================== */
        .section-header {
            text-align: center;
            max-width: 800px;
            
        }

      

        .section-subtitle {
            opacity: 0;
            transform: translateY(20px);
        }
        .section-subtitle2 {
            opacity: 0;
            transform: translateY(20px);
            text-align: center;
        }

        /* RESULTS SECTION - LIGHT THEME */
        .results-section {
            background: var(--section-bg);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1061px;
            margin: 0 auto;
        }

        .result-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 22px 26px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .result-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .result-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .result-number {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1;
        }

        .result-title {
            margin-bottom: 12px;
        }

        /* FEATURES SECTION - LIGHT THEME */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid #006D77;
            border-radius: 16px;
            padding: 40px 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .feature-icon {
            width: 300px;
            height: 150px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-card:hover .feature-icon {
            
            color: white;
              transform: scale(1.05) translateY(-16px);
    box-shadow: 0 25px 60px rgba(0, 109, 119, 0.25);
    border: solid 1px #00555e;
        }

        /* PRICING SECTION - LIGHT THEME */
        .pricing-section {
            background: var(--section-bg);
        }

        .pricing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 64px;
            color: var(--text-light);
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.1);
            transition: .4s;
            border-radius: 32px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: var(--primary);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(28px);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 48px 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: translateY(40px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            background: white;
            transform: translateY(-20px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .pricing-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.1);
        }

        .pricing-badge {
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 0.05em;
            display: inline-block;
            margin-bottom: 20px;
        }

        .pricing-title {
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 32px;
            line-height: 1;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .pricing-features li {
            padding: 12px 0;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--primary);
            font-size: 14px;
        }

        


        /* =============================================== */
        /* RESPONSIVE DESIGN - FIXED MOBILE TOGGLE */
        /* =============================================== */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 10px 24px;
            }
            
            .video-hero-section {
                padding: 120px 24px 80px;
            }
            
            .video-element {
                height: 500px;
            }
            
            .results-grid,
            .features-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .section,
            .blog-slider-section {
                padding: 80px 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 30px 20px;
                z-index: 1000;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 25px;
                border-top: 1px solid var(--border);
            }
            
            .nav-links.active {
                display: flex !important;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .video-hero-title {
                font-size: 42px;
            }
            
            .video-element {
                height: 400px;
            }
            
            .video-hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .results-grid,
            .features-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: translateY(0);
            }
            
            .video-controls {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .video-selection {
                gap: 12px;
            }
            
            .video-thumbnail {
                width: 100px;
                height: 70px;
            }
            
            /* Mobile dropdown styles */
            .dropdown-content {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.9);
                border: none;
                border-radius: 0;
                margin-top: 10px;
                padding-left: 20px;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown-content.show {
                display: block !important;
            }
            
            .dropdown-content a {
                color: #333;
                padding: 12px 20px;
                border-bottom: 1px solid var(--border);
            }
            
            .navbar.scrolled .nav-links li a,
            .navbar.scrolled .dropdown-content a {
                color: #333 !important;
            }
            
            .dropdown-content a:hover {
                background: var(--primary-light);
            }
            
            .nav-links li {
                width: 100%;
                text-align: left;
            }
            
            .nav-links li a {
                display: block;
                padding: 15px 0;
                font-size: 16px;
                border-bottom: 1px solid var(--border);
            }
            
            .nav-links li:last-child a {
                border-bottom: none;
            }
            
            .dropdown > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .video-hero-title {
                font-size: 36px;
            }
            
            .video-element {
                height: 300px;
            }
            
            .video-thumbnail {
                width: 80px;
                height: 60px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header,
            .blog-slider-header {
                margin-bottom: 40px;
            }
            
            .nav-container {
                padding: 10px 20px;
            }
            
            .nav-links {
                padding: 20px;
            }
            
            .mobile-toggle {
                font-size: 1.5rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            .navbar.scrolled .logo img {
                height: 35px;
            }
        }

        /* Tablet Screens */
        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }
            
            .nav-links li a {
                font-size: 14px;
            }
            
            .login-btn {
                padding: 8px 20px;
                font-size: 14px;
            }
        }

        /* Handle landscape mode on mobile */
        @media (max-height: 600px) and (max-width: 768px) {
            .nav-links {
                max-height: 70vh;
            }
        }

        /* Fix for iOS Safari */
        @supports (-webkit-touch-callout: none) {
            .nav-links {
                -webkit-overflow-scrolling: touch;
            }
        }/* =============================================== */
        /* TEAM SECTION - LIGHT THEME */
        /* =============================================== */
        .team-section {
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .team-card {
            background: var(--white);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 109, 119, 0.12);
            border-color: var(--primary-light);
        }

        .team-image-container {
            margin-bottom: 20px;
            text-align: center;
        }

        .team-image-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--white);
            box-shadow: 0 10px 20px rgba(0, 109, 119, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            padding: 15px;
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-image {
            filter: grayscale(0%);
            opacity: 1;
        }

        .team-info {
            flex: 1;
            text-align: center;
        }

        .team-name {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .team-bio {
            font-size: 14px;
            line-height: 1.6;
            color: black !important;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 8;
            line-clamp: 8;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .company-logo {
            padding-top: 15px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .company-logo img {
            height: 25px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .company-logo img {
            opacity: 1;
        }

        /* =============================================== */
        /* HERO STORY SECTION - LIGHT THEME */
        /* =============================================== */
        .story-hero-section {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-text-container {
            padding-right: 40px;
        }

        .story-title {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 20px;
        }

        .story-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .story-paragraph {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            color: rgb(255, 255, 255) !important;
        }

        .story-highlight {
            background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.1) 100%);
            padding: 2rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            margin: 2.5rem 0;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--primary-dark);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 109, 119, 0.1);
        }

        .story-highlight::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-light);
            opacity: 0.5;
            font-family: Georgia, serif;
        }

        .story-image-container {
            position: relative;
            padding: 30px;
        }

        .story-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 109, 119, 0.15);
            position: relative;
        }

        .story-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%,
                rgba(0, 109, 119, 0.05) 100%);
            z-index: 1;
        }

        .story-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .story-image:hover img {
            transform: scale(1.05);
        }
/* =============================================== */
        /* BASE STYLES WITH AVENIR FONT */
        /* =============================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, 
        h1, h2, h3, h4, h5, h6,
        p, span, a, li, button, input, textarea,
        .story-title,
        .story-paragraph,
        .story-highlight,
        .team-name,
        .team-bio,
        .footer-title,
        .footer-links a,
        .footer-description {
            font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
        }

        body {
            min-height: 100vh;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography Hierarchy */
        h1, .story-title {
            font-weight: 800 !important;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--primary);
        }

        h2, .section-title {
            font-weight: 700 !important;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: black !important;
        }

        h3, .team-name {
            font-weight: 600 !important;
            line-height: 1.3;
            color: var(--primary);
        }

        p, .story-paragraph, .team-bio, .footer-description {
            font-weight: 400 !important;
            line-height: 1.7;
            color: var(--text-light);
        }

        /* =============================================== */
        /* CONTAINER & SPACING */
        /* =============================================== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .section-subtitleabout {
            font-size: 1.2rem;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
        }
 .rewards-hero-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
             background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;

            
        }

        .rewards-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 50%, rgba(0, 109, 119, 0.15) 0%, transparent 50%),
                            radial-gradient(circle at 80% 20%, rgba(0, 109, 119, 0.1) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .rewards-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .rewards-content {
            opacity: 0;
            transform: translateY(30px);
        }

        .rewards-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 20px;
            margin-bottom: 30px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .rewards-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .rewards-tagline {
            font-size: 22px;
            color: #94A3B8;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
            max-width: 500px;
        }

        .rewards-description-container {
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid #006D77;
            padding: 32px;
            border-radius: 0 20px 20px 0;
            margin-bottom: 48px;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .description-icon {
            position: absolute;
            top: -18px;
            left: -18px;
            background: #000000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #006D77;
            z-index: 3;
        }

        .core-message {
            font-size: 18px;
            line-height: 1.8;
            color: #CBD5E0;
            margin: 0;
            font-weight: 400;
        }

        .rewards-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 56px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .feature span {
            font-size: 18px;
            color: #E2E8F0;
            font-weight: 500;
        }

        .cta-container {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            max-width: 240px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .demo-button:hover::before {
            left: 100%;
        }

        .demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .demo-button:active {
            transform: translateY(0);
        }

        .cta-note {
            font-size: 16px;
            color: #94A3B8;
            margin: 0;
            max-width: 300px;
        }

        /* Visual Section */
        .rewards-visual {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .visual-container {
            position: relative;
        }

        .dashboard-preview {
            background: #1A2332;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .dashboard-header {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }

        .dashboard-content {
            background: #0F1729;
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .chart-container {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 240px;
            padding: 20px 0;
            margin-bottom: 32px;
            position: relative;
        }

        .chart-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 109, 119, 0.05) 100%);
            pointer-events: none;
            border-radius: 10px;
        }

        .chart-bar {
            width: 48px;
            background: #2D3748;
            border-radius: 10px 10px 0 0;
            transition: height 1s ease-out;
            position: relative;
        }

        .chart-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 109, 119, 0.1), transparent);
            border-radius: 10px 10px 0 0;
        }

        .data-points {
            display: flex;
            gap: 32px;
            justify-content: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .data-point {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .point-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #2D3748;
        }

        .floating-element {
            position: absolute;
            background: rgba(26, 35, 50, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 109, 119, 0.3);
            border-radius: 16px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            animation: float 6s ease-in-out infinite;
        }

        .floating-1 {
            top: -30px;
            right: -40px;
            animation-delay: 0s;
        }

        .floating-2 {
            bottom: 60px;
            left: -50px;
            animation-delay: 3s;
        }

        .floating-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-element span {
            font-size: 16px;
            color: #E2E8F0;
            font-weight: 500;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(1.5deg);
            }
        }

        /* Background Decorations */
        .bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
        }

        /* =============================================== */
        /* RESPONSIVE DESIGN  for trew rewards */ 
        /* =============================================== */
        @media (max-width: 1200px) {
            .rewards-container {
                gap: 60px;
            }
            
            .rewards-headline {
                font-size: 56px;
            }
            
            .footer-grid {
                gap: 40px;
            }
        }

        @media (max-width: 1024px) {
            .nav-container {
                padding: 10px 24px;
            }
            
            .rewards-hero-section {
                padding: 120px 24px 80px;
            }
            
            .rewards-container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .rewards-headline {
                font-size: 48px;
            }
            
            .rewards-tagline {
                margin-left: auto;
                margin-right: auto;
            }
            
            .rewards-description-container {
                text-align: left;
            }
            
            .rewards-features {
                align-items: center;
            }
            
            .feature {
                justify-content: center;
            }
            
            .demo-button {
                margin: 0 auto;
            }
            
            .cta-note {
                margin: 0 auto;
                text-align: center;
            }
            
            .floating-element {
                transform: scale(0.9);
            }
            
            .floating-1 {
                right: -20px;
            }
            
            .floating-2 {
                left: -20px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .rewards-headline {
                font-size: 40px;
            }
            
            .rewards-tagline {
                font-size: 18px;
            }
            
            .rewards-description-container {
                padding: 24px;
            }
            
            .core-message {
                font-size: 16px;
            }
            
            .dashboard-preview {
                padding: 24px;
            }
            
            .dashboard-content {
                padding: 24px;
            }
            
            .chart-container {
                height: 200px;
            }
            
            .chart-bar {
                width: 40px;
            }
            
            .floating-element {
                padding: 14px 20px;
                transform: scale(0.8);
            }
            
            .floating-1 {
                top: -20px;
                right: -15px;
            }
            
            .floating-2 {
                bottom: 40px;
                left: -15px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .rewards-headline {
                font-size: 36px;
            }
            
            .rewards-tagline {
                font-size: 16px;
            }
            
            .demo-button {
                width: 100%;
                max-width: none;
                padding: 20px 32px;
            }
            
            .chart-container {
                height: 180px;
            }
            
            .chart-bar {
                width: 32px;
            }
            
            .floating-element {
                transform: scale(0.7);
            }
            
            .footer {
                padding: 60px 24px 30px;
            }
        }
        /* =============================================== */
        /* CEO SURVEY SECTION STYLES */
        /* =============================================== */
        :root {
            --primary: #006d77;
            --primary-dark: #00555e;
            --primary-light: rgba(0, 109, 119, 0.1);
            --text: #ffffff;
            --text-light: rgba(255, 255, 255, 0.7);
            --text-lighter: rgba(255, 255, 255, 0.5);
            --bg: #000000;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.05);
            --border: rgba(255, 255, 255, 0.1);
        }

        .ceo-survey-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .ceo-survey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 40%, rgba(0, 109, 119, 0.18) 0%, transparent 45%),
                            radial-gradient(circle at 75% 60%, rgba(0, 109, 119, 0.12) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .ceo-survey-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .ceo-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .ceo-headline {
            font-size: 68px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .ceo-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .ceo-description-highlight {
            color: #E2E8F0;
            font-weight: 500;
        }

        /* CEO Survey Visualization */
        .ceo-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .ceo-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .ceo-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .ceo-dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ceo-dashboard-title {
            font-size: 24px;
            font-weight: 600;
            color: #FFFFFF;
        }

        .ceo-dashboard-subtitle {
            color: #006D77;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.05em;
        }

        .ceo-metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .ceo-metric-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .ceo-metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 109, 119, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .ceo-metric-card:hover::before {
            opacity: 1;
        }

        .ceo-metric-card:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
        }

        .ceo-metric-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .ceo-metric-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #FFFFFF;
        }

        .ceo-metric-value {
            font-size: 32px;
            font-weight: 700;
            color: #006D77;
            margin-bottom: 15px;
            line-height: 1;
        }

        .ceo-metric-trend {
            font-size: 14px;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ceo-trend-up {
            color: #28CA42;
        }

        .ceo-trend-down {
            color: #FF5F57;
        }

        .ceo-trend-stable {
            color: #FFBD2E;
        }

        .ceo-insight-container {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
        }

        .ceo-insight-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #FFFFFF;
        }

        .ceo-insight-text {
            color: #94A3B8;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .ceo-insight-feature {
            background: rgba(0, 109, 119, 0.08);
            border-left: 3px solid #006D77;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
        }

        .ceo-feature-text {
            color: #CBD5E0;
            font-size: 15px;
            line-height: 1.6;
        }

        .ceo-cta-container {
            margin-top: 60px;
        }

        .ceo-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .ceo-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .ceo-demo-button:hover::before {
            left: 100%;
        }

        .ceo-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .ceo-demo-button:active {
            transform: translateY(0);
        }

        /* Floating Elements */
        .ceo-floating-element {
            position: absolute;
            background: rgba(26, 35, 50, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 109, 119, 0.3);
            border-radius: 16px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            animation: ceoFloat 7s ease-in-out infinite;
        }

        .ceo-floating-1 {
            top: -30px;
            right: -40px;
            animation-delay: 0s;
        }

        .ceo-floating-2 {
            bottom: 60px;
            left: -50px;
            animation-delay: 3.5s;
        }

        .ceo-floating-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ceo-floating-element span {
            font-size: 16px;
            color: #E2E8F0;
            font-weight: 500;
        }

        @keyframes ceoFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-18px) rotate(1.5deg);
            }
        }

        /* Background Decorations */
        .ceo-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .ceo-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.1) 0%, transparent 70%);
        }

        .ceo-circle-1 {
            width: 550px;
            height: 550px;
            top: -150px;
            right: -200px;
        }

        .ceo-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -180px;
        }
        .spot-survey-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .spot-survey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 40%, rgba(0, 109, 119, 0.18) 0%, transparent 45%),
                            radial-gradient(circle at 75% 60%, rgba(0, 109, 119, 0.12) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .spot-survey-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .spot-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .spot-headline {
            font-size: 68px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .spot-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .spot-description-highlight {
            color: #E2E8F0;
            font-weight: 500;
        }

        /* Spot Survey Visualization */
        .spot-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .spot-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .spot-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .spot-dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .spot-dashboard-title {
            font-size: 24px;
            font-weight: 600;
            color: #FFFFFF;
        }

        .spot-dashboard-subtitle {
            color: #006D77;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.05em;
        }

        .spot-metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .spot-metric-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .spot-metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 109, 119, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .spot-metric-card:hover::before {
            opacity: 1;
        }

        .spot-metric-card:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
        }

        .spot-metric-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .spot-metric-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #FFFFFF;
        }

        .spot-metric-value {
            font-size: 32px;
            font-weight: 700;
            color: #006D77;
            margin-bottom: 15px;
            line-height: 1;
        }

        .spot-metric-trend {
            font-size: 14px;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .spot-trend-up {
            color: #28CA42;
        }

        .spot-trend-down {
            color: #FF5F57;
        }

        .spot-trend-stable {
            color: #FFBD2E;
        }

        .spot-insight-container {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
        }

        .spot-insight-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #FFFFFF;
        }

        .spot-insight-text {
            color: #94A3B8;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .spot-insight-feature {
            background: rgba(0, 109, 119, 0.08);
            border-left: 3px solid #006D77;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
        }

        .spot-feature-text {
            color: #CBD5E0;
            font-size: 15px;
            line-height: 1.6;
        }

        .spot-cta-container {
            margin-top: 60px;
        }

        .spot-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .spot-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .spot-demo-button:hover::before {
            left: 100%;
        }

        .spot-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .spot-demo-button:active {
            transform: translateY(0);
        }

        /* Floating Elements */
        .spot-floating-element {
            position: absolute;
            background: rgba(26, 35, 50, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 109, 119, 0.3);
            border-radius: 16px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            animation: spotFloat 7s ease-in-out infinite;
        }

        .spot-floating-1 {
            top: -30px;
            right: -40px;
            animation-delay: 0s;
        }

        .spot-floating-2 {
            bottom: 60px;
            left: -50px;
            animation-delay: 3.5s;
        }

        .spot-floating-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spot-floating-element span {
            font-size: 16px;
            color: #E2E8F0;
            font-weight: 500;
        }

        @keyframes spotFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-18px) rotate(1.5deg);
            }
        }

        /* Background Decorations */
        .spot-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .spot-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.1) 0%, transparent 70%);
        }

        .spot-circle-1 {
            width: 550px;
            height: 550px;
            top: -150px;
            right: -200px;
        }

        .spot-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -180px;
        }
/* =============================================== */
        /* EMPLOYEE ENGAGEMENT SURVEY SECTION STYLES */
        /* =============================================== */
        .engagement-hero-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .engagement-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 30% 40%, rgba(0, 109, 119, 0.12) 0%, transparent 50%),
                            radial-gradient(circle at 70% 30%, rgba(0, 109, 119, 0.08) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .engagement-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .engagement-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .engagement-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .engagement-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* Engagement Visualization */
        .engagement-visualization {
            max-width: 900px;
            margin: 80px auto 0;
            position: relative;
        }

        .engagement-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .engagement-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .engagement-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .engagement-metric {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .engagement-metric:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .metric-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .metric-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #FFFFFF;
        }

        .metric-value {
            font-size: 36px;
            font-weight: 700;
            color: #006D77;
            margin-bottom: 10px;
            line-height: 1;
        }

        .metric-description {
            color: #94A3B8;
            font-size: 14px;
            line-height: 1.5;
        }

        .engagement-insight {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
            margin-bottom: 40px;
        }

        .insight-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #FFFFFF;
        }

        .insight-text {
            color: #94A3B8;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 0;
        }

        .engagement-cta-container {
            margin-top: 40px;
        }

        .engagement-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .engagement-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .engagement-demo-button:hover::before {
            left: 100%;
        }

        .engagement-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .engagement-demo-button:active {
            transform: translateY(0);
        }

        /* Background Decorations */
        .engagement-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .engagement-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .engagement-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .engagement-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -200px;
        }
        
        /* =============================================== */
        /* 360 FEEDBACK SURVEY SECTION STYLES */
        /* =============================================== */
        .feedback-survey-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .feedback-survey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(0, 109, 119, 0.15) 0%, transparent 50%),
                            radial-gradient(circle at 80% 70%, rgba(0, 109, 119, 0.1) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .feedback-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .feedback-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .feedback-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .feedback-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* 360 Feedback Visualization */
        .feedback-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .feedback-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .feedback-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .feedback-360-visual {
            width: 300px;
            height: 300px;
            margin: 0 auto 50px;
            position: relative;
        }

        .circle-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid rgba(0, 109, 119, 0.2);
        }

        .circle-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            border-radius: 50%;
            border: 2px solid rgba(0, 109, 119, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #006D77;
            font-size: 18px;
            font-weight: 600;
            background: rgba(0, 109, 119, 0.05);
        }

        .feedback-point {
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #006D77;
            font-size: 14px;
            border: 1px solid rgba(0, 109, 119, 0.3);
        }

        .point-self { top: 0; left: 50%; transform: translateX(-50%); }
        .point-manager { top: 50%; right: 0; transform: translateY(-50%); }
        .point-peers { bottom: 0; left: 50%; transform: translateX(-50%); }
        .point-reports { top: 50%; left: 0; transform: translateY(-50%); }

        .feedback-pillars {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .feedback-pillar {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
        }

        .feedback-pillar:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .feedback-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #006D77;
            font-size: 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .feedback-pillar-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #FFFFFF;
        }

        .feedback-pillar-text {
            color: #94A3B8;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
        }

        .feedback-metrics {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
            margin-bottom: 40px;
        }

        .metrics-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .metrics-list li {
            padding: 15px 0;
            color: #94A3B8;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list li:last-child {
            border-bottom: none;
        }

        .metrics-list li i {
            color: #006D77;
            font-size: 14px;
        }

        .metrics-highlight {
            color: #FFFFFF;
            font-weight: 500;
        }

        .feedback-cta-container {
            margin-top: 40px;
        }

        .feedback-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .feedback-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .feedback-demo-button:hover::before {
            left: 100%;
        }

        .feedback-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .feedback-demo-button:active {
            transform: translateY(0);
        }

        /* Background Decorations */
        .feedback-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .feedback-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .feedback-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .feedback-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -200px;
        }

        /* =============================================== */
        /* RESPONSIVE DESIGN */
        /* =============================================== */
        @media (max-width: 1200px) {
            .feedback-headline {
                font-size: 56px;
            }
            
            .feedback-description {
                font-size: 20px;
            }
            
            .feedback-pillars {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 1024px) {
            .nav-container {
                padding: 10px 24px;
            }
            
            .feedback-survey-section {
                padding: 120px 24px 80px;
            }
            
            .feedback-headline {
                font-size: 48px;
            }
            
            .feedback-description {
                font-size: 19px;
            }
            
            .feedback-dashboard {
                padding: 40px;
            }
            
            .feedback-360-visual {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .feedback-headline {
                font-size: 40px;
            }
            
            .feedback-description {
                font-size: 18px;
            }
            
            .feedback-pillars {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .feedback-dashboard {
                padding: 30px;
            }
            
            .feedback-360-visual {
                width: 200px;
                height: 200px;
                margin-bottom: 40px;
            }
            
            .feedback-point {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .feedback-headline {
                font-size: 36px;
            }
            
            .feedback-description {
                font-size: 17px;
                margin-bottom: 40px;
                padding: 0;
            }
            
            .feedback-dashboard {
                padding: 20px;
            }
            
            .feedback-pillar {
                padding: 24px;
            }
            
            .feedback-360-visual {
                width: 180px;
                height: 180px;
            }
            
            .feedback-demo-button {
                width: 100%;
                padding: 20px 32px;
            }
        }
        /* =============================================== */
        /* CUSTOMER SATISFACTION SURVEY SECTION STYLES */
        /* =============================================== */
        .customer-survey-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .customer-survey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 35%, rgba(0, 109, 119, 0.15) 0%, transparent 50%),
                            radial-gradient(circle at 75% 65%, rgba(0, 109, 119, 0.1) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .customer-survey-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .customer-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .customer-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .customer-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* Customer Survey Visualization */
        .customer-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .customer-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .customer-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .customer-insights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .customer-insight {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: left;
        }

        .customer-insight:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .insight-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .insight-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #FFFFFF;
        }

        .insight-text {
            color: #94A3B8;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .customer-metrics {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
            margin-bottom: 40px;
        }

        .metrics-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .metrics-list li {
            padding: 15px 0;
            color: #94A3B8;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list li:last-child {
            border-bottom: none;
        }

        .metrics-list li i {
            color: #006D77;
            font-size: 14px;
        }

        .metrics-highlight {
            color: #FFFFFF;
            font-weight: 500;
        }

        .customer-cta-container {
            margin-top: 40px;
        }

        .customer-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .customer-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .customer-demo-button:hover::before {
            left: 100%;
        }

        .customer-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .customer-demo-button:active {
            transform: translateY(0);
        }

        /* Background Decorations */
        .customer-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .customer-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .customer-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .customer-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -200px;
        }
        /* =============================================== */
        /* EMPLOYEE WELL-BEING SURVEY SECTION STYLES */
        /* =============================================== */
        .wellbeing-survey-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .wellbeing-survey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 35%, rgba(0, 109, 119, 0.15) 0%, transparent 50%),
                            radial-gradient(circle at 75% 65%, rgba(0, 109, 119, 0.1) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .wellbeing-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .wellbeing-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .wellbeing-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .wellbeing-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* Well-being Visualization */
        .wellbeing-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .wellbeing-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .wellbeing-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .wellbeing-pillars {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .wellbeing-pillar {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: left;
        }

        .wellbeing-pillar:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .pillar-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .pillar-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #FFFFFF;
        }

        .pillar-text {
            color: #94A3B8;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .wellbeing-metrics {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
            margin-bottom: 40px;
        }

        .metrics-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .metrics-list li {
            padding: 15px 0;
            color: #94A3B8;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list li:last-child {
            border-bottom: none;
        }

        .metrics-list li i {
            color: #006D77;
            font-size: 14px;
        }

        .metrics-highlight {
            color: #FFFFFF;
            font-weight: 500;
        }

        .wellbeing-cta-container {
            margin-top: 40px;
        }

        .wellbeing-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .wellbeing-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .wellbeing-demo-button:hover::before {
            left: 100%;
        }

        .wellbeing-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .wellbeing-demo-button:active {
            transform: translateY(0);
        }

        /* Background Decorations */
        .wellbeing-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .wellbeing-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .wellbeing-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .wellbeing-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -200px;
        }

        /* =============================================== */
        /* RESPONSIVE DESIGN */
        /* =============================================== */
        @media (max-width: 1200px) {
            .wellbeing-headline {
                font-size: 56px;
            }
            
            .wellbeing-description {
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
            .nav-container {
                padding: 10px 24px;
            }
            
            .wellbeing-survey-section {
                padding: 120px 24px 80px;
            }
            
            .wellbeing-headline {
                font-size: 48px;
            }
            
            .wellbeing-description {
                font-size: 19px;
            }
            
            .wellbeing-pillars {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wellbeing-dashboard {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .wellbeing-headline {
                font-size: 40px;
            }
            
            .wellbeing-description {
                font-size: 18px;
            }
            
            .wellbeing-pillars {
                grid-template-columns: 1fr;
            }
            
            .wellbeing-dashboard {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .wellbeing-headline {
                font-size: 36px;
            }
            
            .wellbeing-description {
                font-size: 17px;
                margin-bottom: 40px;
            }
            
            .wellbeing-dashboard {
                padding: 20px;
            }
            
            .wellbeing-pillar {
                padding: 24px;
            }
            
            .wellbeing-demo-button {
                width: 100%;
                padding: 20px 32px;
            }
        }
        /* =============================================== */
        /* DIVERSITY & INCLUSION SURVEY SECTION STYLES */
        /* =============================================== */
        .diversity-section {
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
                 background-image: url(assets/imgs/bg.jpg);
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .diversity-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(0, 109, 119, 0.15) 0%, transparent 50%),
                            radial-gradient(circle at 80% 70%, rgba(0, 109, 119, 0.1) 0%, transparent 50%);
            opacity: 0;
            animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .diversity-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .diversity-badge {
            display: inline-block;
            background: rgba(0, 109, 119, 0.1);
            color: #006D77;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 109, 119, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .diversity-headline {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A0DDE6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .diversity-description {
            font-size: 22px;
            color: #94A3B8;
            line-height: 1.6;
            font-weight: 400;
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* Diversity Visualization */
        .diversity-visualization {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .diversity-dashboard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .diversity-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #006D77, transparent);
        }

        .diversity-pillars {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .diversity-pillar {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
        }

        .diversity-pillar:hover {
            border-color: rgba(0, 109, 119, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

        .diversity-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 109, 119, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #006D77;
            font-size: 28px;
            border: 1px solid rgba(0, 109, 119, 0.2);
        }

        .diversity-pillar-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #FFFFFF;
        }

        .diversity-pillar-text {
            color: #94A3B8;
            font-size: 15px;
            line-height: 1.5;
            margin: 0;
        }

        .diversity-metrics {
            background: rgba(0, 109, 119, 0.05);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(0, 109, 119, 0.1);
            text-align: left;
            margin-bottom: 40px;
        }

        .metrics-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .metrics-list li {
            padding: 15px 0;
            color: #94A3B8;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metrics-list li:last-child {
            border-bottom: none;
        }

        .metrics-list li i {
            color: #006D77;
            font-size: 14px;
        }

        .metrics-highlight {
            color: #FFFFFF;
            font-weight: 500;
        }

        .diversity-cta-container {
            margin-top: 40px;
        }

        .diversity-demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #006D77;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            padding: 22px 44px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0, 109, 119, 0.3);
            position: relative;
            overflow: hidden;
        }

        .diversity-demo-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .diversity-demo-button:hover::before {
            left: 100%;
        }

        .diversity-demo-button:hover {
            background: #008392;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        }

        .diversity-demo-button:active {
            transform: translateY(0);
        }

        /* Background Decorations */
        .diversity-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .diversity-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
        }

        .diversity-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -200px;
        }

        .diversity-circle-2 {
            width: 450px;
            height: 450px;
            bottom: -150px;
            left: -200px;
        }

        /* =============================================== */
        /* RESPONSIVE DESIGN */
        /* =============================================== */
        @media (max-width: 1200px) {
            .diversity-headline {
                font-size: 56px;
            }
            
            .diversity-description {
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
            .nav-container {
                padding: 10px 24px;
            }
            
            .diversity-section {
                padding: 120px 24px 80px;
            }
            
            .diversity-headline {
                font-size: 48px;
            }
            
            .diversity-description {
                font-size: 19px;
            }
            
            .diversity-dashboard {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .diversity-headline {
                font-size: 40px;
            }
            
            .diversity-description {
                font-size: 18px;
            }
            
            .diversity-pillars {
                grid-template-columns: 1fr;
            }
            
            .diversity-dashboard {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .diversity-headline {
                font-size: 36px;
            }
            
            .diversity-description {
                font-size: 17px;
                margin-bottom: 40px;
            }
            
            .diversity-dashboard {
                padding: 20px;
            }
            
            .diversity-pillar {
                padding: 30px 24px;
            }
            
            .diversity-demo-button {
                width: 100%;
                padding: 20px 32px;
            }
        }
           /* =============================================== */
        /* FOOTER - LIGHT THEME */
        /* =============================================== */
        .footer {
            background: var(--light-bg);
            border-top: 1px solid var(--border);
            padding: 80px 40px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666666;
            transition: all 0.3s;
            text-decoration: none;
            border: 1px solid var(--border);
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .footer-title {
            font-size: 18px;
            margin-bottom: 24px;
            color: #000000;
        }

        .footer-links {
            list-style: none;
            color: #666666;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #666666;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 4px;
        }
        .footer-text {
            color: #666666;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 40px;
            text-align: center;
            color: #666666;
            font-size: 14px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
            padding-left: 1042px;
        }
        .footer-subscribe {
    display: flex;
    margin-top: 20px;
}

.footer-subscribe input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 30px 0 0 30px;
    border: 1px solid var(--border);
    outline: none;
}

.footer-subscribe button {
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    border: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
}

/* Consulting Page (Light Theme) */
        .consulting-page {
            padding: 120px 40px 80px;
            position: relative;
            background: black;
            background-image: url(assets/imgs/bg.jpg);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Hero Section */
        .consulting-hero {
            text-align: center;
            margin-bottom: 80px;
            padding: 40px 0;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 20px;
            margin-bottom: 24px;
            border: 1px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #ffffff;
            opacity: 0;
            transform: translateY(30px);
            animation: titleReveal 1s ease 0.5s forwards;
        }
          .hero-title span {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #006d77;
            opacity: 0;
            transform: translateY(30px);
            animation: titleReveal 1s ease 0.5s forwards;
        }

        @keyframes titleReveal {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-description {
            font-size: 20px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 1s forwards;
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Capabilities Container */
        .capabilities-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 80px;
          
        }

        /* Section */
        .capability-section {
            opacity: 0;
            transform: translateY(40px);
            
        }

        .section-header {
            margin-bottom: 50px;
            text-align: center;
        }

        .section-heading {
            font-size: 36px;
            font-weight: 700;
            color: white !important;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }
       

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cards Grid */
        .capability-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .capability-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            box-shadow: var(--shadow);
        }

        .capability-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-light);
            transition: all 0.3s;
        }

        .capability-card:hover .card-number {
            color: var(--primary);
            transform: scale(1.2);
        }

        .card-content {
            color: var(--text);
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
            transition: all 0.3s;
        }

        .capability-card:hover .card-content {
            color: var(--primary);
        }

        /* Stats Section */
        .stats-section {
            background: var(--bg);
            border-radius: 20px;
            padding: 60px;
            margin: 80px auto;
            max-width: 1000px;
            box-shadow: var(--shadow);
            text-align: center;
            
        }

        .stats-title {
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--text);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--text-light);
            font-size: 16px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 40px;
            background: var(--primary-light);
            border-radius: 20px;
            margin-top: 80px;
        
        }

        .cta-title {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 20px;
        }

        .cta-description {
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
         /* Insights Page */
        #insights-unique {
            padding: 120px 40px 80px !;
            position: relative !important;
            background: white !important;
           
           

        }

        /* Insights Container */
        .insights-container {
            max-width: 1400px;
            margin: 0 auto;
             background-image: url(assets/imgs/bg.jpg)!important;
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
           
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 56px;
            font-weight: 700;
            color: var(--bg);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-subtitle {
            font-size: 20px;
            color: white;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
        }

        /* Grid Layout - ALL CARDS SAME SIZE */
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Insight Card - ALL SAME SIZE */
        .insight-card {
            background-color: #FFFFFF;
            backdrop-filter: blur(100px);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: var(--shadow);
            height: 500px; /* Fixed height for all cards */
            display: flex;
            flex-direction: column;
        }

        .insight-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .card-image {
            width: 100%;
            height: 200px; /* Fixed image height */
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .insight-card:hover .card-image img {
            transform: scale(1.05);
        }
        .insight-card{
            border: #00555e 1px solid !important;

        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }

        .card-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-description {
            color: #666666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }

        .card-date {
            color: var(--text-lighter);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-date i {
            color: var(--primary);
        }

        .card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .card-link:hover {
            gap: 12px;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: var(--primary-light);
            border-radius: 20px;
            padding: 60px;
            margin: 80px 0;
            text-align: center;
        }

        .newsletter-title {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 20px;
        }

        .newsletter-description {
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-input:focus {
            border-color: var(--primary);
        }

        .newsletter-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .for-all-bg{
            background-image: url(../assets/imgs/bg.jpg) !important;
            background-position: top !important;
            background-size: contain !important;
            background-repeat: no-repeat !important;
        }
        .for-all-bg2{
            background-image: url(../assets/imgs/bg.jpg) !important;
            background-position: center !important;
            background-size: cover !important;
            background-repeat: no-repeat !important;
        }
        /* contact us css  */
        /* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.9) 0%, rgba(0, 84, 92, 0.95) 100%);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/imgs/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 2rem;
    color: #006D77;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.dual-input {
    flex-direction: row;
    gap: 15px;
}

.input-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group label[for="consent"] {
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006D77;
    box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #006D77;
    border-color: #006D77;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    display: none;
    margin-top: 5px;
}

/* Submit Button */
.submit-btn {
    position: relative;
    background: #006D77;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #00838f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.2);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .fa-paper-plane {
    display: none;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-loader {
    display: block;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #006D77 0%, #00838f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: #006D77;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: #006D77;
}

/* Contact Social Section */
.contact-social-section {
    background: white;
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    
}

.contact-social-section h3 {
    font-size: 1.2rem;
    color: #006D77;
    margin-bottom: 20px;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.leaflet-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .leaflet-map {
    height: 300px;
  }
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #006D77;
    color: white;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* FAQ Preview */
.contact-faq-preview {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-left:50px !important;
}

.contact-faq-preview h3 {
    font-size: 1.2rem;
    color: #006D77;
    margin-bottom: 20px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.faq-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item i {
    color: #006D77;
    font-size: 1.2rem;
}

.faq-item span {
    color: #333;
    font-weight: 500;
}

.view-all-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #006D77;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.view-all-faq:hover {
    gap: 12px;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 2.5rem;
    color: #006D77;
    margin-bottom: 15px;
}

.map-header p {
    color: #666;
    font-size: 1.1rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="%23ffffff" opacity="0.3"/><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="%23ffffff" opacity="0.5"/></svg>');
    background-size: cover;
}

.map-message {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.map-message i {
    font-size: 4rem;
    color: #006D77;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-message h3 {
    font-size: 1.5rem;
    color: #006D77;
    margin-bottom: 10px;
}

.map-message p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

.map-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.map-btn {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-btn.active,
.map-btn:hover {
    background: #006D77;
    border-color: #006D77;
    color: white;
}

/* Team Section */
.contact-team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #006D77;
    margin-bottom: 15px;
}

.team-header p {
    color: #666;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-info h4 {
    font-size: 1.2rem;
    color: #006D77;
    margin-bottom: 8px;
}

.member-role {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-contact {
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-contact i {
    color: #006D77;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.success-modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #006D77;
    margin-bottom: 15px;
}

.modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-btn {
    background: #006D77;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #00838f;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-group.dual-input {
        flex-direction: column;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-social-section,
    .contact-faq-preview {
        padding: 20px;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
}

/* Modal open state */
body.modal-open {
    overflow: hidden;
}
    

    /* slider version new */
 /* =============================================== */
/* STACKING SLIDER - UPGRADED CENTERED VERSION */
/* =============================================== */

.stacking-slider-section {
    padding: 80px 0;
    background : #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern/image effect */
.stacking-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 Q50,0 80,20 Q100,50 80,80 Q50,100 20,80 Q0,50 20,20Z" fill="%23006D77" fill-opacity="0.02"/></svg>');
    background-size: 120px 120px;
    opacity: 0.3;
    z-index: 0;
}

.stacking-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* padding-bottom: 165px; */
}

.stacking-subtitle h3 {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding-bottom: 165px;
    
}

/* Slider Container - CENTERED */
.slide_contain {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Wrap */
.slide_wrap {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider List - CENTERED */
.slide_list {
    display: flex;
    position: relative;
    height: 100%;
    width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Slide Item - CENTERED STACKING */
.slide_item {
    position: absolute;
    width: 320px;
    height: 420px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 1;
    will-change: transform;
}

/* Centered Stacking Positions */
.slide_item:nth-child(1) { 
    transform: translateX(-150px) scale(0.85) rotateY(5deg);
    z-index: 2;
    opacity: 0.7;
    filter: blur(1px);
}
.slide_item:nth-child(2) { 
    transform: translateX(-75px) scale(0.9) rotateY(2.5deg);
    z-index: 3;
    opacity: 0.8;
    filter: blur(0.5px);
}
.slide_item.is--current { 
    transform: translateX(0) scale(1) rotateY(0deg) !important;
    z-index: 10 !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
    box-shadow: 0 30px 100px rgba(0, 109, 119, 0.3);
}
.slide_item:nth-child(4) { 
    transform: translateX(75px) scale(0.9) rotateY(-2.5deg);
    z-index: 3;
    opacity: 0.8;
    filter: blur(0.5px);
}
.slide_item:nth-child(5) { 
    transform: translateX(150px) scale(0.85) rotateY(-5deg);
    z-index: 2;
    opacity: 0.7;
    filter: blur(1px);
}
.slide_item:nth-child(6) { 
    transform: translateX(225px) scale(0.8) rotateY(-7.5deg);
    z-index: 1;
    opacity: 0.6;
    filter: blur(2px);
}

/* Slide Card - UPGRADED WITH IMAGE EFFECT */
.slide_card {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Image reflection effect */
.slide_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.1) 100%);
    z-index: 0;
}

.slide_card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    
    z-index: 0;
}

/* Image Container - UPGRADED */
.imgslider {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.imgslider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.slide_item.is--current .imgslider {
    transform: translateY(-10px);
}

.imgslider img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: inline-block;
    filter: invert(1) brightness(1.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.slide_item.is--current .imgslider img {
    transform: scale(1.1);
    filter: invert(1) brightness(1.5) drop-shadow(0 5px 15px rgba(255,255,255,0.3));
}

/* Text - UPGRADED */
.card_title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white !important;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

.h4main {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

/* Enhanced card hover effects */
.slide_card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 120px rgba(0, 109, 119, 0.4);
}

/* Arrows - POSITIONED AT LEFT/RIGHT CENTER */
.slide_arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    pointer-events: none; /* Allow clicks through to arrows */
}

.slide_arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: #006D77 1px solid;
    background: linear-gradient(135deg, #006D77 0%, #83C5BE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 109, 119, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    pointer-events: auto; /* Enable clicks on arrows */
}

.slide_arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
}

.slide_arrow svg {
    width: 24px;
    height: 24px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.slide_arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 109, 119, 0.4);
}

.slide_arrow:hover svg {
    transform: scale(1.2);
}

.slide_arrow.is--disabled-arrow {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    background: linear-gradient(135deg, #cccccc 0%, #eeeeee 100%);
}

.slide_arrow.is--disabled-arrow:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 109, 119, 0.3);
}

/* Position arrows outside cards on desktop */
@media (min-width: 769px) {
    .slide_arrow.is--left {
        position: absolute;
        left: -80px;
    }
    
    .slide_arrow.is--right {
        position: absolute;
        right: -80px;
    }
}

/* Progress Indicators - BELOW CARDS */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 420px; /* Position below cards */
    position: relative;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 109, 119, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: #006D77;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(0, 109, 119, 0.5);
}

.indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 109, 119, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indicator.active::after {
    opacity: 1;
}

/* Adjust for mobile responsiveness */
@media (max-width: 992px) {
    .slider-indicators {
        margin-top: 380px;
    }
    
    .slide_arrow.is--left {
        left: 10px;
    }
    
    .slide_arrow.is--right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .slider-indicators {
        margin-top: 340px;
    }
    
    .slide_arrow {
        width: 50px;
        height: 50px;
    }
    
    .slide_arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .slider-indicators {
        margin-top: 320px;
    }
    
    .slide_arrow {
        width: 45px;
        height: 45px;
    }
    
    .slide_arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}
.slider-track {
  display: flex;
}

.slide {
  flex: 0 0 calc(100% / 6) !important;
}

/* Adjust slide container for proper positioning */
.slide_contain {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide_wrap {
    position: relative;
    height: 400px; /* Fixed height for cards */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add subtle background for better arrow visibility on some cards */
.slide_arrow {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .slide_item {
        width: 280px;
        height: 380px;
    }
    
    .slide_item:nth-child(1) { transform: translateX(-130px) scale(0.85); }
    .slide_item:nth-child(2) { transform: translateX(-65px) scale(0.9); }
    .slide_item:nth-child(4) { transform: translateX(65px) scale(0.9); }
    .slide_item:nth-child(5) { transform: translateX(130px) scale(0.85); }
    .slide_item:nth-child(6) { transform: translateX(195px) scale(0.8); }
}

@media (max-width: 992px) {
    .slide_contain {
        height: 450px;
    }
    
    .slide_item {
        width: 250px;
        height: 350px;
    }
    
    .slide_card {
        padding: 30px 25px;
    }
    
    .card_title {
        font-size: 1.6rem;
    }
    
    .h4main {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .slide_contain {
        height: 400px;
    }
    
    /* Show only 3 cards on mobile */
    .slide_item:nth-child(1),
    .slide_item:nth-child(2),
    .slide_item:nth-child(3) {
        display: block;
    }
    
    .slide_item:nth-child(4),
    .slide_item:nth-child(5),
    .slide_item:nth-child(6) {
        display: none;
    }
    
    .slide_item {
        width: 220px;
        height: 320px;
    }
    
    .slide_card {
        padding: 25px 20px;
    }
    
    .imgslider img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .slide_contain {
        height: 350px;
    }
    
    .slide_item {
        width: 200px;
        height: 300px;
    }
    
    .slide_card {
        padding: 20px 15px;
    }
    
    .card_title {
        font-size: 1.4rem;
    }
    
    .h4main {
        font-size: 1rem;
    }
    
    .slide_arrow {
        width: 60px;
        height: 60px;
    }
}

/* mouckup section css   */
        
/* =============================================== */
/* 3D TABLET MOCKUP ANIMATION - FROM moukup.html */
/* =============================================== */

 .saas-hero-mockup {
  position: relative;
  background: #ffffff;
  padding: 130px 70px;
  overflow: hidden;
}

.saas-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* BLUR BACKGROUNDS */
.saas-bg-blur {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #006d77;
  filter: blur(140px);
  opacity: 0.18;
}

.blur-1 {
  top: -120px;
  left: -120px;
}

.blur-2 {
  bottom: -140px;
  right: -140px;
}

/* LEFT CONTENT */
.saas-text {
  flex: 1;
}

.saas-badge {
  display: inline-block;
  background: rgba(0, 109, 119, 0.12);
  color: #006d77;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.saas-text h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 26px;
}

.saas-text p {
  font-size: 19px;
  color: #475569;
  max-width: 540px;
  margin-bottom: 38px;
}

/* BUTTONS */
.saas-actions {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #006d77;
  color: #fff;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #005b63;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 109, 119, 0.35);
}

.btn-secondary {
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  border-color: #006d77;
  color: #006d77;
}

/* MOCKUP */
.saas-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.saas-visual img {
  max-width: 100%;
  border-radius: 22px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .saas-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .saas-actions {
    justify-content: center;
  }

  .saas-visual img {
    transform: none;
  }
}
   /* img qeiuk veiw */
   /* QUICK VIEW MODAL */
.mockup-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.mockup-modal.active {
  display: block;
}

/* Overlay */
.mockup-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
}

/* Content */
.mockup-modal-content {
  position: relative;
  max-width: 1100px;
  margin: 5vh auto;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.35);
  animation: zoomIn 0.35s ease;
}

.mockup-modal-content img {
  width: 100%;
  border-radius: 14px;
}

/* Close Button */
.mockup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #006d77;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.mockup-close:hover {
  background: #005b63;
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mockup-modal-content {
    margin: 10vh 15px;
  }
}
/* ===== FORCE CURSOR ON TEMPLATE PAGE ===== */
.template-page,
.template-page * {
    cursor: auto !important;
}

/* Text fields ke liye proper cursor */
.template-page input,
.template-page textarea,
.template-page [contenteditable="true"] {
    cursor: text !important;
}

/* Buttons & clickable items */
.template-page button,
.template-page a,
.template-page select {
    cursor: pointer !important;
}
.saas-visual {
  position: relative;
  cursor: pointer;
}

.preview-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 109, 119, 0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.saas-visual:hover .preview-hint {
  opacity: 1;
}
.mockup-card{
  width:620px !important;
  height: 560px !important;                /* SAME CARD SIZE */
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  overflow:hidden;
}

/* IMAGE */
.mockup-image-wrapper{
  height:240px;
  overflow:hidden;
}

.mockup-image-track{
  display:flex;
  /* transition:transform .45s cubic-bezier(.4,0,.2,1); */
}

.mockup-image-track img{
  /* width:100%;
  height: 100%; */
  flex-shrink:0;
  object-fit:cover !important;
}

/* CONTROLS */
.mockup-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  padding:14px 0;
  
}

.mockup-arrow{
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:#0f172a;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.mockup-arrow:disabled{
  opacity:.4;
  cursor:not-allowed;
}
/* moblie responsive css  */
/* =============================================== */
/* MOBILE RESPONSIVENESS FIXES */
/* Applied only for screens up to 768px */
/* =============================================== */

/* 1. Ensure viewport meta tag is in HTML (add if missing) */
/* <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> */

/* 2. Mobile overflow prevention */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on body */
    body, .bodyinght {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Fix section overflow */
    .section, .video-hero-section, .advantages-section, .compensation-section, 
    .team-section, .story-hero-section, .rewards-hero-section, .ceo-survey-section,
    .spot-survey-section, .engagement-hero-section, .floating-showcase {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix navbar mobile menu overflow */
    .nav-links {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix dropdown overflow */
    .dropdown-content {
        max-width: 100vw;
        left: 0;
        right: 0;
        width: auto;
    }
    
    /* Fix slider container overflow */
    .slider-container {
        margin-left: 10px !important;
        margin-right: 10px !important;
        overflow: hidden;
    }
    
    .slider-track {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Fix video/3D container overflow */
    .video-3d-container, .video-player {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }
    
    .video-element, .laptop-element {
        max-width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: contain;
    }
    
    /* Fix marquee overflow */
    .marquee-container {
        width: 100%;
        overflow: hidden;
    }
    
    .marquee-item {
        min-width: 140px;
        margin: 0 10px;
    }
}

/* 3. Touch-friendly elements */
@media (max-width: 768px) {
    /* Ensure buttons are touch-friendly */
    .btn, .btn1, .login-btn, .cta-btn2, .demo-button, .ceo-demo-button,
    .spot-demo-button, .engagement-demo-button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    /* Fix navigation arrows for touch */
    .slider-nav {
        width: 44px;
        height: 44px;
        opacity: 1 !important; /* Always visible on mobile */
    }
    
    /* Fix mobile toggle button */
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 4. Responsive grid and flex fixes */
@media (max-width: 768px) {
    /* Convert grids to single column */
    .results-grid, .features-grid, .pricing-grid,
    .advantages-grid, .team-grid, .comp-cards,
    .ceo-metrics-grid, .spot-metrics-grid, .engagement-metrics,
    .story-content, .rewards-container {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Fix flex containers */
    .video-hero-buttons, .advantages-row, .video-selection {
        flex-direction: column;
        align-items: center;
    }
    
    /* Center align content */
    .center-content, .section-header, .rewards-content,
    .ceo-survey-container, .spot-survey-container, .engagement-container {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix card layouts */
    .slider-card, .result-card, .feature-card, .pricing-card,
    .adv-card, .comp-card, .team-card, .ceo-metric-card,
    .spot-metric-card, .engagement-metric {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* 5. Typography and text wrapping */
@media (max-width: 768px) {
    /* Ensure text doesn't overflow */
    .video-hero-title, .laptop-hero-title, .rewards-headline,
    .ceo-headline, .spot-headline, .engagement-headline {
        font-size: clamp(32px, 8vw, 42px) !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .section-title, .section-titleinsiht, .section-title2,
    .section-title3, .comp-title, .story-title {
        font-size: clamp(28px, 6vw, 36px) !important;
        padding-left: 0 !important;
        text-align: center;
        width: 100%;
    }
    
    .video-hero-subtitle, .section-subtitle, .section-subtitleinght,
    .section-subtitle3, .rewards-tagline, .ceo-description,
    .spot-description, .engagement-description {
        font-size: clamp(16px, 4vw, 18px) !important;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Fix paragraph text */
    p, .center-content p, .story-paragraph, .team-bio,
    .card-description, .result-description, .feature-description {
        font-size: 16px !important;
        line-height: 1.6;
        word-wrap: break-word;
        max-width: 100%;
    }
}

/* 6. Image and media scaling */
@media (max-width: 768px) {
    /* Make all images responsive */
    img, .float-img, .team-image, .story-image img,
    .marquee-logo, .card-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Fix floating showcase images */
    .float-img {
        position: relative !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .img-1, .img-2 {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 20px auto;
        width: 80% !important;
    }
    
    /* Fix background images */
    .video-hero-bg, .laptop-hero-bg, .rewards-hero-bg,
    .ceo-survey-bg, .spot-survey-bg, .engagement-hero-bg {
        background-size: cover !important;
    }
}

/* 7. PDF/DOCX and iframe fixes (CRITICAL) */
@media (max-width: 768px) {
    /* Ensure all iframes scale properly */
    iframe, object, embed,
    [data-pdf-viewer], [data-docx-viewer] {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 500px;
        border: none;
        display: block;
    }
    
    /* PDF/DOCX specific scaling */
    .pdf-container, .docx-container,
    .file-preview-container, .document-viewer {
        width: 100% !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure no horizontal scroll in documents */
    .pdf-viewer, .docx-viewer {
        transform-origin: top left;
        transform: scale(0.95);
        width: 105% !important; /* Compensate for scaling */
    }
}

/* 8. Modal and popup fixes */
@media (max-width: 768px) {
    /* Ensure modals are mobile-friendly */
    .modal, .modal-content, .modal-dialog {
        max-width: 95vw !important;
        width: 95vw !important;
        margin: 10px auto !important;
        padding: 15px !important;
    }
    
    /* Prevent body scroll when modal is open */
    body.modal-open {
        position: fixed;
        width: 100%;
    }
}

/* 9. Form element fixes */
@media (max-width: 768px) {
    /* Ensure forms are touch-friendly */
    input, textarea, select, .input-wrapper input {
        font-size: 16px !important; /* Prevents iOS zoom */
        min-height: 44px;
        padding: 12px 15px !important;
    }
    
    .login-container, .form-container {
        width: 95% !important;
        padding: 20px !important;
        margin: 20px auto;
    }
}

/* 10. Utility fixes for very small screens */
@media (max-width: 480px) {
    /* Extra small screen adjustments */
    .floating-showcase {
        padding: 60px 15px !important;
    }
    
    .center-content {
        padding: 20px !important;
        margin: 0 10px;
    }
    
    .slider-card, .result-card, .feature-card {
        padding: 20px 15px !important;
    }
    
    /* Reduce padding further */
    .section, .video-hero-section, .advantages-section {
        padding: 60px 15px !important;
    }
    
    /* Fix extremely small text */
    .time-display, .metric-description, .ceo-metric-trend,
    .spot-metric-trend, .footer-links a {
        font-size: 14px !important;
    }
}

/* 11. Horizontal scroll elimination */
@media (max-width: 768px) {
    /* Final safety net to prevent horizontal scroll */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    * {
        max-width: 100vw;
    }
    
    /* Fix any remaining overflow issues */
    div, section, article, header, footer, main {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}
/* =============================================== */
/* MOBILE RESPONSIVE FOOTER FIXES */
/* Only for screens up to 768px */
/* =============================================== */

@media (max-width: 768px) {
    /* Fix footer padding and overflow */
    .footer {
        padding: 50px 20px 20px !important;
        overflow-x: hidden;
        width: 100%;
    }
    
    .footer-container {
        padding: 0 20px !important;
        max-width: 100%;
    }
    
    /* Convert grid to single column */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    /* Center align company info */
    .footer-company {
        padding-right: 0 !important;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100% !important;
    }
    
    /* Center social links */
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .social-link {
        width: 44px !important; /* Touch-friendly */
        height: 44px !important;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Fix links columns */
    .footer-links-column {
        text-align: center !important;
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 18px !important;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: #006D77;
    }
    
    /* Fix links list */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 15px !important;
        padding: 8px 0;
        display: block;
    }
    
    /* Fix contact info */
    .footer-contact {
        text-align: center !important;
    }
    
    .contact-info {
        gap: 15px !important;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    /* Fix newsletter form */
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .newsletter-input {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    .newsletter-btn {
        width: 100% !important;
        padding: 14px !important;
        min-height: 48px;
    }
    
    /* Fix bottom bar */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 30px !important;
        text-align: center;
    }
    
    .copyright {
        font-size: 14px !important;
        text-align: center;
        width: 100%;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 14px !important;
        padding: 5px 10px;
    }
    
    /* Fix spacing between columns */
    .footer-links-column:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }
    
    /* Ensure no horizontal scroll */
    .footer * {
        max-width: 100%;
    }
    
    /* Fix very small screens */
    @media (max-width: 480px) {
        .footer {
            padding: 40px 15px 20px !important;
        }
        
        .footer-grid {
            gap: 30px;
        }
        
        .footer-logo img {
            height: 40px;
        }
        
        .footer-description {
            font-size: 14px !important;
        }
        
        .footer-title {
            font-size: 16px !important;
        }
        
        .footer-links a {
            font-size: 14px !important;
        }
        
        .copyright {
            font-size: 13px !important;
            line-height: 1.5;
        }
    }
}

/* Prevent horizontal scroll in footer on all mobile */
@media (max-width: 768px) {
    .footer,
    .footer-container,
    .footer-grid,
    .footer-company,
    .footer-links-column,
    .newsletter-form {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}
/* ===============================
   GLOBAL MOBILE NAV FIX
   =============================== */
@media (max-width: 768px) {

  /* Main mobile menu */
  .nav-links {
    display: none;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  /* Make sure links never hide */
  .nav-links a {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  /* Dropdown RIGHT SIDE SLIDE */
  .dropdown-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;

    background: inherit; /* original bg safe */
    z-index: 9999;

    display: block;
    padding: 24px;
    overflow-y: auto;

    transition: right 0.35s ease;
  }

  .dropdown-content.show {
    right: 0;
  }
}
/* =============================================== */
/* MOBILE NAVBAR TOGGLE CSS FIXES */
/* =============================================== */

@media (max-width: 768px) {
    /* Ensure mobile toggle is visible and clickable */
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        z-index: 1002;
        background: none;
        border: none;
        color: #333;
        font-size: 24px;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .navbar.scrolled .mobile-toggle {
        color: #ffffff;
    }
    
    /* Fix nav links positioning */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        z-index: 1001;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e5e5;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    /* Fix navbar items */
    .nav-links li {
        width: 100%;
        text-align: left;
        opacity: 1;
        transform: none;
        animation: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: #333 !important;
        font-weight: 500;
        width: 100%;
    }
    
    .navbar.scrolled .nav-links li a {
        color: #333 !important;
    }
    
    /* Fix dropdowns */
    .dropdown {
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown .arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown-content {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding-left: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .dropdown-content.show {
        display: block !important;
    }
    
    .dropdown-content a {
        color: #666 !important;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 15px;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none; /* Disable hover on mobile */
    }
    
    /* Fix login button in mobile menu */
    .nav-actions {
        display: none;
    }
    
    /* Add mobile login button in menu */
    .nav-links li:last-child {
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
    
    .nav-links li:last-child a {
        background: #006d77;
        color: white !important;
        padding: 14px 20px;
        border-radius: 6px;
        text-align: center;
        font-weight: 600;
        margin-top: 10px;
    }
    
    /* Fix navbar container on mobile */
    .nav-container {
        padding: 10px 20px !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Fix for very small screens */
@media (max-width: 480px) {
    .nav-links {
        padding: 15px;
    }
    
    .nav-links li a {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .mobile-toggle {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
}
/* Responsive Styles for Capability Cards Only */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .capability-card {
        padding: 20px 15px;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .card-number {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .card-content {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Mobile Styles (480px - 768px) */
@media (max-width: 768px) {
    .capabilities-container {
        padding: 0 20px;
    }
    
    .capability-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .capability-card {
        padding: 20px;
        min-height: 120px;
        transition: all 0.3s ease;
    }
    
    .section-header {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .section-heading {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .card-number {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .card-content {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
    .capabilities-container {
        padding: 0 15px;
    }
    
    .capability-card {
        padding: 15px;
        min-height: 110px;
    }
    
    .card-number {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .card-content {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Card Hover Effects for Mobile - Reduced intensity */
@media (max-width: 768px) {
    .capability-card {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    
    .capability-card:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 109, 119, 0.1);
    }
    
    /* Adjust GSAP hover effects for mobile */
    .capability-card:hover .card-number,
    .capability-card:active .card-number {
        color: #006D77;
        transform: scale(1.1);
    }
    
    .capability-card:hover .card-content,
    .capability-card:active .card-content {
        color: #006D77;
    }
}

/* Ensure cards are properly spaced on all sections */
.capability-section {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .capability-section {
        margin-bottom: 40px;
    }
    
    /* Stats Section Cards - if you want them responsive too */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* Fix card layout for different number of cards */
@media (max-width: 768px) {
    /* For sections with 3 cards (like Performance Management) */
    .capability-section:nth-child(3) .capability-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* For sections with 4 cards (like Talent Management) */
    .capability-section:nth-child(4) .capability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* All cards single column on very small screens */
    .capability-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    /* Reduce spacing */
    .capability-section {
        margin-bottom: 35px;
    }
}

/* Improve touch interaction */
@media (max-width: 768px) {
    .capability-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}
/* Responsive Styles for Insights Page Cards Only */

/* Insights Container */
.insights-container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-titleinsiht {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitleinght {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .insights-container {
        padding: 30px 20px;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .insight-card {
        margin-bottom: 0;
    }
    
    .section-titleinsiht {
        font-size: 2.5rem;
    }
    
    .section-subtitleinght {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px;
        margin: 60px 0 40px;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
        max-width: 600px;
    }
    
    .newsletter-form {
        max-width: 500px;
    }
}

/* Mobile Styles (480px - 768px) */
@media (max-width: 768px) {
    .insights-container {
        padding: 25px 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-titleinsiht {
        font-size: 2rem;
        padding-top: 20px;
    }
    
    .section-subtitleinght {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .insights-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .insight-card {
        width: 100%;
        margin: 0;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .card-date {
        font-size: 0.85rem;
    }
    
    /* Newsletter Section */
    .newsletter-section {
        padding: 30px 20px;
        margin: 50px 0 40px;
    }
    
    .newsletter-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .newsletter-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .newsletter-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Pagination */
    .pagination {
        gap: 8px;
        margin-top: 40px;
    }
    
    .page-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
    .insights-container {
        padding: 20px 10px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-titleinsiht {
        font-size: 1.8rem;
        padding-top: 15px;
    }
    
    .section-subtitleinght {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .insights-grid {
        gap: 15px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-category {
        font-size: 0.75rem;
        padding: 4px 12px;
        left: 15px;
        top: 15px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .card-footer {
        gap: 8px;
    }
    
    .card-date {
        font-size: 0.8rem;
    }
    
    .card-link {
        font-size: 0.9rem;
    }
    
    /* Newsletter Section */
    .newsletter-section {
        padding: 25px 15px;
        margin: 40px 0 35px;
    }
    
    .newsletter-title {
        font-size: 1.4rem;
    }
    
    .newsletter-description {
        font-size: 0.9rem;
    }
    
    /* Pagination */
    .pagination {
        gap: 6px;
        margin-top: 35px;
    }
    
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Card Hover Effects for Mobile - Reduced intensity */
@media (max-width: 768px) {
    .insight-card {
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .insight-card:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 109, 119, 0.12);
    }
    
    /* Adjust image hover effects for mobile */
    .insight-card:active .card-image img {
        transform: scale(1.03);
    }
}

/* Improve touch interaction for mobile */
@media (max-width: 768px) {
    .insight-card,
    .newsletter-button,
    .page-link {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ensure minimum touch target size */
    .card-link,
    .newsletter-button,
    .page-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Fix image responsiveness */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Ensure all images maintain aspect ratio */
@media (max-width: 768px) {
    .card-image {
        position: relative;
        overflow: hidden;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Pagination responsive adjustments */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-link {
        margin: 2px;
    }
}

/* Newsletter form responsive tweaks */
@media (max-width: 768px) {
    .newsletter-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
/* Responsive Styles for About Page Body Content Only */

/* Main container for all body content */


/* Marquee Section */
.marquee-section {
    padding: 60px 0;
    background: white;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Team Section */
.section {
    padding: 80px 0;
}

.team-section {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-titleabout {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitleabout {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 60px;
}

.team-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.team-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.team-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.company-logo {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    /* Hero Section */
    .story-hero-section {
        padding: 60px 0;
    }
    
    .story-content {
        gap: 40px;
        padding: 0 30px;
    }
    
    .story-title {
        font-size: 3.8rem;
    }
    
    .story-paragraph {
        font-size: 1.05rem;
    }
    
    .story-highlight {
        padding: 20px;
        font-size: 1rem;
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-titleabout {
        font-size: 2.5rem;
    }
    
    .section-subtitleabout {
        font-size: 1.05rem;
    }
    
    .team-card {
        padding-bottom: 60px;
    }
    
    /* Marquee Section */
    .marquee-item {
        width: 130px;
        height: 70px;
    }
    
    .marquee-track {
        gap: 30px;
    }
}

/* Mobile Styles (480px - 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .story-hero-section {
        padding: 40px 0;
    }
    
    .story-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .story-text-container {
        padding: 0;
        order: 2;
    }
    
    .story-image-container {
        order: 1;
        width: 100%;
    }
    
    .story-title {
        font-size: 3.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .story-paragraph {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .story-highlight {
        padding: 18px;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }
    
    .story-image {
        border-radius: 10px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .story-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    /* Marquee Section */
    .marquee-section {
        padding: 40px 0;
    }
    
    .marquee-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .marquee-item {
        width: 120px;
        height: 60px;
    }
    
    /* Team Section */
    .section {
        padding: 60px 0;
    }
    
    .team-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-titleabout {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .section-subtitleabout {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-card {
        padding-bottom: 60px;
    }
    
    .team-image-container {
        height: 180px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .team-bio {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .company-logo {
        left: 20px;
        bottom: 20px;
        width: 35px;
        height: 35px;
    }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
    /* Hero Section */
    .story-hero-section {
        padding: 30px 0;
    }
    
    .story-content {
        padding: 0 15px;
        gap: 25px;
    }
    
    .story-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .story-highlight {
        padding: 15px;
        font-size: 0.9rem;
        line-height: 1.5;
        border-left-width: 3px;
    }
    
    .story-image {
        border-radius: 8px;
    }
    
    .story-image img {
        max-height: 250px;
    }
    
    /* Marquee Section */
    .marquee-section {
        padding: 30px 0;
    }
    
    .marquee-track {
        gap: 15px;
        animation-duration: 15s;
    }
    
    .marquee-item {
        width: 100px;
        height: 50px;
    }
    
    /* Team Section */
    .section {
        padding: 40px 0;
    }
    
    .team-section {
        padding: 30px 0;
    }
    
    .section-titleabout {
        font-size: 1.8rem;
    }
    
    .section-subtitleabout {
        font-size: 0.9rem;
    }
    
    .team-grid {
        gap: 15px;
        max-width: 100%;
    }
    
    .team-card {
        padding-bottom: 50px;
    }
    
    .team-image-container {
        height: 160px;
    }
    
    .team-info {
        padding: 15px;
    }
    
    .team-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .team-bio {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .company-logo {
        left: 15px;
        bottom: 15px;
        width: 30px;
        height: 30px;
    }
}

/* Ensure all images are responsive */
.story-image img,
.team-image,
.company-logo img,
.marquee-logo {
    max-width: 100%;
    height: auto;
}

/* Improve touch interaction for mobile */
@media (max-width: 768px) {
    .team-card,
    .story-highlight {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove hover effects on mobile */
    .story-image:hover img {
        transform: none;
    }
    
    .story-image:active img {
        transform: scale(1.02);
    }
    
    .team-card:active {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
}

/* Container responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
/* Responsive Styles for About Page Hero Section Only */

/* Hero Section with Full Background */
.story-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.92) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Add a subtle pattern overlay for better visual appeal */
.story-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23006d77' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text-container {
    padding-right: 20px;
}

.story-title {
    font-size: 3.5rem;
    color: #006D77;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #006D77;
    border-radius: 2px;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.story-highlight {
    background: linear-gradient(135deg, #006D77 0%, #83C5BE 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0, 109, 119, 0.2);
    position: relative;
    border-left: 5px solid #E29578;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.story-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.story-image-container {
    position: relative;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 109, 119, 0.25);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 109, 119, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    position: relative;
    z-index: 2;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .story-hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .story-content {
        gap: 50px;
    }
    
    .story-title {
        font-size: 3rem;
    }
    
    .story-paragraph {
        font-size: 1.05rem;
    }
    
    .story-highlight {
        padding: 25px;
        font-size: 1.05rem;
    }
    
    .story-image {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .story-hero-section {
        min-height: auto;
        padding: 40px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-text-container {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .story-title {
        font-size: 2.5rem;
        padding-bottom: 15px;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .story-highlight {
        padding: 25px 20px;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 100%;
        box-shadow: 0 15px 30px rgba(0, 109, 119, 0.15);
    }
    
    .story-highlight::before {
        left: 15px;
        font-size: 4rem;
    }
    
    .story-image {
        border-radius: 15px;
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transform: none;
    }
    
    .story-image:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .story-image img {
        max-height: 400px;
        object-fit: cover;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .story-hero-section {
        padding: 30px 0;
    }
    
    .story-content {
        gap: 30px;
    }
    
    .story-title {
        font-size: 3rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .story-highlight {
        padding: 20px 15px;
        font-size: 0.95rem;
        line-height: 1.5;
        border-left-width: 4px;
    }
    
    .story-highlight::before {
        left: 10px;
        font-size: 3rem;
    }
    
    .story-image {
        border-radius: 12px;
    }
    
    .story-image img {
        max-height: 300px;
    }
}

/* Ensure full height on very large screens */
@media (min-width: 1200px) {
    .story-hero-section {
        min-height: calc(100vh - 80px);
    }
}

/* Touch-friendly optimizations for mobile */
@media (max-width: 768px) {
    .story-highlight {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove complex hover effects on mobile */
    .story-image:hover {
        transform: none;
    }
    
    .story-image:active {
        transform: scale(0.98);
    }
    
    .story-image img:hover {
        transform: none;
    }
    
    .story-highlight:hover {
        transform: none;
    }
    
    .story-highlight:active {
        transform: scale(0.98);
    }
}

/* Improve image loading and display */
.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

/* Animation for better visual appeal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-text-container {
    animation: fadeInUp 0.8s ease forwards;
}

.story-image-container {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Container responsive padding */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Add subtle background animation */
@keyframes subtleBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.story-hero-section {
    background-size: 400% 400%;
    animation: subtleBackground 20s ease infinite;
}

/* Optimize for performance on mobile */
@media (max-width: 768px) {
    .story-hero-section {
        animation: none;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
}