/* Global Styles */
:root {
    --primary-color: #00d4aa;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-color: #0a0a0a;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --light-color: #f9fafb;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dark Theme */
body.dark-theme {
    background-color: var(--dark-color);
    color: #ffffff;
    padding-top: 0;
}

body.dark-theme a,
body.dark-theme p,
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6,
body.dark-theme span,
body.dark-theme small,
body.dark-theme label,
body.dark-theme li,
body.dark-theme strong {
    color: #ffffff;
}

body.dark-theme .text-muted,
body .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

body.dark-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--dark-color);
    z-index: 1;
    transition: opacity 0.3s ease;
}

body.dark-theme.overlay-hidden::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 0;
    min-height: auto;
}

.navbar-rounded {
    border-radius: 50px;
    margin: 1.5rem auto;
    max-width: 96%;
    padding: 0.15rem 1rem;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0.3rem;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 50px;
}

.navbar-rounded.scrolled {
    margin: 0.25rem auto;
    padding: 0.1rem 0.9rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .navbar-rounded {
        max-width: 92%;
        border-radius: 40px;
    }
    
     .navbar-rounded .container {
        justify-content: space-between;
        position: relative;
    }

    .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
    }

    .navbar-toggler {
        position: relative;
        right: auto;
    }

    .navbar-nav.mx-auto {
        display: none;
    }
}

.navbar-rounded .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 10px !important;
}

.navbar-nav.mx-auto {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin: 0;
}

.navbar-brand {
    color: #0a0a0a !important;
    font-size: 1.15rem;
    flex-shrink: 0;
    padding: 0;
    font-weight: 600;
}

.bg-dark-custom {
    background-color: var(--dark-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: #0a0a0a !important;
    transition: color 0.3s ease;
    padding: 0.25rem 0.75rem !important;
    font-size: 0.95rem;
    white-space: nowrap;
    line-height: 1.3;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-brand span {
    color: #0a0a0a !important;
}

.navbar-brand:hover,
.navbar-brand:hover span {
    color: #0a0a0a !important;
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2) !important;
    padding: 0.4rem;
    font-size: 1rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
}

.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(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-light-custom {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.btn-light-custom i {
    font-size: 0.85rem;
}

.btn-signin {
    background-color: #ffffff !important;
    color: #0a0a0a !important;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.25rem 0.9rem !important;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.3;
}

.btn-signin:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #0a0a0a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Scrolling Banner */
.scrolling-banner {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.5rem 0;
    position: relative;
    z-index: 999;
}

.scrolling-text-continuous {
    display: inline-block;
    animation: scroll-continuous 25s linear infinite;
}

.scrolling-text-continuous span {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 2rem;
}

.scrolling-text-continuous span::after {
    content: '◆';
    margin-left: 2rem;
    opacity: 0.6;
    font-size: 0.6rem;
}

@keyframes scroll-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.scrolling-banner:hover .scrolling-text-continuous {
    animation-play-state: paused;
}


.btn-signin:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.btn-signin i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-signin:hover i {
    transform: translateX(3px);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Section - niraswaAI Style */
.hero-section-niraswa {
    background: linear-gradient(180deg, #e8f5f3 0%, #f0f9f7 50%, #ffffff 100%);
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section-niraswa .row {
    --bs-gutter-x: -5.0rem;
}

.hero-content-niraswa {
    max-width: 600px;
}

@media (min-width: 992px) {
    .hero-section-niraswa .container {
        max-width: 1320px;
        padding-left: 2rem;
        padding-right: 3rem;
    }

    .hero-section-niraswa .row {
        --bs-gutter-x:-5.0rem;
    }

    .hero-content-niraswa {
        margin-left: -2.5rem;
    }
}

@media (min-width: 1400px) {
    .hero-section-niraswa .row {
        --bs-gutter-x: 0.75rem;
    }

    .hero-content-niraswa {
        margin-left: -3.75rem;
    }
}

/* Green Badge */
.badge-pill-green {
    display: inline-flex;
    align-items: center;
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

/* Hero Title niraswaAI */
.hero-title-niraswa {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-niraswa .text-green {
    color: #10b981;
}

.hero-title-niraswa img {
    vertical-align: middle;
}

/* Hero Subtitle */
.hero-subtitle-niraswa {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Primary Button - Green */
.btn-niraswa-primary {
    background-color: #10b981;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
}

.hero-title-niraswa .text-black {
    color: #000000 !important;
}

.btn-niraswa-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

.hero-subtitle-niraswa.text-black {
    color: #000000 !important;
}

/* Badge Green Text */
.text-green-badge {
    color: #10b981 !important;
}

/* Payment Badge */
.payment-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.payment-badge i {
    color: #10b981;
}

.text-success-green {
    color: #10b981 !important;
    font-weight: 600;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110%;
    padding: -0.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.08));
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
}

.hero-demo-window {
    width: 100%;
    max-width: 660px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
}

.hero-demo-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.15rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero-demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.hero-demo-dot.dot-red {
    background: #f87171;
}

.hero-demo-dot.dot-yellow {
    background: #facc15;
}

.hero-demo-dot.dot-green {
    background: #22c55e;
}

.hero-demo-body {
    position: relative;
    background: #000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    flex: 1;
    min-height: 360px;
}

.hero-demo-overlay {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
}

.hero-demo-overlay-text {
    font-weight: 700;
    font-size: 1rem;
    color: #000000 !important;
    letter-spacing: 0.02em;
}

.hero-demo-overlay-text.text-black-demo {
    color: #000000 !important;
}

@media (max-width: 991.98px) {
    .hero-video-wrapper {
        margin-top: 2.5rem;
        padding: 1.75rem;
    }
    
    .hero-demo-overlay {
        bottom: 0.85rem;
        padding: 0.55rem 1.25rem;
    }
}

@media (min-width: 1200px) {
    .hero-demo-window {
        max-width: 700px;
    }
    
    .hero-demo-body {
        min-height: 400px;
    }
}

@media (min-width: 1400px) {
    .hero-demo-window {
        max-width: 760px;
    }
    
    .hero-demo-body {
        min-height: 440px;
    }
}

.hero-dashboard-img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.hero-video-wrapper iframe,
.hero-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.learning-card-outer {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #1f2937;
}

.learning-card-outer:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.learning-card-outer.card-desktop {
    border-top: 4px solid #0ea5e9;
}

.learning-card-outer.card-coding {
    border-top: 4px solid #8b5cf6;
}
.learning-card-outer.card-desktop .learning-emoji {
    background: rgba(14, 116, 144, 0.12);
}

.learning-card-outer.card-coding .learning-emoji {
    background: rgba(76, 29, 149, 0.12);
}


.learning-card-outer .learning-emoji {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(15, 23, 42, 0.06);
    line-height: 1;
}

.learning-card-outer .learning-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #2563eb;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.learning-card-outer .learning-link:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.learning-card-outer .learning-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
    align-items: center;
}

/* Referral Survey - Clean Design */
.referral-card {
    border-radius: 16px;
    background: #ffffff;
}

.referral-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .referral-grid-clean {
        grid-template-columns: 1fr;
    }
}

.referral-btn-clean {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
}

.referral-btn-clean:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.referral-icon-clean {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.referral-logo-clean {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.referral-logo-clean svg {
    width: 24px;
    height: 24px;
    display: block;
}

.referral-label-clean {
    flex: 1;
}

.referral-divider-clean {
    text-transform: uppercase;
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.referral-other-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.referral-other-clean .form-control {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 12px 20px;
    font-size: 16px;
}

.referral-other-clean .form-control:focus {
    border-color: #9ca3af;
    box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}

.referral-other-clean .btn {
    border-radius: 12px;
    padding: 12px 32px;
    font-weight: 600;
}



.referral-option {
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.referral-option .referral-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.referral-option .referral-logo svg {
    width: 24px;
    height: 24px;
    display: block;
}

.referral-option:hover,
.referral-option:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.4);
    background: #e0f2fe;
}

/* Brand-Specific Colors for Referral Options */
.referral-option.referral-google {
    background: #ffffff !important;
    border: 2px solid #e8e8e8 !important;
    color: #5f6368 !important;
}

.referral-option.referral-google:hover,
.referral-option.referral-google:focus {
    background: #ffffff !important;
    border-color: #4285f4 !important;
    color: #4285f4 !important;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2) !important;
}

.referral-option.referral-reddit {
    background: #ffffff !important;
    border: 2px solid #ff4500 !important;
    color: #ff4500 !important;
}

.referral-option.referral-reddit:hover,
.referral-option.referral-reddit:focus {
    background: #ff4500 !important;
    color: #ffffff !important;
    border-color: #ff4500 !important;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3) !important;
}

.referral-option.referral-tiktok {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
}

.referral-option.referral-tiktok:hover,
.referral-option.referral-tiktok:focus {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%) !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.3) !important;
}

.referral-option.referral-youtube {
    background: #ffffff !important;
    border: 2px solid #ff0000 !important;
    color: #ff0000 !important;
}

.referral-option.referral-youtube:hover,
.referral-option.referral-youtube:focus {
    background: #ff0000 !important;
    color: #ffffff !important;
    border-color: #ff0000 !important;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3) !important;
}

.referral-option.referral-facebook {
    background: #ffffff !important;
    border: 2px solid #1877f2 !important;
    color: #1877f2 !important;
}

.referral-option.referral-facebook:hover,
.referral-option.referral-facebook:focus {
    background: #1877f2 !important;
    color: #ffffff !important;
    border-color: #1877f2 !important;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3) !important;
}

.referral-option.referral-snapchat {
    background: #ffffff !important;
    border: 2px solid #fffc00 !important;
    color: #000000 !important;
}

.referral-option.referral-snapchat:hover,
.referral-option.referral-snapchat:focus {
    background: #fffc00 !important;
    color: #000000 !important;
    border-color: #fffc00 !important;
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.3) !important;
}

.referral-option.referral-chatgpt {
    background: #ffffff !important;
    border: 2px solid #10a37f !important;
    color: #10a37f !important;
}

.referral-option.referral-chatgpt:hover,
.referral-option.referral-chatgpt:focus {
    background: linear-gradient(135deg, #10a37f 0%, #1a7f64 100%) !important;
    color: #ffffff !important;
    border-color: #10a37f !important;
    box-shadow: 0 8px 20px rgba(16, 163, 127, 0.3) !important;
}

.referral-option.referral-friend {
    background: #ffffff !important;
    border: 2px solid #8b5cf6 !important;
    color: #8b5cf6 !important;
}

.referral-option.referral-friend:hover,
.referral-option.referral-friend:focus {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    border-color: #8b5cf6 !important;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3) !important;
}

.referral-option.referral-instagram {
    background: #ffffff !important;
    border: 2px solid #e4405f !important;
    color: #e4405f !important;
}

.referral-option.referral-instagram:hover,
.referral-option.referral-instagram:focus {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%) !important;
    color: #ffffff !important;
    border-color: #e4405f !important;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3) !important;
}

/* Icon colors for referral buttons */
.referral-option.referral-google i {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-option.referral-google:hover i {
    -webkit-text-fill-color: #ffffff;
}

.referral-option.referral-tiktok i {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-option.referral-tiktok:hover i {
    -webkit-text-fill-color: #ffffff;
}

.referral-option.referral-instagram i {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-option.referral-instagram:hover i {
    -webkit-text-fill-color: #ffffff;
}

/* SVG logo visibility on hover */
.referral-option.referral-reddit:hover .referral-logo svg,
.referral-option.referral-tiktok:hover .referral-logo svg,
.referral-option.referral-youtube:hover .referral-logo svg,
.referral-option.referral-facebook:hover .referral-logo svg,
.referral-option.referral-chatgpt:hover .referral-logo svg,
.referral-option.referral-friend:hover .referral-logo svg {
    filter: brightness(0) invert(1);
}

.referral-option.referral-snapchat:hover .referral-logo svg {
    filter: none;
}

.referral-option.referral-instagram:hover .referral-logo svg {
    filter: brightness(0) invert(1);
}

.referral-divider {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(15, 23, 42, 0.4);
    margin: 14px 0;
    letter-spacing: 0.12em;
}

.referral-other input {
    border-radius: 12px;
}

.referral-other button {
    border-radius: 12px;
}

/* Feature Grid */
.feature-tile {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}

.feature-tile h3 {
    margin-bottom: 6px;
}

/* AI Assistant Widget */
.ai-agent-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.ai-agent-toggle {
    background: linear-gradient(135deg, #2563eb 0%, #22d3ee 45%, #22c55e 100%);
    border: none;
    border-radius: 999px;
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    position: relative;
    pointer-events: auto;
}

.ai-agent-toggle:focus,
.ai-agent-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.35);
    outline: none;
}

.ai-agent-toggle:focus-visible {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.35);
}

.ai-agent-toggle.has-unread::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.ai-agent-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ai-agent-toggle-text {
    letter-spacing: 0.01em;
}

.ai-agent-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: 340px;
    max-width: calc(100vw - 40px);
    max-height: min(580px, calc(100vh - 120px));
    background: rgba(15, 23, 42, 0.96);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    color: #e2e8f0;
    transform: translateY(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ai-agent-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.ai-agent-header {
    padding: 16px 18px 14px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, rgba(30, 64, 175, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 0 0 auto;
}

.ai-agent-header-primary {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ai-agent-header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.92) 0%, rgba(45, 212, 191, 0.9) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.05rem;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45);
}

.ai-agent-header-avatar i {
    line-height: 1;
}

.ai-agent-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-agent-name {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.ai-agent-status {
    font-size: 0.78rem;
    color: #34d399;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ai-agent-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.ai-agent-close {
    background: rgba(15, 23, 42, 0.4);
    color: #cbd5f5;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ai-agent-close:hover,
.ai-agent-close:focus {
    background: rgba(148, 163, 184, 0.2);
    color: #ffffff;
    border-color: rgba(148, 163, 184, 0.45);
}

.ai-agent-close:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.45);
    outline-offset: 2px;
}

.ai-agent-body {
    flex: 1 1 240px;
    overflow-y: auto;
    padding: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.ai-agent-body::-webkit-scrollbar {
    width: 6px;
}

.ai-agent-body::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
}

.ai-agent-body::-webkit-scrollbar-track {
    background: transparent;
}

.ai-agent-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-agent-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ai-agent-message.from-user {
    justify-content: flex-end;
}

.ai-agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(45, 212, 191, 0.95) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.ai-agent-avatar i {
    line-height: 1;
}

.ai-agent-bubble {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px 18px 18px 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
    line-height: 1.55;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
    color: #f8fafc;
    max-width: 240px;
}

.ai-agent-message.from-user .ai-agent-bubble {
    background: linear-gradient(135deg, #22c55e 0%, #a3e635 100%);
    color: #0f172a;
    border-radius: 18px 18px 6px 18px;
    border-color: rgba(134, 239, 172, 0.65);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.ai-agent-message.from-agent .ai-agent-bubble strong {
    color: #38bdf8;
}

.ai-agent-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 18px 4px;
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    flex: 0 0 auto;
}

.ai-agent-quick-replies.is-empty {
    display: none;
}

.ai-agent-details-form {
    background: rgba(28, 32, 47, 0.55);
    border: 1px solid rgba(136, 160, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    margin: 0 18px 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 24px rgba(8, 11, 31, 0.35);
    overflow: hidden;
    max-height: 420px;
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, margin 0.25s ease, padding 0.25s ease, border-width 0.25s ease;
    flex: 0 0 auto;
}

.ai-agent-details-form.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}

.ai-agent-field-group {
    margin-bottom: 12px;
}

.ai-agent-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(226, 233, 255, 0.85);
    margin-bottom: 4px;
}

.required-indicator {
    color: #ff9f5a;
    font-weight: 700;
}

.ai-agent-field-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(120, 140, 255, 0.2);
    background: rgba(18, 21, 36, 0.65);
    color: #f3f6ff;
    font-size: 0.85rem;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ai-agent-field-input::placeholder {
    color: rgba(220, 228, 255, 0.45);
}

.ai-agent-field-input:focus {
    outline: none;
    border-color: rgba(132, 156, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(78, 118, 255, 0.25);
}

.ai-agent-field-input.is-invalid {
    border-color: rgba(255, 143, 157, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 143, 157, 0.35);
}

.ai-agent-field-hint {
    font-size: 0.7rem;
    color: rgba(215, 224, 255, 0.55);
    margin-top: 6px;
    margin-bottom: 0;
}

.ai-agent-details-actions {
    margin-top: 16px;
}

.ai-agent-details-submit {
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #5b7dff, #8f5bff);
    border: none;
    box-shadow: 0 10px 20px rgba(72, 106, 255, 0.25);
}

.ai-agent-details-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ai-agent-details-note {
    font-size: 0.72rem;
    color: rgba(215, 224, 255, 0.6);
    margin: 12px 0 0;
    text-align: center;
}

.ai-agent-details-feedback {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #ff8f9d;
    min-height: 18px;
}

.ai-agent-quick-reply {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(226, 232, 240, 0.1);
    color: #e2e8f0;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ai-agent-quick-reply:hover,
.ai-agent-quick-reply:focus {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.65);
    color: #ffffff;
    transform: translateY(-1px);
}

.ai-agent-quick-reply:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.55);
    outline-offset: 2px;
}

.ai-agent-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 16px;
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    flex: 0 0 auto;
}

.ai-agent-form.is-hidden {
    display: none;
}

.ai-agent-details-form:not(.is-hidden) + .ai-agent-form {
    display: none;
}

.ai-agent-input {
    flex: 1;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.75);
    color: #e2e8f0;
    padding: 10px 14px;
    font-size: 0.95rem;
}

.ai-agent-input::placeholder {
    color: rgba(148, 163, 184, 0.8);
}

.ai-agent-input:focus {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background: rgba(15, 23, 42, 0.9);
}

.ai-agent-send {
    background: linear-gradient(135deg, #2563eb 0%, #22d3ee 100%);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-agent-send:hover,
.ai-agent-send:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.4);
}

.ai-agent-send i {
    font-size: 1.05rem;
}

.ai-agent-disclaimer {
    padding: 0 18px 18px;
    background: rgba(15, 23, 42, 0.96);
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.75rem;
    line-height: 1.4;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    flex: 0 0 auto;
}

.ai-agent-disclaimer small {
    display: block;
}

@media (max-width: 767.98px) {
    .ai-agent-widget {
        right: 16px;
        bottom: 16px;
    }

    .ai-agent-panel {
        width: min(360px, calc(100vw - 32px));
    }

    .ai-agent-details-form {
        margin: 0 12px 12px;
        padding: 14px;
    }
}

@media (max-width: 575.98px) {
    .ai-agent-panel {
        width: calc(100vw - 24px);
        right: 0;
        max-height: calc(100vh - 96px);
    }

    .ai-agent-toggle {
        padding: 12px 16px;
    }

    .ai-agent-header-avatar {
        width: 40px;
        height: 40px;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
    }

    .ai-agent-header-primary {
        gap: 12px;
    }
}

@supports (height: 100dvh) {
    .ai-agent-panel {
        max-height: min(580px, calc(100dvh - 120px));
    }

    @media (max-width: 575.98px) {
        .ai-agent-panel {
            max-height: calc(100dvh - 96px);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-agent-toggle,
    .ai-agent-panel,
    .ai-agent-message,
    .ai-agent-quick-reply,
    .ai-agent-send {
        transition: none !important;
    }
}

@media (max-width: 767.98px) {
    .dashboard-learning-card {
        padding: 22px;
    }

    .dashboard-learning-card .learning-icon {
        font-size: 1.5rem;
        padding: 12px;
    }

    .referral-form .referral-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
/* Features Hero */
.features-hero {
    background: linear-gradient(180deg, rgba(208, 235, 255, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.features-hero .display-3 {
    color: #0f172a;
    text-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.features-hero .lead {
    color: rgba(15, 23, 42, 0.75);
}

/* Keep AI Fiesta styles for backward compatibility */
.hero-section-aifiesta {
    position: relative;
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-aifiesta {
    position: relative;
    z-index: 2;
}

/* Y Combinator Badge */
.yc-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
}

/* Giant Hero Title - AI Fiesta Style */
.hero-giant-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-giant-subtitle {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Hero Description */
.hero-desc-large {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Get Started Button - Teal Gradient */
.btn-get-started {
    display: inline-block;
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.25);
    border: none;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0e7490 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(20, 184, 166, 0.35);
    color: #ffffff;
}

/* Tagline Bottom */
.hero-tagline-bottom {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

/* Dashboard Preview - Right Side */
.hero-dashboard-aifiesta {
    position: relative;
    perspective: 1200px;
}

.dashboard-screen {
    border-radius: 1.5rem;
    box-shadow: 
        0 0 0 1px rgba(20, 184, 166, 0.15),
        0 0 100px rgba(20, 184, 166, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.6);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-screen:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

/* Keep modern styles for backward compatibility */
.hero-section-modern {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Blur Orb Effect */
.blur-orb {
    pointer-events: none;
    position: absolute;
    right: -6rem;
    top: -6rem;
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
}

.hero-content-modern {
    max-width: 42rem;
}

/* Badge Modern */
.badge-modern {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Hero Heading Modern */
.hero-heading-modern {
    margin-top: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 640px) {
    .hero-heading-modern {
        font-size: 3.5rem;
    }
}

/* Hero Description Modern */
.hero-description-modern {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

/* Features List Modern */
.features-list-modern {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.features-list-modern li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Wrapper Modern */
.cta-wrapper-modern {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

/* Start Free Button */
.btn-start-free {
    border-radius: 0.75rem;
    background-color: #ffffff;
    color: #000000;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-start-free:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    transform: translateY(-2px);
}

/* Demo Button */
.btn-demo {
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-demo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* CTA Note Modern */
.cta-note-modern {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0;
    margin-bottom: 0;
}

/* Hero Image Modern */
.hero-image-modern {
    position: relative;
    animation: fadeIn 1s ease;
}

.hero-image-modern img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Keep V2 styles for backward compatibility */
.hero-section-v2 {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    min-height: 100vh;
}

/* Starry Background Effect */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 60%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.3;
    pointer-events: none;
    animation: twinkle 8s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content-v2 {
    max-width: 600px;
}

/* Badge Pill Top */
.badge-pill-top {
    display: inline-block;
    background-color: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Title Large - AI Fiesta Style */
.hero-title-large {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title-large .highlight-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle Large */
.hero-subtitle-large {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
}

/* Gradient Button - Teal/Cyan like AI Fiesta */
.btn-hero-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.btn-hero-gradient:hover {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.4);
}

.hero-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Dashboard Preview - Right Side */
.hero-dashboard-preview {
    position: relative;
    perspective: 1000px;
}

.dashboard-image {
    border-radius: 1rem;
    box-shadow: 
        0 0 80px rgba(6, 182, 212, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.7);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dashboard-image:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* Old badge pill styles for backward compatibility */
.badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 0.5rem;
}

.badge-pill .separator {
    opacity: 0.5;
}

/* Hero Title V2 */
.hero-title-v2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Hero Subtitle V2 */
.hero-subtitle-v2 {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-hero-primary {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-note {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Image V2 */
.hero-image-wrapper-v2 {
    position: relative;
    animation: fadeIn 1.2s ease;
}

.hero-image-wrapper-v2 img {
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

/* Keep old hero section for backward compatibility */
.hero-section {
    background: linear-gradient(180deg, #e8f5f1 0%, #f0f9f7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem 0 !important;
}

.dark-theme .hero-section {
    background: linear-gradient(180deg, #0d1f1a 0%, #0a0a0a 100%);
}

.dark-theme .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 70vh;
}

/* Badge Tag */
.badge-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 212, 170, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dark-theme .badge-tag {
    background-color: rgba(0, 212, 170, 0.15);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.dark-theme .hero-title {
    color: #ffffff;
}

.hero-title .ai-text {
    color: var(--primary-color);
}

.hero-title .emoji-icon {
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 90%;
}

.dark-theme .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-success {
    background-color: #059669;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.9rem 2rem !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-success:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.payment-info {
    font-size: 0.9rem;
    color: #4a5568;
}

.dark-theme .payment-info {
    color: rgba(255, 255, 255, 0.7);
}

.payment-info .text-success {
    color: #059669 !important;
}

/* Social Proof */
.social-proof {
    margin-top: 2rem;
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease;
}

.dark-theme .hero-content h1 {
    color: #fff;
}

.hero-content h2 {
    animation: fadeInUp 1s ease;
    color: var(--text-muted);
}

.dark-theme .hero-content h2 {
    color: var(--text-muted);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #e8f5f1;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    object-fit: cover;
}

.dark-theme .avatar {
    border-color: var(--dark-color);
}

.avatar:first-child {
    margin-left: 0;
}

.rating {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.dark-theme .rating {
    color: rgba(255, 255, 255, 0.9);
}

.rating .text-warning {
    color: #fbbf24 !important;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1.2s ease;
}

.hero-image-wrapper img {
    border-radius: 1rem;
}

.video-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Companies Section */
.companies-section {
    overflow: hidden;
    position: relative;
    background-color: var(--dark-bg);
}

.dark-theme .companies-section {
    background-color: var(--dark-bg);
}

/* Snake Logo Animation */


.logo-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.logo-scroll {
    display: inline-flex;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

.logo-slide {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: none;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.company-logo:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Platforms Section */
.platforms-section {
    overflow: hidden;
    position: relative;
    background: var(--dark-color);
}

.dark-theme .platforms-section {
    background: var(--dark-color);
}

.platform-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.platform-scroll {
    display: inline-flex;
    animation: scroll 35s linear infinite;
    will-change: transform;
}

.platform-scroll:hover {
    animation-play-state: paused;
}

.platform-slide {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
}

.platform-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.platform-logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    opacity: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: none;
    object-fit: contain;
    display: block;
}

.platform-item:hover .platform-logo {
    transform: scale(1.2);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.platform-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    transition: color 0.3s ease;
}

.platform-item:hover .platform-name {
    color: #6366f1;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .feature-card {
    background-color: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2) !important;
}

.dark-theme .bg-light {
    background-color: var(--dark-bg) !important;
}

.dark-theme .bg-white {
    background-color: var(--dark-color) !important;
}

.dark-theme .text-muted {
    color: var(--text-muted) !important;
}

.dark-theme h2, 
.dark-theme h3, 
.dark-theme h4, 
.dark-theme h5 {
    color: #fff;
}

.dark-theme .card {
    background-color: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .card-title {
    color: #fff;
}

.feature-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Platform Cards */
.platform-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.platform-card img {
    max-height: 50px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.platform-card:hover img {
    filter: grayscale(0%);
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-card .badge-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--success-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00e5bc 0%, #00d4aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-gradient-light {
    background: linear-gradient(to bottom right, #f0f9ff, #e0f2fe);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Dashboard Styles */
.dashboard-card {
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    padding: 2rem;
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 800;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
}

/* Card Shadows */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light {
    background-color: #f9fafb !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* Google Sign-in Button Styles */
.btn-google-signin {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 50px;
    font-family: 'Roboto', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25px;
    padding: 12px 24px !important;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-google-signin:hover {
    background-color: #f8f9fa;
    border-color: #d2d4d6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #3c4043;
}

.btn-google-signin:active {
    background-color: #e8eaed;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.btn-google-signin .google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-google-signin span {
    line-height: 1;
}

/* Dark theme variant */
body.dark-theme .btn-google-signin {
    background-color: #131314;
    color: #e3e3e3;
    border-color: #8e918f;
}

body.dark-theme .btn-google-signin:hover {
    background-color: #292a2b;
    border-color: #8e918f;
    color: #e3e3e3;
}

body.dark-theme .btn-google-signin:active {
    background-color: #1f1f1f;
}


/* Feature Images & Showcases */
.feature-image-container {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-showcase {
    min-height: 350px;
    transition: transform 0.3s ease;
}

.feature-showcase:hover {
    transform: translateY(-5px);
}

.border-dashed {
    border-style: dashed !important;
}

.code-editor {
    font-size: 0.85rem;
    line-height: 1.4;
}

.stat-card {
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.bar {
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.security-item {
    transition: all 0.2s ease;
}

.security-item:hover {
    background-color: #e9ecef !important;
    transform: translateX(5px);
}

.transcript-box {
    font-size: 0.9rem;
}

.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.5s ease;
}

/* Feature Card Animations */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Gradient backgrounds for features */
.bg-gradient {
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* About & Contact Pages */
.page-hero-section,
.contact-hero-section {
    position: relative;
}

.page-hero-section::after,
.contact-hero-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(25, 135, 84, 0.15), transparent 70%);
    pointer-events: none;
}

.mission-section p,
.values-section p,
.team-section p,
.impact-section p,
.contact-info-section p,
.faq-section p {
    line-height: 1.8;
}

.values-section .card,
.contact-info-section .card,
.team-section .card,
.impact-section .stat-card {
    border-radius: 20px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-info-section .card:hover,
.values-section .card:hover {
    transform: translateY(-6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 45px rgba(15, 15, 15, 0.15);
}

.contact-info-section .card ul li,
.values-section .card p {
    font-size: 0.95rem;
}

.faq-section .accordion-button {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-item {
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 16px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.impact-section {
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.about-overview-section .card,
.content-hub-section .card {
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-overview-section .card:hover,
.content-hub-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
}

.about-overview-section .border {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05);
}

.content-hub-section ul li {
    line-height: 1.6;
}

.ad-center {
    display: flex;
    justify-content: center;
    margin: 12px 0;
  }


/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    padding: 0.5rem 0 !important;
}

.dropdown-item {
    color: #000000 !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.2s ease;
    background-color: transparent !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    border: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f0f9f7 !important;
    color: #00d4aa !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #00d4aa !important;
    color: #ffffff !important;
}

.dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1) !important;
    margin: 0.5rem 0 !important;
}

/* Override Bootstrap dropdown styling globally */
.dropdown-menu > li > a,
.dropdown-menu a {
    color: #000000 !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu a:hover {
    color: #00d4aa !important;
    background-color: #f0f9f7 !important;
}

/* Dark theme dropdown override */
body.dark-theme .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.dark-theme .dropdown-item,
body.dark-theme .dropdown-menu a {
    color: #000000 !important;
    background-color: transparent !important;
}

body.dark-theme .dropdown-item:hover,
body.dark-theme .dropdown-item:focus,
body.dark-theme .dropdown-menu a:hover {
    background-color: #f0f9f7 !important;
    color: #00d4aa !important;
}

body.dark-theme .dropdown-item.active,
body.dark-theme .dropdown-item:active {
    background-color: #00d4aa !important;
    color: #ffffff !important;
}


