/*
 * Zeptor Stylesheet
 * Supports Dark Mode
 * - Dark mode: Gradient header, dark background, gradient CTA
 * - Smooth animations and shadows
 * - Gradient stroke effect on hover for cards
 */

/* Custom CSS Variables */
:root {
    --primary-color: #008D96;
    --background-color: #121621;
    --text-color: #f0f0f0;
    --subtitle-color: #aeb4c0;
    --card-bg: #1e2637;
    --card-border: #3b4c6b;
    --nav-scroll-bg: #1e2637;
    --nav-scroll-text: #f0f0f0;
    --hero-gradient-start: #008D96;
    --text-primary: #008D96;
    --hero-gradient-end: #111827;
    --light-section-bg: #1a2334;
    --light-section-text: #f0f0f0;
    --testimonial-bg: #1e2637;
    --testimonial-text: #f0f0f0;
    --testimonial-subtitle: #aeb4c0;
    --nav-megamenu-bg: #1e2637;
    --nav-megamenu-text: #f0f0f0;
    --nav-megamenu-header: #aeb4c0;
    --nav-link-hover-border: #008D96;
    --gradient-stroke: linear-gradient(45deg, #008D96, #006B73);
    --bg-white-nav: #ffffff;
    --nav-white-bg-text: #717d7e;
    --chat-primary-color: #008D96;
}

/* Base Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
.text-primary{
    color: var(--text-primary) !important;
}
/* Dark/Light Mode Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--primary-color);
}

.navbar.scrolled .theme-toggle-btn {
    color: var(--nav-scroll-text);
}

/* Header and Navbar */
.header {
    transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.navbar {
    padding: 0.64rem 0;
    background-color: rgba(255, 255, 255, 0.4);
    /* white transparent */
    box-shadow: none;
    transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out, padding 0.5s ease-in-out;
}

body.dark-mode .navbar {
    background-color: rgba(255, 255, 255, 1);
}

.navbar-brand img {
    height: 44px;
    transition: filter 0.5s ease-in-out;
}

/* Right align the navigation menu */
.navbar-nav {
    margin-left: auto !important;
}

.navbar-nav .nav-link {
    color: var(--nav-white-bg-text);
    font-weight: 500;
    position: relative;
    transition: color 0.5s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Smooth Hover Effect for Nav Links */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--nav-link-hover-border);
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Font Awesome Arrow for Megamenu */
.nav-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease-in-out;
}

.nav-item .nav-link.active .nav-arrow,
.nav-item.dropdown-hover-content:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Main and Hero Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #299e90;
    border-color: #299e90;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 141, 150, 0.4);
}

.btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Navbar on Scroll */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

body.dark-mode .navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
    color: var(--nav-white-bg-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--bg-white-nav);
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

body.dark-mode .navbar.scrolled .navbar-brand img {
    background-color: transparent;
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.dark-mode .navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 240, 240, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-item {
    margin-right: 20px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

/* Megamenu Container */
.megamenu-li .megamenu {
    display: none;
    max-width: 900px;
    width: 900px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: var(--nav-megamenu-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    visibility: hidden;
    z-index: 1000;
}

.megamenu-li:hover .megamenu,
.megamenu-li .megamenu.show {
    display: block;
    opacity: 1;
    transform: translateX(-10%) translateY(0);
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

@media (max-width: 991.98px) {
    .megamenu-li .megamenu {
        width: 100%;
        left: 0;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border: none;
    }
}

/* Megamenu Dropdown Items */
.megamenu .dropdown-header {
    color: var(--nav-megamenu-header);
    font-weight: 600;
    font-size: 0.9rem;
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 10px;
}

.megamenu .dropdown-item {
    color: var(--nav-megamenu-text);
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.megamenu .dropdown-item:hover {
    background-color: rgba(0, 141, 150, 0.1);
    color: var(--primary-color);
}

/* Login Dropdown Styling */
.dropdown-menu {
    border-radius: 10px;
    background-color: var(--nav-megamenu-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--card-border);
}

.dropdown-item {
    color: var(--nav-megamenu-text);
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(0, 141, 150, 0.1);
    color: var(--primary-color);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle i.fa-chevron-down {
    margin-left: 0.5rem;
    transition: transform 0.3s ease-in-out;
}

.dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 0 3rem 0;
    background: radial-gradient(circle at 50% 150%, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%) !important;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: clamp(2.26rem, 2vw, 1.84rem);
    max-width: 960px;
    margin: 0 auto 3rem;
    color: var(--subtitle-color);
}

.btn-hero {
    padding: 14px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-explore {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-explore:hover {
    background-color: #299e90;
    border-color: #299e90;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 141, 150, 0.4);
}

.btn-start {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-start:hover {
    background-color: rgba(0, 141, 150, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 141, 150, 0.1);
}

.trusted-by {
    margin-top: 5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--subtitle-color);
}

.badge-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body:not(.dark-mode) .badge-card:hover {
    border: 2px solid transparent;
    border-image: var(--gradient-stroke) 1;
}

.badge-card h5 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: var(--text-color);
}

/* Pricing Section Cards */
.pricing-section {
    background: var(--background-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pricing-section .feature-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 141, 150, 0.08), 0 1.5px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s cubic-bezier(.22, 1, .36, 1), border 0.35s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.pricing-section .feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 141, 150, 0.18), 0 2px 16px rgba(0, 0, 0, 0.08);
    /* border-image: var(--gradient-stroke) 1; */
    border-width: 2.5px;
    border-style: solid;
    border: 2px solid var(--chat-primary-color);
}

.pricing-section .feature-card::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background: var(--gradient-stroke);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
    transition: opacity 0.4s;
}

.pricing-section .feature-card:hover::before {
    opacity: 0.18;
}

.pricing-section .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.pricing-section .feature-card ul {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-section .feature-card li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.pricing-section .feature-card li p {
    margin: 0;
}

.pricing-section .feature-card:hover li {
    color: var(--primary-color);
}

.pricing-section .feature-card.recommended {
    border: 2.5px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 141, 150, 0.22), 0 2px 16px rgba(0, 0, 0, 0.10);
    position: relative;
}

.pricing-section .feature-card.recommended::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
}

.pricing-section .badge {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3em 0.8em;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    margin-left: 0.5em;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .pricing-section .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-section .feature-title {
        font-size: 1.2rem;
    }

    .pricing-section .feature-card {
        padding: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
}

.testimonials-section .section-title-dark {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.testimonials-section .section-subtitle-dark {
    font-size: 2.4rem !important;
    color: var(--subtitle-color);
}
.section-subtitle1-dark {
    font-size: 1.24rem !important;
    color: var(--subtitle-color);
}

.btn-testimonial-contact {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-testimonial-contact:hover {
    background-color: #299e90;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 141, 150, 0.4);
}

.testimonials-section .slider-nav .btn {
    border-color: var(--text-color);
    color: var(--text-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.testimonials-section .slider-nav .btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.image-gallery-container {
    overflow: hidden;
    position: relative;
    padding-bottom: 2rem;
}

.image-gallery {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: flex-grow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease;
    height: 400px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 141, 150, 0.3);
}

body.dark-mode .gallery-item {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

body:not(.dark-mode) .gallery-item:hover {
    border: 2px solid transparent;
    border-image: var(--gradient-stroke) 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.5s ease;
}

.gallery-item {
    flex-grow: 0;
    width: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.gallery-item.active {
    flex-grow: 1;
    width: 1000px;
    filter: none;
    opacity: 1;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.gallery-item.active .caption {
    opacity: 1;
}

.caption .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.caption .author {
    color: #fff;
}

/* Problem Section */
.problem-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
}

.problem-section .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.problem-section .problem-list p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--subtitle-color);
}

/* Solution Section */
.solution-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
}

.solution-section .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.solution-section .solution-list p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--subtitle-color);
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
}

.how-it-works-section .section-title-dark {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.how-it-works-section .feature-card {
    border-radius: 10px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.how-it-works-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body:not(.dark-mode) .how-it-works-section .feature-card:hover {
    border: 2px solid transparent;
    border-image: var(--gradient-stroke) 1;
}

.how-it-works-section .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: transparent;
}

.how-it-works-section .icon-box i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.how-it-works-section .feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Outcomes Section */
.outcomes-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
}

.outcomes-section .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
}

.outcomes-section .outcomes-list li {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--subtitle-color);
}

.outcomes-section .outcomes-list i {
    color: var(--primary-color);
}

/* CTA Band */
.cta-band {
    background: radial-gradient(circle at 50% 150%, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: var(--text-color);
    padding: 5rem 0;
    transition: background 0.5s ease;
}

.cta-band .cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-color);
}

.cta-band .btn-hero {
    min-width: 200px;
    font-size: 1rem;
}

/* Footer Styling */
.footer {
    background-color: var(--light-section-bg);
    color: var(--light-section-text);
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
}

.footer .copyright-text,
.footer .footer-link {
    color: var(--light-section-text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-link:hover {
    color: var(--primary-color);
}

.footer .social-icon {
    font-size: 1.5rem;
    color: #0077B5;
    transition: color 0.3s ease;
}

.footer .social-icon:hover {
    color: #005582;
}


/* 1. Main Bubble Style and Position */
.speech-bubble {
    position: fixed;
    bottom: 100px;
    right: 1.5%;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 18px;
    /* Use the border color for the shadow for consistency */
    box-shadow: 0 6px 24px rgba(0, 137, 149, 0.3); 
    font-size: 1.1rem;
    z-index: 2000;
    /* Remove original pulse to show the new 'in-and-out' effect */
    animation: pop-in 0.5s cubic-bezier(.22, 1, .36, 1) forwards, 
               pulse-fade 2s infinite 0.5s ease-in-out; 
    opacity: 0; /* Start invisible for the 'pop-in' animation */
}

/* 2. Arrow Border (The larger, outer triangle) */
.speech-bubble::after {
    content: '';
    position: absolute;
    /* Anchor to the bottom edge of the bubble */
    bottom: -15px; 
    /* Horizontal alignment (adjust 12% to match the final chat button) */
    right: 12%; 
    width: 0;
    height: 0;
    /* KEY CHANGE: Use border-top for a DOWN-pointing arrow (border color) */
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--border-color); /* This is the arrow's border */
    z-index: 1999; /* Below the main bubble but above other elements */
}

/* 3. Arrow Fill (The smaller, inner triangle) */
.speech-bubble::before {
    content: '';
    position: absolute;
    /* Position slightly inside the border triangle */
    bottom: -13px; 
    right: 13.5%; /* Adjust slightly to center within the border */
    width: 0;
    height: 0;
    /* KEY CHANGE: Use border-top for a DOWN-pointing arrow (fill color) */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 13px solid var(--primary-color); /* This is the arrow's fill */
    z-index: 2001; /* Place on top of the border, below the text */
}

/* The arrow now points to the bottom-right corner of the main bubble. */

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9); /* Start low and small */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* End in final position, full size */
    }
}
@keyframes pulse-fade {
    0% {
        box-shadow: 0 6px 24px rgba(0, 137, 149, 0.3);
    }
    50% {
        /* Lighter shadow and slightly further blur */
        box-shadow: 0 8px 30px rgba(0, 137, 149, 0.6); 
    }
    100% {
        box-shadow: 0 6px 24px rgba(0, 137, 149, 0.3);
    }
}

/* Chat Button */
.chat-button-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid #4db6ac;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s, transform 0.2s, opacity 0.7s cubic-bezier(.22, 1, .36, 1);
    z-index: 3;
}

.chat-button:hover {
    background-color: #2bbbad;
    transform: scale(1.05);
}

.chat-button i {
    color: #ffffff;
    font-size: 24px;
    z-index: 4;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.5) 10%, rgba(38, 166, 154, 0.1) 80%);
    border: 1px solid rgba(178, 223, 219, 0.7);
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    pointer-events: none;
    z-index: 2;
}

.chat-button.ripple-active .ripple {
    animation: ripple 2.5s infinite ease-in-out;
}

.chat-button.ripple-active .ripple:nth-child(2) {
    animation-delay: 0.5s;
    border-color: rgba(178, 223, 219, 0.5);
    background: radial-gradient(circle, rgba(100, 255, 218, 0.4) 10%, rgba(38, 166, 154, 0.05) 80%);
}

.chat-button.ripple-active .ripple:nth-child(3) {
    animation-delay: 1s;
    border-color: rgba(178, 223, 219, 0.3);
    background: radial-gradient(circle, rgba(100, 255, 218, 0.3) 10%, rgba(38, 166, 154, 0) 80%);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.9;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0.2;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.9;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .chat-button {
        background-color: var(--primary-color);
        border-color: #80cbc4;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .ripple {
        background: radial-gradient(circle, rgba(178, 223, 219, 0.6) 10%, rgba(38, 166, 154, 0.2) 80%);
        border-color: rgba(224, 242, 241, 0.8);
    }
}

/* Light mode adjustments */
@media (prefers-color-scheme: light) {
    .chat-button {
        background-color: var(--primary-color);
        border-color: #4db6ac;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .ripple {
        background: radial-gradient(circle, rgba(100, 255, 218, 0.5) 10%, rgba(38, 166, 154, 0.1) 80%);
        border-color: rgba(178, 223, 219, 0.7);
    }
}

/* Responsive hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 0 3rem 0;
    background: radial-gradient(circle at 50% 150%, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%) !important;
    transition: background 0.5s ease;
}

@media (max-width: 1200px) {
    .hero-section {
        padding-top: 6rem;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 5rem;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 4rem;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 3.5rem;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Hero section for internal pages */
.hero-product-overview {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 5rem 0 3rem 0;
    background: radial-gradient(circle at 50% 150%, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%) !important;
    transition: background 0.5s ease;
}

@media (max-width: 991px) {
    .hero-product-overview {
        padding-top: 4rem;
        min-height: 70vh;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-product-overview {
        padding-top: 3rem;
        min-height: 50vh;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-product-overview {
        padding-top: 2.5rem;
        min-height: 40vh;
        align-items: flex-start;
    }
}

/* Chat Widget Container */
/* .chat-widget-container {
    display: none;
    z-index: 1000;
}

.chat-widget-container.visible {
    display: block !important;
}

.chat-widget-panel {
    width: 380px;
    height: 500px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chat-widget-container.dark-theme .chat-widget-panel {
    background: var(--card-bg-dark);
}

.chat-header {
    background: var(--chat-primary-color);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title h4 {
    margin: 0;
    font-size: 16px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.messages-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 12px;
    background: #e9ecef;
}

.bot-message .message-bubble {
    background: var(--chat-primary-color);
    color: white;
}

.user-message .message-bubble {
    background: #007bff;
    color: white;
}

.message-time {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.chat-input-wrapper {
    display: flex;
    padding: 10px;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 20px;
}

.send-btn,
.minimize-btn,
.close-btn {
    background: var(--chat-primary-color);
    border: none;
    color: white;
}

.confirmation-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.confirmation-dialog {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cancel-btn,
.confirm-btn {
    padding: 8px 16px;
    border-radius: 8px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
}

.confirm-btn {
    background: var(--chat-primary-color);
    color: white;
}

/* Position classes */
.position-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.position-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}

.position-top-left {
    position: fixed;
    top: 20px;
    left: 20px;
} */

/* Timeline Graphic (for /company) */
.story-section .visual img {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-section .visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    z-index: 0;
}

.story-section .visual img {
    z-index: 1;
}

/* Value and Benefit Cards */
.value-card,
.benefit-card,
.partner-type-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--card-bg);
}

.value-card:hover,
.benefit-card:hover,
.partner-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.value-card .card-body i,
.benefit-card .card-body i,
.partner-type-card .card-body i {
    color: var(--primary-color) !important;
}

.value-card .card-title,
.benefit-card .card-title,
.partner-type-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card .card-text,
.benefit-card .card-text,
.partner-type-card .card-text {
    font-size: 1rem;
    color: var(--subtitle-color);
}

/* Partner Nodes Animation (for /partners) */
.hero-visual img {
    max-width: 100%;
    animation: orbit 10s linear infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(10px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(10px) rotate(-360deg);
    }
}

/* Contact Form Styling */
.contact-form-section .card {
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.contact-form-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(0, 212, 255, 0.1));
    z-index: 0;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 8px;
    border: 1px solid var(--card-border);
    padding: 0.75rem;
    z-index: 1;
    position: relative;
}

.contact-form-section .form-label {
    font-weight: 500;
    color: var(--text-color);
}

.contact-form-section .btn-start {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.1rem;
}

.contact-form-section .text-success {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Empty State Card (for /careers) */
.openings-section .card {
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.openings-section .card-body {
    padding: 2rem;
    color: var(--text-color);
}

/* Social Icons (for /careers) */
.stay-connected-section .social-icon {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.stay-connected-section .social-icon:hover {
    color: #299e90;
}

/*
 * Ribbon Animation Styles (Matching provided screenshot)
 */
#bubbleRibbonSvg {
    position: fixed;
    /* Use fixed position since it animates across the viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* Allows user to interact with page beneath the ribbon */
    z-index: 1000;
    /* Must be above most page content */
    display: none;
    /* Hidden by default, shown by JS */
}

#bubbleRibbonPath {
    /* Use CSS variables for color consistency */
    stroke: var(--primary-color);
    fill: none;
    /* Essential styles for a thick, rounded ribbon that matches the screenshot */
    stroke-linecap: round;
    /* Ensures rounded ends */
    stroke-linejoin: round;
    stroke-width: 8px;
    /* Base thickness, will be controlled by JS for animation */

    /* Add a vibrant drop shadow/glow matching the primary color */
    filter: drop-shadow(0 0 6px var(--primary-color)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
    transition: filter 0.2s ease;
}

/* Chat Toggle Button */
.chat-toggle-button {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.chat-toggle-button.reveal {
    opacity: 1;
    transform: scale(1);
}

.toggle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a9d8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 141, 150, 0.3);
    position: relative;
    color: white;
    font-size: 24px;
}

.toggle-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 141, 150, 0.4);
}

.toggle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    border: 2px solid white;
}

/* Ensure PrimeIcons are loaded */
@import url('https://primefaces.org/primereact/showcase/resources/primereact/css/primereact.min.css');

.chat-header {
    background: var(--chat-primary-color) !important;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Base dropdown styles for smooth transitions */
.dropdown-hover-content .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0;
}

/* Force the dropdown to open on hover with smooth animation */
.dropdown-hover-content:hover>.dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background-color: var(--nav-megamenu-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Product Dropdown Container */
/* Enhanced Product Dropdown Style - Append to existing CSS */

/* Enhanced Product Dropdown Style - Single Vertical List with Hover Sub-menus */

/* Product Dropdown Container */
.dropdown-menu.product-content {
    min-width: 200px; /* Minimal width for initial list */
    padding: 10px 0;
    background: linear-gradient(135deg, #1a2a44 0%, #1e3a5f 100%);
    color: #e0e7ff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
}

/* List Styling */
.product-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-tab-item {
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    color: #b0c4de;
    margin-bottom: 5px;
}

.product-tab-item:hover,
.product-tab-item.active {
    background: linear-gradient(90deg, rgba(0, 141, 150, 0.2) 0%, rgba(0, 141, 150, 0.1) 100%);
    color: #008D96;
    border-left: 4px solid #008D96;
    transform: translateX(5px);
}

/* Hover-triggered Sub-menu Box */
.product-sub-menu {
    display: none;
    position: absolute;
    top: 0; /* Align with top of the hovered item */
    left: 100%; /* Start from the right edge of the item */
    min-width: 300px;
    background: linear-gradient(135deg, #1e3a5f 0%, #1a2a44 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 1051;
    padding: 10px 0;
    margin-left: 0; /* Spacing from the parent item */
}

.product-tab-item:hover .product-sub-menu {
    display: block;
    animation: slideInRight 0.3s ease-out;
}

/* Sub-menu Links */
.product-sub-menu .product-link {
    display: block;
    padding: 10px 20px;
    color: #b0c4de;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-sub-menu .product-link:last-child {
    border-bottom: none;
}

.product-sub-menu .product-link:hover {
    background: rgba(0, 141, 150, 0.15);
    color: #008D96;
    padding-left: 25px;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover state for entire dropdown */
.nav-item.dropdown-hover-content:hover .dropdown-menu.product-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .dropdown-menu.product-content {
        min-width: 100%;
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        background: #1a2a44;
    }
    
    .product-sub-menu {
        position: static;
        display: none;
        min-width: auto;
        margin-top: 5px;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    .product-tab-item:hover .product-sub-menu {
        display: block;
    }
}

/* Custom styles for container-fluid within navbar */
.navbar .container-fluid {
    padding-left: 2.5rem; /* Consistent left padding */
    padding-right: 2.5rem; /* Consistent right padding */
    margin-left: 0; /* Center the container */
    margin-right: 0; /* Center the container */
    max-width: 100vw; /* Slightly wider than the previous 1200px to accommodate content comfortably */
    width: 100%; /* Ensure it takes full width of the viewport up to max-width */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1199.98px) {
    .navbar .container-fluid {
        padding-left: 1.5rem; /* Reduced padding for medium screens */
        padding-right: 1.5rem; /* Reduced padding for medium screens */
        max-width: 960px; /* Adjusted max-width for medium screens */
    }
}

@media (max-width: 991.98px) {
    .navbar .container-fluid {
        padding-left: 1rem; /* Further reduced for tablets */
        padding-right: 1rem; /* Further reduced for tablets */
        max-width: 720px; /* Adjusted for tablet screens */
    }
}

@media (max-width: 767.98px) {
    .navbar .container-fluid {
        padding-left: 0.75rem; /* Minimal padding for mobile */
        padding-right: 0.75rem; /* Minimal padding for mobile */
        max-width: 540px; /* Adjusted for mobile screens */
    }
}

@media (max-width: 575.98px) {
    .navbar .container-fluid {
        padding-left: 0.5rem; /* Minimal padding for very small screens */
        padding-right: 0.5rem; /* Minimal padding for very small screens */
        max-width: 100%; /* Full width on extra small screens */
    }
}

/* Company Dropdown Styles - Exact Same as Product Dropdown */
.dropdown-menu.company-content {
    min-width: 200px;
    padding: 10px 0;
    background: linear-gradient(135deg, #1a2a44 0%, #1e3a5f 100%);
    color: #e0e7ff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Hover state for company dropdown with smooth animation */
.nav-item.dropdown-hover-content:hover .dropdown-menu.company-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: slideInDown 0.3s ease-out;
}

/* Company dropdown items styling - Same as product dropdown */
.dropdown-menu.company-content .dropdown-item {
    color: #b0c4de;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu.company-content .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu.company-content .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 141, 150, 0.2) 0%, rgba(0, 141, 150, 0.1) 100%);
    color: #008D96;
    border-left: 4px solid #008D96;
    transform: translateX(5px);
    padding-left: 25px;
}

.dropdown-menu.company-content .dropdown-item.active {
    background: linear-gradient(90deg, rgba(0, 141, 150, 0.2) 0%, rgba(0, 141, 150, 0.1) 100%);
    color: #008D96;
    border-left: 4px solid #008D96;
    transform: translateX(5px);
}

/* Animation for dropdown appearance */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New CSS for Enhanced Design Elements */

/* Zara Section Styles */
.zara-section {
    background-color: var(--light-section-bg);
    color: var(--text-color);
    padding: 5rem 0;
}
.zara-section .section-title-dark {
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 1.4rem;
    text-align: center;
}
.zara-section .section-subtitle-dark {
    font-size: 1.84rem;
    color: var(--subtitle-color);
    text-align: center;
}

.zara-feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.zara-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 141, 150, 0.2);
}

.zara-feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.zara-feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.zara-feature-card p {
    color: var(--subtitle-color);
    line-height: 1.6;
}

/* Platform Module Cards */
.platform-module-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
}

.platform-module-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 141, 150, 0.15);
}

.platform-module-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 141, 150, 0.05) 100%);
}

.module-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-module-card p {
    color: var(--subtitle-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Outcome Cards */
.outcome-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.outcome-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 141, 150, 0.15);
}

.outcome-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.outcome-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.outcome-card p {
    color: var(--subtitle-color);
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    color: var(--text-color);
}

.final-cta-section .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Table Styles */
.pricing-table-wrapper {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    margin-bottom: 0;
    background-color: var(--card-bg) !important;
    --bs-table-bg: transparent;
    border-color: rgba(0, 141, 150, 0.2);
}

/* Override Bootstrap table defaults */
.table {
    background-color: transparent !important;
    color: var(--text-color) !important;
    border-top: 1px solid rgba(0, 141, 150, 0.2);
    color: var(--text-color);
}

.table tbody tr {
    background-color: transparent !important;
}

.table tbody tr:hover {
    background-color: rgba(0, 141, 150, 0.05) !important;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a9d8f 100%);
}

.pricing-table th {
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
}

.feature-col {
    background: linear-gradient(135deg, #1a2a44 0%, #1e3a5f 100%);
    text-align: left !important;
}

.pricing-table td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid var(--card-border);
    color: var(--text-color);
}

.feature-name {
    background-color: var(--light-section-bg);
    font-weight: 500;
    text-align: left !important;
    color: var(--text-color);
}

.plan-value {
    font-weight: 500;
}

.pricing-row td:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 141, 150, 0.05) 100%);
}

.pricing-row td:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.05) 0%, rgba(0, 141, 150, 0.1) 100%);
}

.pricing-row td:nth-child(4) {
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.1) 0%, rgba(0, 141, 150, 0.15) 100%);
}

/* Pricing Plan Buttons - Glassy Effect */
.plan-buttons-row {
    background: transparent !important;
}

.plan-buttons-row td {
    padding: 1rem 0.5rem !important;
    border-top: 1px solid rgba(0, 141, 150, 0.2) !important;
    background: transparent !important;
}

.pricing-plan-btn-glass {
    font-weight: 500;
    /* padding: 0.5rem 1rem; */
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-plan-btn-glass::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.5s ease;
}

.pricing-plan-btn-glass:hover::before {
    left: 100%;
}

.pricing-plan-btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Free Plan Button - Glass */
/* .plan-buttons-row td:nth-child(2) .pricing-plan-btn-glass {
    background: rgba(0, 141, 150, 0.1);
    border-color: rgba(0, 141, 150, 0.3);
    color: var(--primary-color);
}

.plan-buttons-row td:nth-child(2) .pricing-plan-btn-glass:hover {
    background: rgba(0, 141, 150, 0.2);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 141, 150, 0.3);
} */

/* Standard Plan Button - Glass (Featured) */
/* .plan-buttons-row td:nth-child(3) .pricing-plan-btn-glass {
    background: rgba(0, 141, 150, 0.8);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 141, 150, 0.3);
}

.plan-buttons-row td:nth-child(3) .pricing-plan-btn-glass:hover {
    background: rgba(0, 107, 115, 0.9);
    border-color: #006B73;
    box-shadow: 0 10px 30px rgba(0, 141, 150, 0.4);
} */

/* Enterprise Plan Button - Glass */
/* .plan-buttons-row td:nth-child(4) .pricing-plan-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.plan-buttons-row td:nth-child(4) .pricing-plan-btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
} */

/* Legal Content Styles */
.legal-content {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.legal-meta {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.table-of-contents h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.table-of-contents ol {
    margin-bottom: 0;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--card-border);
}

.legal-section h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
}

.plain-terms {
    background: rgba(0, 141, 150, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    font-style: italic;
}

.contact-info {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--card-border);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .plan-buttons-row td {
        padding: 0.75rem 0.25rem !important;
    }
    
    .pricing-plan-btn-glass {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
    }
}

/* Responsive design for company dropdown */
@media (max-width: 991.98px) {
    .dropdown-menu.company-content {
        min-width: 100%;
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        background: #1a2a44;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* Ensure navbar content doesn't touch edges on collapse */
.navbar-collapse {
    padding: 0 1rem; /* Internal padding to prevent content from touching edges when collapsed */
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 0 0.5rem; /* Reduced padding on collapse for smaller screens */
    }
}

/* Enhanced Hero Section for non-home pages */
.hero-simple {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    min-height: 35vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 2rem;
    position: relative;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(0, 141, 150, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-simple .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    display: none;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--subtitle-color);
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--subtitle-color);
    padding: 0 0.5rem;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: var(--subtitle-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.hero-title-simple {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.1;
}

.hero-subtitle-simple {
    font-size: 1.2rem;
    color: var(--subtitle-color);
    text-align: left;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-simple {
        min-height: 25vh;
        padding-top: 100px;
    }
    
    .hero-title-simple {
        font-size: 2rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1rem;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
}

/* Enhanced Video Embed Styles */
.demo-video-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.08) 0%, rgba(0, 141, 150, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 141, 150, 0.15);
}

.demo-video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 141, 150, 0.2);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.video-description {
    text-align: center;
    padding-top: 1rem;
}

.video-description p {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.video-description small {
    color: var(--subtitle-color);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .demo-video-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .video-description p {
        font-size: 1.1rem;
    }
    
    .video-description small {
        font-size: 0.9rem;
    }
}

/* Unified Platform Section Styles */
.platform-section-unified {
    background: var(--background-color);
    color: var(--text-color);
}

.platform-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.platform-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Platform Modules Grid Layout */
.platform-modules-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.platform-row-centered {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.platform-module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 141, 150, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.platform-module-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 141, 150, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 141, 150, 0.2);
}

.platform-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #006B73);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-module-card:hover::before {
    opacity: 1;
}

/* Featured Module (PJM) */
.platform-module-featured {
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.15), rgba(0, 141, 150, 0.08));
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 141, 150, 0.2);
}

.platform-module-featured::before {
    opacity: 1;
    width: 6px;
}

.platform-module-featured:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 141, 150, 0.25);
}

/* Module Icon */
.platform-module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #006B73);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.platform-module-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.platform-module-card:hover .platform-module-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.platform-module-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

/* Module Content */
.platform-module-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-module-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.platform-module-desc {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin-bottom: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.platform-module-card:hover .platform-module-desc {
    color: #e2e8f0;
}

/* Featured Module Styling */
.platform-module-featured {
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.15), rgba(0, 141, 150, 0.08));
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 141, 150, 0.2);
}

.platform-module-featured::before {
    opacity: 1;
    height: 6px;
}

.platform-module-featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 141, 150, 0.3);
}

.platform-module-featured .platform-module-title {
    color: #ffffff;
    font-size: 1.25rem;
}

.platform-module-featured .platform-module-desc {
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-modules-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .platform-row {
        gap: 1rem;
    }
    
    .platform-row-centered {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .platform-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-row-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .platform-module-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .platform-module-card:hover {
        transform: translateY(-5px);
    }
    
    .platform-module-featured:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .platform-module-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .platform-module-icon i {
        font-size: 1.5rem;
    }
    
    .platform-module-title {
        font-size: 1.1rem;
    }
    
    .platform-module-desc {
        font-size: 0.9rem;
    }
    
    .platform-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .platform-modules-grid {
        gap: 1rem;
    }
    
    .platform-module-card {
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .platform-module-title {
        font-size: 1rem;
    }
    
    .platform-module-desc {
        font-size: 0.85rem;
    }
    
    .platform-subtitle {
        font-size: 1rem;
    }
    
    .platform-module-icon {
        width: 50px;
        height: 50px;
    }
    
    .platform-module-icon i {
        font-size: 1.3rem;
    }
}

/* Founder Section Styles */
.founder-section {
    background: var(--background-color);
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 141, 150, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.founder-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.founder-photo {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: translateY(-5px);
}

.founder-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.founder-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.founder-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.founder-content {
    position: relative;
    z-index: 2;
}

.founder-quote-mark {
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.founder-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.founder-signature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.founder-details h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.founder-position {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential-badge {
    background: rgba(0, 141, 150, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 141, 150, 0.2);
}

@media (max-width: 768px) {
    .founder-title {
        font-size: 1.8rem;
    }
    
    .founder-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .founder-quote-mark {
        font-size: 3rem;
    }
    
    .founder-credentials {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Modern Mission & Story Section Styles */
.mission-story-section {
    background: var(--background-color);
    position: relative;
}

.mission-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(0, 141, 150, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.content-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 141, 150, 0.05) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(0, 141, 150, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 141, 150, 0.5));
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #006B73);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.mission-quote,
.story-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.mission-quote::before,
.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    opacity: 0.7;
    font-family: serif;
}

.mission-pillars {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 141, 150, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 141, 150, 0.2);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(0, 141, 150, 0.2);
    transform: translateY(-2px);
}

.pillar-icon {
    font-size: 1.2rem;
}

.pillar-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.story-solution {
    background: rgba(0, 141, 150, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.solution-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.solution-text strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .content-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .mission-pillars {
        gap: 1rem;
    }
    
    .pillar {
        padding: 0.6rem 1rem;
    }
    
    .mission-quote,
    .story-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
}

/* Partners Page Styles */
.partners-intro-section {
    background: var(--background-color);
    position: relative;
}

.partners-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 25%, rgba(0, 141, 150, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.intro-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 141, 150, 0.08) 100%);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 141, 150, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 141, 150, 0.3));
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #006B73);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.intro-icon i {
    font-size: 2.2rem;
    color: white;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.intro-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 3rem;
    padding: 0 2rem;
    position: relative;
}

.intro-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -1rem;
    opacity: 0.7;
    font-family: serif;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(0, 141, 150, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 141, 150, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 141, 150, 0.15);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .intro-card {
        padding: 2rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-quote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .partnership-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Enhanced Outcomes Section Styles */
.outcomes-enhanced-section {
    background: var(--background-color);
    position: relative;
}

.outcomes-enhanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 141, 150, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.outcomes-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.outcomes-main-subtitle {
    font-size: 1.2rem;
    color: var(--subtitle-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.outcome-metric-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 141, 150, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 141, 150, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.outcome-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.outcome-metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #006B73);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.outcome-metric-card:hover .metric-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 141, 150, 0.3);
}

.metric-icon i {
    font-size: 2rem;
    color: white;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.metric-description {
    color: var(--subtitle-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.outcomes-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(0, 141, 150, 0.08) 0%, rgba(0, 141, 150, 0.03) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 141, 150, 0.2);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.7;
    font-family: serif;
}

.outcomes-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin: 0 0 2rem 0;
    padding: 0 2rem;
}

.quote-attribution {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info {
    text-align: center;
}

.author-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--subtitle-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .outcomes-main-title {
        font-size: 2.2rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .outcome-metric-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .outcomes-quote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .testimonial-content::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
}

/* Hero Section Animations */
.hero-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Tech Icons */
.floating-element {
    position: absolute;
    color: rgba(0, 141, 150, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.tech-icon-1 {
    top: 20%;
    left: 10%;
    animation: floatTech1 12s infinite;
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 30%;
    right: 15%;
    animation: floatTech2 10s infinite;
    animation-delay: 2s;
}

.tech-icon-3 {
    bottom: 25%;
    left: 20%;
    animation: floatTech3 14s infinite;
    animation-delay: 1s;
}

.tech-icon-4 {
    top: 60%;
    right: 25%;
    animation: floatTech4 11s infinite;
    animation-delay: 3s;
}

.tech-icon-5 {
    bottom: 40%;
    right: 10%;
    animation: floatTech5 13s infinite;
    animation-delay: 4s;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border: 2px solid rgba(0, 141, 150, 0.3);
    background: rgba(0, 141, 150, 0.1);
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 20%;
    border-radius: 50%;
    animation: rotate360 20s linear infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 15%;
    transform: rotate(45deg);
    animation: floatRotate 15s infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 5%;
    border-radius: 15px;
    animation: pulse 8s infinite;
}

.shape-4 {
    width: 50px;
    height: 50px;
    bottom: 35%;
    right: 30%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatUpDown 12s infinite;
}

/* Floating Ribbons */
.floating-ribbon {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 141, 150, 0.2), rgba(0, 141, 150, 0.4));
    border-radius: 20px;
}

.ribbon-1 {
    width: 200px;
    height: 8px;
    top: 25%;
    left: 30%;
    animation: ribbonFloat1 16s infinite;
}

.ribbon-2 {
    width: 150px;
    height: 6px;
    bottom: 30%;
    right: 20%;
    animation: ribbonFloat2 14s infinite;
}

.ribbon-3 {
    width: 120px;
    height: 10px;
    top: 70%;
    left: 10%;
    animation: ribbonFloat3 18s infinite;
}

/* Data Flow Lines */
.data-flow {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 150, 0.6), transparent);
    height: 2px;
    animation-iteration-count: infinite;
}

.flow-1 {
    width: 300px;
    top: 35%;
    left: -50px;
    animation: dataFlow1 8s infinite;
}

.flow-2 {
    width: 250px;
    bottom: 45%;
    right: -50px;
    animation: dataFlow2 10s infinite;
    animation-delay: 2s;
}

.flow-3 {
    width: 200px;
    top: 65%;
    left: -50px;
    animation: dataFlow3 12s infinite;
    animation-delay: 4s;
}

/* Particles */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 141, 150, 0.7);
    border-radius: 50%;
    animation-iteration-count: infinite;
}

.particle-1 {
    top: 20%;
    left: 25%;
    animation: particleFloat1 15s infinite;
}

.particle-2 {
    top: 50%;
    right: 30%;
    animation: particleFloat2 18s infinite;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 40%;
    animation: particleFloat3 12s infinite;
    animation-delay: 4s;
}

.particle-4 {
    top: 80%;
    right: 15%;
    animation: particleFloat4 20s infinite;
    animation-delay: 1s;
}

.particle-5 {
    top: 40%;
    left: 60%;
    animation: particleFloat5 16s infinite;
    animation-delay: 3s;
}

.particle-6 {
    bottom: 60%;
    right: 45%;
    animation: particleFloat6 14s infinite;
    animation-delay: 5s;
}

/* Keyframe Animations */
@keyframes floatTech1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.7; }
}

@keyframes floatTech2 {
    0%, 100% { transform: translateX(0px) scale(1); }
    50% { transform: translateX(30px) scale(1.1); }
}

@keyframes floatTech3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-25px) translateX(15px); }
    66% { transform: translateY(-10px) translateX(-10px); }
}

@keyframes floatTech4 {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(180deg) translateY(-20px); }
}

@keyframes floatTech5 {
    0%, 100% { transform: scale(1) translateY(0px); }
    25% { transform: scale(1.2) translateY(-15px); }
    75% { transform: scale(0.9) translateY(-25px); }
}

@keyframes rotate360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatRotate {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(225deg) translateY(-30px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
}

@keyframes ribbonFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    25% { transform: translateY(-30px) rotate(5deg); opacity: 0.4; }
    50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.6; }
    75% { transform: translateY(-25px) rotate(2deg); opacity: 0.3; }
}

@keyframes ribbonFloat2 {
    0%, 100% { transform: translateX(0px) translateY(0px); opacity: 0.3; }
    50% { transform: translateX(-40px) translateY(-20px); opacity: 0.5; }
}

@keyframes ribbonFloat3 {
    0%, 100% { transform: translateY(0px) scaleX(1); }
    33% { transform: translateY(-20px) scaleX(1.1); }
    66% { transform: translateY(-35px) scaleX(0.9); }
}

@keyframes dataFlow1 {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

@keyframes dataFlow2 {
    0% { transform: translateX(100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(-100vw - 100%)); opacity: 0; }
}

@keyframes dataFlow3 {
    0% { transform: translateX(-100%) translateY(0px); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(50vw) translateY(-10px); }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100%)) translateY(0px); opacity: 0; }
}

@keyframes particleFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    25% { transform: translateY(-50px) translateX(20px); opacity: 1; }
    50% { transform: translateY(-25px) translateX(40px); opacity: 0.5; }
    75% { transform: translateY(-70px) translateX(10px); opacity: 0.8; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-80px) scale(1.5); }
}

@keyframes particleFloat3 {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    33% { transform: rotate(120deg) translateY(-30px); }
    66% { transform: rotate(240deg) translateY(-60px); }
}

@keyframes particleFloat4 {
    0%, 100% { transform: translateX(0px) translateY(0px); opacity: 0.6; }
    50% { transform: translateX(-60px) translateY(-40px); opacity: 1; }
}

@keyframes particleFloat5 {
    0%, 100% { transform: scale(1) translateY(0px); }
    25% { transform: scale(1.3) translateY(-20px); }
    75% { transform: scale(0.8) translateY(-50px); }
}

@keyframes particleFloat6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-45px) translateX(25px) rotate(180deg); }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .floating-element {
        font-size: 1.5rem;
    }
    
    .geometric-shape {
        transform: scale(0.7);
    }
    
    .floating-ribbon {
        transform: scale(0.8);
    }
    
    .data-flow {
        height: 1px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

/* Why Zeptor Section - Comparison Visual */
.comparison-visual {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.legacy-card {
    border-left: 4px solid #dc3545;
}

.legacy-card:hover {
    border-left-color: #c82333;
    background: rgba(220, 53, 69, 0.1);
}

.zeptor-card {
    border-left: 4px solid var(--primary-color);
}

.zeptor-card:hover {
    border-left-color: var(--primary-color);
    background: rgba(0, 141, 150, 0.1);
}

.comparison-card-header {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    color: var(--subtitle-color);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.comparison-item i {
    width: 20px;
    flex-shrink: 0;
}

.comparison-item span {
    flex: 1;
}

/* Key Benefits Section */
.key-benefits {
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 141, 150, 0.08);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.benefit-icon {
    background: rgba(0, 141, 150, 0.15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.benefit-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.benefit-description {
    color: var(--subtitle-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why Zeptor Section General Styling */
.why-zeptor-section {
    background: var(--background-color);
    position: relative;
}

.why-zeptor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

/* Responsive Design for Comparison */
@media (max-width: 768px) {
    .comparison-visual {
        padding: 1.5rem;
    }
    
    .comparison-title {
        font-size: 1.3rem;
    }
    
    .comparison-card {
        padding: 1.25rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-item:hover {
        transform: translateX(5px);
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon i {
        font-size: 1.1rem;
    }
}

/* Enhanced Why Zeptor Works Section */
.why-zeptor-works-section {
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.why-zeptor-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
}

.why-zeptor-works-section .section-subtitle {
    color: var(--subtitle-color);
    font-size: 1.64rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Feature Cards */
.enhanced-feature-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.enhanced-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 141, 150, 0.15);
    border-color: var(--primary-color);
}

.feature-card-inner {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Feature Icon Styling */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 141, 150, 0.6));
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.3s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.enhanced-feature-card:hover .feature-icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 1;
    transition: all 0.3s ease;
}

.enhanced-feature-card:hover .feature-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Feature Content */
.feature-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

.feature-description {
    color: var(--subtitle-color);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--subtitle-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Card (Zara AI) */
.featured-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 141, 150, 0.05));
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 141, 150, 0.1);
}

.featured-card:hover {
    box-shadow: 0 25px 50px rgba(0, 141, 150, 0.2);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #006B73);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.featured-badge i {
    font-size: 0.7rem;
}

/* Feature Overlay Effect */
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 141, 150, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.enhanced-feature-card:hover .feature-overlay {
    opacity: 1;
}

/* Icon Pulse Animation */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.25;
    }
}

/* Floating Animation for Cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.enhanced-feature-card:nth-child(odd) {
    animation: cardFloat 6s ease-in-out infinite;
}

.enhanced-feature-card:nth-child(even) {
    animation: cardFloat 6s ease-in-out infinite 3s;
}

/* Hover Glow Effect */
.enhanced-feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #006B73, var(--primary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-feature-card:hover::before {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .enhanced-feature-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .enhanced-feature-card:nth-child(odd),
    .enhanced-feature-card:nth-child(even) {
        animation: none;
    }
}

@media (max-width: 576px) {
    .why-zeptor-works-section .section-subtitle {
        font-size: 1rem;
    }
    
    .featured-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}
/* Cards */
/* Launch card */
.launch-card {
  background: #1e2637;
  border: 2px solid #3b4c6b;
  border-radius: 18px;
  transition: all 0.35s ease;
}

.launch-card:hover {
  border-color: #008D96;
  box-shadow: 0 8px 32px rgba(0,141,150,0.18);
  transform: translateY(-8px);
}

.person-avatar {
  width: 64px;
  height: 64px;
  border: 3px solid #008D96;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.person-name { font-weight: 600; color: #f0f0f0; }
.person-role { color: #aeb4c0; font-size: 0.85rem; }

/* Large centered video */
.video-card-large {
  background: #1e2637;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.video-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,141,150,0.3);
}

.video-thumb-large img {
  transition: transform 0.5s ease;
}

.video-thumb-large:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb-large:hover .play-overlay { opacity: 1; }

.play-overlay i {
  font-size: 5rem;
  color: #008D96;
  text-shadow: 0 0 20px rgba(0,141,150,0.8);
}

/* Generated URL */
.gen-url {
  background: #121621;
  color: #008D96;
  padding: 1rem;
  border-radius: 12px;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

/* Custom styles for Events Page - events.css */

/* Dark Theme for Modals */
.modal-content .modal-content {
    background-color: #1a1a2e; /* Dark background */
    color: #ffffff; /* White text */
    border: 1px solid #4a4e69; /* Subtle border */
}

.modal-content .modal-header {
    border-bottom: 1px solid #4a4e69; /* Darker border */
}

.modal-content .modal-title {
    color: #ffffff;
}

/* Close button style for dark background */
.btn-close-white {
    filter: brightness(0) invert(1); /* Makes the close button white */
}

/* Form control styling for dark modal */
.modal-content{
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
}
.modal-content .form-control {
    background-color: var(--card-border); /* Slightly lighter dark background for inputs */
    color: #ffffff;
    border: 1px solid #4a4e69;
}

.modal-content .form-control:focus {
    background-color: var(--card-border);
    color: #ffffff;
    border-color: var(--chat-primary-color); /* Primary color border on focus */
    box-shadow: 0 0 0 0.25rem rgba(100, 100, 255, 0.25);
}

.modal-content .form-label {
    color: #cccccc;
}


/* Speaker Section Styling */
/* Speaker Section Styling Overhaul */

/* General Section Background (Assumed to be dark) */
.speakers-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Speaker Card Base Style */
.speaker-card {
    background-color: #1e2637; /* Dark card background */
    text-align: center;
    border: 1px solid #3b4c6b; /* Subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.speaker-card:hover {
    transform: translateY(-8px); /* More pronounced lift on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    border-color: var(--primary-color); /* Highlight border on hover */
}

/* Accent Bar (New UI Element) */
.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Thin accent bar */
    background-color: var(--primary-color); /* Uses your primary color */
}

/* Icon Styling (Replacing Headshots) */
.speaker-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.speaker-icon {
    font-size: 3.5rem; /* Large icon size */
    color: var(--text-primary); /* Ensures icon color is primary */
    
    /* Creates a subtle ring/background glow behind the icon */
    background: rgba(0, 141, 150, 0.15); /* Slightly darker primary background */
    border-radius: 50%;
    padding: 1.25rem;
    line-height: 1; 
    border: 2px solid rgba(0, 141, 150, 0.4);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
}

.text-light-primary {
    color: #aeb4c0; /* Assuming this is your secondary/subtitle text color */
}

/* Generated Link Styling for better visibility */
.gen-url {
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
    transition: all 0.3s;
}
.generated-link {
    background-color: #28a745 !important; /* Green for success */
    color: #fff !important;
    padding: 8px 15px !important;
    font-family: monospace;
}

/* --- Zara Online Status Indicator --- */

/* --- Zara Online Status Indicator Fixes --- */
/* Add this CSS to your <style> block or main style.css file */
/* New rule for the thumbnail image */
.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire 16:9 box (cropping if necessary) */
    border-radius: 14px; /* Matches the border radius of the iframe */
}