/* Global Variables & Reset */
:root {
    --primary-color: #FF2E2E;
    --secondary-color: #00C2CB;
    --text-color: #1F2937;
    --bg-color: #FFFFFF;
    --footer-bg: #111827;
    --white: #FFFFFF;

    --font-main: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    /* Premium Mesh Gradient Background */
    background-color: #f3f4f6;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 46, 46, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 194, 203, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 46, 46, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(255, 46, 46, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 194, 203, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 46, 46, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 194, 203, 0.2) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Utility - ULTRA CLEAR */
.glass-effect,
.id-card,
.pillar-item,
.offer-card,
.roadmap-item,
.testimonial-card,
.faq-item,
.stat-card,
.card {
    /* Much lower opacity for real "glass" look */
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Frosted border */
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    color: var(--text-color);
}

/* Enhancing Hover for Glass Cards */
.id-card:hover,
.pillar-item:hover,
.offer-card:hover,
.roadmap-item:hover,
.testimonial-card:hover,
.card:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-8px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 1.125rem;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 46, 46, 0.3);
}

.btn-primary:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 46, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

section {
    padding: var(--section-padding);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    /* Accounts for fixed header */
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, rgba(255, 46, 46, 0.05) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
}

/* Identity Section (About + Mission/Vision) */
.identity-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.identity-content {
    max-width: 600px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.6;
}

.feature-highlight {
    background: #F9FAFB;
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 24px;
    color: var(--secondary-color);
    background: rgba(255, 46, 46, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #4B5563;
}

/* Identity Cards */
.identity-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.id-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.id-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.vision-card .card-icon-bg {
    background: rgba(0, 194, 203, 0.1);
    color: var(--secondary-color);
}

.mission-card .card-icon-bg {
    background: rgba(0, 194, 203, 0.1);
    color: var(--secondary-color);
}

.id-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.id-card p {
    font-size: 1.05rem;
    color: #6B7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Simple responsive check */
@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Target Audience */
.audience {
    background-color: #F9FAFB;
}

.audience-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 194, 203, 0.15);
}

.card h3 {
    margin-top: 20px;
    color: var(--text-color);
}

.card-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Core Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 50px;
}

.pillar-item {
    padding: 30px;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 194, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotateY(360deg);
}



/* How It Works Section */
.how-it-works {
    text-align: center;
    background-color: var(--white);
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 50px;
    /* Center with icons */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #E5E7EB;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 10px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px var(--white);
    /* White ring to mask line */
}

.timeline-step:hover .step-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 0 10px var(--white), 0 10px 20px rgba(255, 46, 46, 0.2);
}

.step-content {
    margin-top: 20px;
}

.step-number {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #6B7280;
}

/* Testimonials Section */
.testimonials {
    background-color: #F3F4F6;
    text-align: center;
    position: relative;
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    padding: 20px 5px;
    /* Add padding for shadow visibility */
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navigation Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-btn {
    background: var(--white);
    border: 1px solid #E5E7EB;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #D1D5DB;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

.quote-icon {
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 20px;
    font-size: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 20px;
}

.user-details h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-details span {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Community Section */
.community {
    background: var(--text-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
}

/* Simple background pattern */
.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 194, 203, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 46, 46, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.community h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.community p {
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Instagram Profile Card Mockup */
.instagram-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.insta-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    max-width: 450px;
    width: 100%;
    color: #000000;
    text-align: left;
    border: 1px solid #dbdbdb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.insta-header-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    /* Ensure full width usage */
}

.insta-profile-pic {
    width: 70px;
    /* Reduced slightly */
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    padding: 2px;
    margin-right: 15px;
    /* Reduced margin */
    flex-shrink: 0;
}

.insta-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.insta-stats-mobile {
    display: flex;
    flex: 1;
    justify-content: space-between;
    /* Use space-between instead of around */
    text-align: center;
    gap: 10px;
    /* Reduced gap */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    /* Allow shrinking */
}

.stat-count {
    font-weight: 600;
    font-size: 16px;
    /* Slightly reduced */
    color: #000000;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    /* Slightly reduced */
    color: #000000;
    font-weight: 400;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Extra small devices */
@media (max-width: 380px) {
    .insta-profile-pic {
        width: 60px;
        height: 60px;
        margin-right: 8px;
    }

    .stat-label {
        font-size: 11px;
        /* Reduced to fit 'Following' */
        /* letter-spacing: -0.5px; */
        /* Tighten text */
    }

    .stat-count {
        font-size: 14px;
    }

    .insta-stats-mobile {
        gap: 2px;
        /* Minimal gap */
    }
}

.insta-bio-mobile {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 20px;
}

.username-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.username {
    font-weight: 700;
    font-size: 0.95rem;
    color: #000000;
}

.verified-badge {
    color: #3897f0;
    font-size: 0.8rem;
}

.category-label {
    color: #000000;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.bio-text {
    margin-bottom: 5px;
}

.website-link {
    color: #00376b;
    text-decoration: none;
    font-weight: 600;
}

.website-link:hover {
    text-decoration: underline;
}

.insta-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.insta-btn {
    flex: 1;
    padding: 6px 0;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.insta-btn.primary {
    background-color: #0095f6;
    color: white;
}

.insta-btn.secondary {
    background-color: #efefef;
    color: #000000;
    border: 1px solid #dbdbdb;
}

.insta-btn:hover {
    opacity: 0.8;
}

.insta-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    border-top: 1px solid #dbdbdb;
    padding-top: 15px;
}

.gallery-item {
    background-color: #efefef;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    opacity: 0.9;
}

.insta-follow-btn-external {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    transition: all 0.3s ease;
}

.insta-follow-btn-external:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
    color: white;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

.no-news,
.error-msg {
    text-align: center;
    width: 100%;
    color: #6b7280;
    padding: 20px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-line {
        width: 4px;
        height: 100%;
        left: 50px;
        /* Align with icons based on new layout */
        top: 0;
        transform: translateX(-50%);
        display: block;
        /* Ensure it stays */
    }

    .timeline-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        padding-left: 0;
    }

    .step-icon {
        margin: 0 20px 0 0;
        /* Right margin for spacing */
        width: 80px;
        height: 80px;
        font-size: 28px;
        flex-shrink: 0;
        border-width: 3px;
        background-color: var(--white);
        /* Ensure it covers the line */
        z-index: 2;
    }

    .step-content {
        margin-top: 10px;
    }

    .audience-grid {
        flex-direction: column;
    }

    .testimonial-slide {
        min-width: 100%;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #F9FAFB;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F3F4F6;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.faq-question i {
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p,
.faq-answer ul {
    padding: 20px;
    margin-bottom: 0;
    color: #4B5563;
    border-top: 1px solid #E5E7EB;
}

.faq-answer ul {
    padding-left: 40px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
}

/* Community Section Redesign */
.community {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
}

/* Background Pattern Overlay */
.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 194, 203, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 46, 46, 0.15) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.community-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.community h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community p {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 50px;
}

.community strong {
    color: var(--white);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: #CBD5E1;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin-bottom: 0;
}

/* CTA Styling */
.btn-lg {
    padding: 16px 48px;
    font-size: 1.2rem;
    border-radius: 50px;
    /* Pill shape */
}

.cta-subtext {
    font-size: 0.9rem !important;
    color: #64748B !important;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive Community */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .community h2 {
        font-size: 2rem;
    }
}

/* Vision & Mission */
.vision-mission {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.vision-mission-grid {
    display: flex;
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-color);
}

.vm-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Waht We Offer - Legacy styles removed. Now uses Unified Premium Grid System */
.offerings {
    background-color: #F3F4F6;
    padding: 80px 0;
}


@media (max-width: 768px) {
    .vision-mission-grid {
        flex-direction: column;
    }
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: #F3F4F6;
}

.why-card i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: #6B7280;
}

/* Expanded Audience Grid */
.audience-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.audience-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.audience-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.audience-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.audience-card h4 {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid-expanded {
        grid-template-columns: 1fr;
    }
}

/* Roadmap, Offerings & Pillars Section - Vertical Glowing Timeline */
.roadmap,
.pillars {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Timeline/Stack Container (Roadmap & Pillars Only) */
.roadmap-grid,
.pillar-grid {
    display: block;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

/* Central Glowing Line (Roadmap Only) */
.roadmap-grid::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), var(--primary-color), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 15px rgba(0, 194, 203, 0.5);
    border-radius: 2px;
}

/* Glass Cards (Shared Base) */
.roadmap-item,
.pillar-card,
.offer-card,
.why-card,
.audience-card {
    padding: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    /* Glass opacity */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

/* Stack Specific Items (Roadmap & Pillars) */
.roadmap-item,
.pillar-card {
    width: 45%;
    margin-bottom: 50px;
    clear: both;
}

/* Initial hidden state for roadmap items (for scroll animation) */
.roadmap-item {
    opacity: 0.5;
    transform: translateY(20px);
    filter: blur(2px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

/* Alternating Sides (Roadmap & Pillars) */
.roadmap-item:nth-child(odd),
.pillar-card:nth-child(odd) {
    float: left;
    text-align: right;
    border-right: 4px solid var(--secondary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.roadmap-item:nth-child(even),
.pillar-card:nth-child(even) {
    float: right;
    text-align: left;
    border-left: 4px solid var(--primary-color);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

/* Glowing Markers (Roadmap) */
.roadmap-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    top: 30px;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(0, 194, 203, 0.2), 0 0 10px var(--secondary-color);
    transition: all 0.3s ease;
}

/* Program Numbers (Pillars & Offers) */
.program-number {
    position: absolute;
    font-size: 5rem;
    font-weight: 800;
    top: -20px;
    opacity: 0.15;
    z-index: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Partner Logos (Verticals) */
.vertical-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

/* Positioning Markers & Numbers (Stack Context) */
.roadmap-item:nth-child(odd) .roadmap-marker {
    right: -66px;
}

.pillar-card:nth-child(odd) .program-number {
    right: auto;
    left: 20px;
    /* Pillars adjusted to left */
    color: var(--secondary-color);
}

.roadmap-item:nth-child(even) .roadmap-marker {
    left: -66px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 46, 46, 0.2), 0 0 10px var(--primary-color);
}

.pillar-card:nth-child(even) .program-number {
    left: auto;
    right: 20px;
    /* Pillars adjusted to right */
    color: var(--primary-color);
}

/* Offerings Number Positioning (Grid Context) */
.offer-card .program-number {
    right: 20px;
    color: var(--primary-color);
    /* Default to primary */
}

/* Connector Lines (Roadmap) */
.roadmap-item::before {
    content: '';
    position: absolute;
    top: 38px;
    width: 56px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(odd)::before {
    right: -56px;
}

.roadmap-item:nth-child(even)::before {
    left: -56px;
}

/* Unified Hover Effects */
.roadmap-item:hover,
.pillar-card:hover,
.offer-card:hover,
.why-card:hover,
.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.roadmap-item:hover .roadmap-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 194, 203, 0.4), 0 0 20px var(--secondary-color);
}

.pillar-card:hover .program-number,
.offer-card:hover .program-number {
    opacity: 0.3;
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
}

.roadmap-item:nth-child(even):hover .roadmap-marker {
    box-shadow: 0 0 0 8px rgba(255, 46, 46, 0.4), 0 0 20px var(--primary-color);
}

.roadmap-item:hover::before {
    background: var(--secondary-color);
    width: 56px;
}

.roadmap-item:nth-child(even):hover::before {
    background: var(--primary-color);
}

/* Fix floating clearing */
.roadmap-grid::after,
.pillar-grid::after {
    clear: both;
}

/* =========================================
   Roadmap Scroll Animation States (Restored)
   ========================================= */
.roadmap-grid.animating .roadmap-item {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    z-index: 2;
    /* Ensure items sit above the line */
    position: relative;
    /* Needed for z-index */
}

.roadmap-grid.animating .roadmap-item.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Active State for Marker (mimics hover) */
.roadmap-item.active .roadmap-marker {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(0, 194, 203, 0.3), 0 0 15px var(--secondary-color);
}

.roadmap-item:nth-child(even).active .roadmap-marker {
    box-shadow: 0 0 0 6px rgba(255, 46, 46, 0.3), 0 0 15px var(--primary-color);
}

/* Connectors Active State */
.roadmap-item.active::before {
    background: var(--secondary-color);
    width: 56px;
}

.roadmap-item:nth-child(even).active::before {
    background: var(--primary-color);
}

/* Progress Line (Animated) - Previously Missing */
.roadmap-line-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    height: 0%;
    /* JS grows this */
    transition: height 0.1s linear;
    box-shadow: 0 0 15px rgba(0, 194, 203, 0.6);
    /* Glow */
    z-index: 1;
}


/* =========================================
   Unified Premium Grid System (Offerings, Why Choose, Audience)
   ========================================= */

.offer-grid,
.why-grid,
.audience-grid-expanded {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

/* Grid Columns */
.offer-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 Cols for 10 items */
}

.why-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 Cols for 3 items */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.audience-grid-expanded {
    grid-template-columns: repeat(3, 1fr);
    /* 3 Cols for 6 items */
}

/* Override Specific Styles to Match Premium Card Base */
.why-card,
.audience-card,
.offer-card,
.pillar-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.why-card i,
.audience-card i,
.offer-card i,
.pillar-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(135deg, var(--secondary-color), #3B82F6);
    background: linear-gradient(135deg, var(--secondary-color), #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 20px rgba(0, 194, 203, 0.2);
}

.why-card h3,
.audience-card h4,
.offer-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.offer-card h4 {
    font-size: 1.2rem;
    z-index: 1;
    /* Above number */
}

/* Mobile Responsiveness for Grids */
@media (max-width: 992px) {

    .offer-grid,
    .why-grid,
    .audience-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {


    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* Force strictly equal width */
        gap: 15px;
        padding: 0 20px;
        /* Increased to stop edge sticking */
        box-sizing: border-box;
    }

    .why-grid,
    .audience-grid-expanded {
        grid-template-columns: 1fr;
    }
}

/* Content Styling */
.roadmap-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.roadmap-content p {
    font-size: 1rem;
    color: #4B5563;
    margin: 0;
}

/* Mobile Responsiveness for Timeline/Stack (Roadmap/Pillars) */
@media (max-width: 768px) {

    .roadmap-grid,
    .pillar-grid {
        margin-left: 20px;
        margin-right: 20px;
    }

    .roadmap-grid {
        border-left: 4px solid var(--secondary-color);
        padding-left: 30px;
    }

    .pillar-grid {
        padding-left: 0;
        /* No border for pillars stack */
    }

    .roadmap-grid::after {
        display: none;
    }

    .roadmap-item {
        width: 100%;
        float: none;
        margin-bottom: 30px;
        text-align: left;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.6);
    }

    /* Cancel Odd/Even Floats & Borders for Stack */
    /* Container Settings for Mobile Zig-Zag (Reset Grid) */
    .pillar-grid {
        display: block;
        margin-left: 4px;
        margin-right: 4px;
        padding-left: 0;
    }

    /* Cancel Odd/Even Floats & Borders for Stack (Roadmap ONLY) */

    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        float: none;
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    /* Roadmap Stack Accents */
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        border-left: 4px solid var(--secondary-color);
    }

    .roadmap-item:nth-child(even) {
        border-left-color: var(--primary-color);
    }

    /* Pillars Mobile Zig-Zag Layout (Restoring Desktop Feel) */
    .pillar-card {
        width: 85%;
        margin-bottom: 100px;
        clear: both;
        float: none;
        padding: 30px;
    }

    .pillar-card:nth-child(odd) {
        float: left;
        margin-right: auto;
        text-align: right;
        border-right: 4px solid var(--secondary-color);
        border-left: 1px solid rgba(255, 255, 255, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.6);
        /* Reset top border */
    }

    .pillar-card:nth-child(even) {
        float: right;
        margin-left: auto;
        text-align: left;
        border-left: 4px solid var(--primary-color);
        border-right: 1px solid rgba(255, 255, 255, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.6);
        /* Reset top border */
    }



    .roadmap-marker,
    .roadmap-item::before {
        display: none;
    }

    /* Adjust Number Position for Mobile Pillars */
    /* Restore Desktop Number Position for Mobile Pillars */
    .pillar-card:nth-child(odd) .program-number {
        left: 15px;
        right: auto;
        top: -20px;
        font-size: 5rem;
    }

    .pillar-card:nth-child(even) .program-number {
        right: 15px;
        left: auto;
        top: -20px;
        font-size: 5rem;
    }
}

/* About Us Redesign */
.about {
    background-color: var(--white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 25px;
    font-size: 2.8rem;
}

.about-list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    gap: 25px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.about-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-card {
    background: #F9FAFB;
    padding: 50px;
    border-radius: 20px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 200px;
    color: rgba(255, 46, 46, 0.03);
    font-family: serif;
    line-height: 1;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-card {
        padding: 40px 30px;
        text-align: left;
    }
}

/* Responsive adjustments for 3-column grids */


@media (max-width: 576px) {

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Center the last item (Digital Learning Modules) in the 3-column grid */
.offer-grid .offer-card:last-child {
    grid-column: 2;
}

/* Reset for responsiveness */
@media (max-width: 992px) {
    .offer-grid .offer-card:last-child {
        grid-column: auto;
    }
}

/* Force Mobile Grid styles at the end to override previous rules */
@media (max-width: 600px) {
    .offer-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 15px !important;
        padding: 0 20px !important;
        width: 100% !important;
        margin: 0 auto !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .offer-grid .offer-card {
        padding: 15px !important;
    }

    .offer-grid .offer-card h4 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }

    .offer-grid .offer-card i {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
}

/* Increase font size for section headings (h5) as requested */
h5 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fix navbar button text color */
.nav-links .btn-primary {
    color: var(--white);
}

/* Premium Animations - Staggered Entry */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Premium Card Hover - Lift & Glow */
.premium-hover {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.premium-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(0, 194, 203, 0.1);
}

/* Advanced Hero Animations */
.hero-text h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Premium Navbar - Glassmorphism & Scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 80px;
    /* Shrinks on scroll */
    transition: all 0.4s ease;
}

.navbar {
    transition: all 0.4s ease;
}

/* Animated 'WHO WE ARE' Staggered Chars */
.char-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px) rotate(5deg);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.char-reveal.visible span {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Ensure sections are transparent so body background shows through */
section,
.about,
.identity-section,
.roadmap,
.faq,
.testimonials,
.programs {
    background-color: transparent !important;
}

/* Fix specific backgrounds that might block the mesh */
.feature-highlight {
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.4);
}

.faq-answer {
    background-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   "How It Works" / Easy Steps Timeline
   (Mirrors Roadmap Logic for consistency)
   ========================================= */
/* =========================================
   "How It Works" (Restored Vertical Design)
   ========================================= */
.how-it-works {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 10;
    /* Ensure it sits on top if needed */
}

/* Container for the specific step items */
.steps-grid {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 80px;
    /* Increased padding */
    /* Space for the line */
}

/* Static Rail (Left Side) */
.steps-grid::before {
    content: '';
    position: absolute;
    left: 40px;
    /* Moved inward */
    /* Line position */
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
    /* Light grey rail */
    z-index: 0;
}

/* Animated Progress Line */
.steps-line-progress {
    position: absolute;
    left: 40px;
    /* Aligned with rail */
    top: 0;
    width: 2px;
    background: var(--primary-color);
    /* Red fill */
    height: 0%;
    transition: height 0.2s linear;
    z-index: 1;
}

/* Step Item Container */
.steps-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    clear: both;
    z-index: 2;
    /* Ensure items (and markers) sit above the line */

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-item.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Marker Circle (Icon Container) */
.steps-marker {
    position: absolute;
    left: -70px;
    /* Calculated: 10px (pos) - 80px (padding) */
    /* - (padding-left) */
    top: 0;
    width: 60px;
    /* Increased size */
    height: 60px;
    /* Increased size */
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px #ffffff;
    /* White breathing room around line */
    transition: all 0.3s ease;
}

.steps-marker i {
    color: var(--primary-color);
    font-size: 1.5rem;
    /* Increased icon size */
}

/* Marker Active State */
.steps-item.active .steps-marker {
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(255, 46, 46, 0.2);
}

.steps-item.active .steps-marker i {
    color: #ffffff;
}

/* Content Styling */
.steps-content {
    margin-left: 10px;
    /* Adjusted margin */
}

.step-label {
    color: var(--secondary-color);
    /* Teal */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.steps-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    /* Dark text */
    margin-bottom: 10px;
}

.steps-content p {
    color: #6B7280;
    /* Grey text */
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-grid {
        padding-left: 70px;
    }

    .steps-grid::before,
    .steps-line-progress {
        left: 30px;
    }

    .steps-marker {
        left: -64px;
        width: 48px;
        height: 48px;
    }

    .steps-marker i {
        font-size: 1.2rem;
    }

    .steps-content h3 {
        font-size: 1.3rem;
    }
}

/* =========================================
   Global Scroll Animation (Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Mobile Menu Refinements (Drawer Style)
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        /* height: 100vh;  Removed full height */
        top: 80px;
        /* Below navbar */
        background: rgba(255, 255, 255, 0.98);
        /* Less transparent for readability */
        display: flex;
        /* Kept flex */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Start from top */
        width: 100%;
        /* Full width slide down */
        height: auto;
        padding: 40px 0;
        clip-path: inset(0 0 100% 0);
        /* Hidden by clipping from bottom up */
        -webkit-clip-path: inset(0 0 100% 0);
        transition: all 0.5s ease-in-out;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        pointer-events: none;
        /* Prevent clicks when hidden */
        gap: 20px;
    }

    .nav-links.active {
        clip-path: inset(0 0 0 0);
        /* Fully visible */
        -webkit-clip-path: inset(0 0 0 0);
        pointer-events: all;
    }

    .nav-links li {
        margin: 10px 0;
        /* Simpler spacing */
        opacity: 0;
        /* Fade in staggered */
        transform: translateY(-10px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease 0.2s;
        /* Simple fade in */
    }

    /* Stagger delay logic is handled in JS or we can add nth-child delays here if needed */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }
}

/* =========================================
   Future Roadmap Mobile Parity
   (Restores Vertical Timeline on Mobile)
   ========================================= */
/* =========================================
   Future Roadmap Mobile Parity
   (Restores Desktop-Style Zig-Zag on Mobile)
   ========================================= */
@media (max-width: 768px) {

    /* Container: Reset to Center Line */
    .roadmap-grid {
        position: relative;
        padding-left: 0 !important;
        /* Remove left padding */
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100%;
        margin-top: 40px;
    }

    /* Force the Progress Line to Center */
    .roadmap-line-progress {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 4px !important;
        height: 100%;
        /* Will be controlled by JS, but max height */
        display: block !important;
    }

    /* Force Static Rail to Center if used */
    .roadmap-grid::before {
        display: none !important;
        /* Hide static rail if it conflicts, rely on animated line or add static center line */
    }

    /* Items - Mini Zig Zag with Vertical Stacking */
    .roadmap-item {
        width: 45% !important;
        /* Slightly wider */
        margin-bottom: 100px !important;
        position: relative;
        clear: both !important;
        /* Force vertical stacking (not side-by-side) */
    }

    /* Odd Items (1, 3, 5) -> LEFT Side (User Preference "AI Mentorship Left") */
    .roadmap-item:nth-child(even) {
        float: right !important;
        text-align: left !important;
        margin-left: auto !important;
        margin-right: 5px !important;
        padding-left: 20px !important;
        padding-right: 5px !important;
        border-left: 3px solid var(--primary-color) !important;
        border-right: none !important;
    }

    /* Even Items (2, 4, 6) -> RIGHT Side (User Preference NOT APPLICABLE - SWAPPED) */
    /* Actually: Item 2 (Child 3) -> Left */
    .roadmap-item:nth-child(odd) {
        float: left !important;
        text-align: right !important;
        margin-right: auto !important;
        margin-left: 5px !important;
        padding-right: 20px !important;
        padding-left: 5px !important;
        border-right: 3px solid var(--secondary-color) !important;
        border-left: none !important;
    }

    /* Markers - Centered on the Line */
    .roadmap-marker {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        width: 20px !important;
        /* Smaller marker for mobile */
        height: 20px !important;
        border-width: 3px !important;
        z-index: 5;
    }

    /* Prior Odd Marker (now Even/Right) */
    .roadmap-item:nth-child(even) .roadmap-marker {
        left: -29px !important;
        /* Adjust based on padding/width */
        right: auto !important;
    }

    /* Prior Even Marker (now Odd/Left) */
    .roadmap-item:nth-child(odd) .roadmap-marker {
        right: -29px !important;
        left: auto !important;
    }

    /* Connectors - Hide or Shorten */
    .roadmap-item::before {
        display: block !important;
        width: 15px !important;
        /* Short connector */
        top: 8px !important;
        /* Align with smaller marker */
        height: 2px !important;
    }

    /* Prior Odd Connector (now Even/Right) */
    .roadmap-item:nth-child(even)::before {
        left: -15px !important;
        right: auto !important;
    }

    /* Prior Even Connector (now Odd/Left) */
    .roadmap-item:nth-child(odd)::before {
        right: -15px !important;
        left: auto !important;
    }

    /* Compact Typography */
    .roadmap-content h3 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    .roadmap-content p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    /* Hover/Active States */
    .roadmap-item.active .roadmap-marker {
        background: var(--secondary-color) !important;
    }

    .roadmap-item:nth-child(odd).active .roadmap-marker {
        background: var(--primary-color) !important;
    }

    /* Fix Testimonial Buttons Stretching & Overflow */
    .slider-btn {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .slider-controls {
        gap: 10px !important;
        /* Bring buttons closer */
    }

    .slider-dots {
        gap: 5px !important;
        /* Bring dots closer */
        flex-wrap: wrap;
        /* Safety wrap if needed, though we want single line ideally */
        justify-content: center;
    }

    .dot {
        width: 8px !important;
        /* Smaller dots */
        height: 8px !important;
    }
}

/* =========================================
   Our Programs Section (Premium Cards)
   ========================================= */

.premium-card {
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-wrapper {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.card-image-wrapper img {
    transition: transform 0.5s ease;
}

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

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.status-badge.upcoming {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.status-badge.coming-soon {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    box-shadow: 0 4px 10px rgba(107, 114, 128, 0.3);
}

.premium-card.placeholder-card {
    border: 2px dashed #E5E7EB;
    box-shadow: none;
    background: #F9FAFB;
}

.premium-card.placeholder-card:hover {
    transform: none;
    border-color: #D1D5DB;
}

/* =========================================
   MedCafe Verticals (Advanced Glassmorphism & Overlaps)
   ========================================= */

.vertical-glass-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px 30px 30px;
    /* Top padding extra for floating icon */
    margin-top: 25px;
    /* Space for floating icon */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
    /* To clip the large number */
}

.vertical-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.v-number {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    transition: all 0.5s ease;
}

.vertical-glass-card:hover .v-number {
    color: rgba(59, 130, 246, 0.06);
    transform: scale(1.1) translate(-10px, 10px);
}

.v-icon-box {
    position: absolute;
    top: -25px;
    /* Floats half outside */
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vertical-glass-card:hover .v-icon-box {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
}

.v-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    margin-top: 10px;
}

.v-content p {
    color: #6B7280;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   MedCafe Verticals (Advanced Glassmorphism Grid)
   ========================================= */

.glass-vertical-card {
    position: relative;
    padding: 35px 30px 30px;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    text-align: left;
}

.glass-vertical-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.gv-number {
    position: absolute;
    font-size: 6.5rem;
    font-weight: 800;
    top: -15px;
    right: 5px;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    transition: all 0.5s ease;
    pointer-events: none;
}

.glass-vertical-card:hover .gv-number {
    color: rgba(0, 0, 0, 0.06);
    transform: scale(1.1) translate(-5px, 5px);
}

.gv-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-vertical-card:hover .gv-icon {
    transform: translateY(-5px) scale(1.1);
}

.gv-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    z-index: 2;
}

.gv-desc {
    position: relative;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
    z-index: 2;
}

/* =========================================
   Partnerships Section
   ========================================= */

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.partner-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.partner-card .logo-container {
    height: 100px;
    /* Fixed height for consistent alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.partner-card .logo-container img {
    max-width: 150px;
    max-height: 100%;
    object-fit: contain;
}

.partner-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.partner-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.partner-card-content p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.partner-card-content .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: auto;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Locations & Contact Section (Premium Theme)
   ========================================= */

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 45px 35px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    margin-top: 30px;
    /* Space for floating icon */
}

.contact-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.contact-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    border-radius: 24px 24px 0 0;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.contact-glass-card:hover .contact-glow {
    opacity: 0.8;
}

.contact-icon {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-glass-card:hover .contact-icon {
    transform: translateY(-5px) scale(1.1);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-content .sub-text {
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
}

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

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}

.contact-list .icon-wrap {
    width: 20px;
    display: flex;
    justify-content: center;
    padding-top: 3px;
    font-size: 1.1rem;
}

.hover-link {
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hover-link[data-color="#3B82F6"]:hover {
    color: #3B82F6;
}

.hover-link[data-color="#10B981"]:hover {
    color: #10B981;
}

.hover-link[data-color="#8B5CF6"]:hover {
    color: #8B5CF6;
}

.hover-link[data-color="#25D366"]:hover {
    color: #25D366;
}

/* =========================================
   AI Badge Shimmer Effect (Premium)
   ========================================= */

.ai-badge-wrapper {
    position: relative;
    display: inline-flex;
    padding: 1.5px;
    /* Subtle static border */
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.6));
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
    /* Soft outer glow */
    margin-bottom: 25px;
}

.ai-badge-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    /* Slight transparency for glass feel */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #3B82F6;
    padding: 7px 18px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    overflow: hidden;
    /* Contains the shimmer */
}

.ai-badge-content i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* The Shimmer/Shine Element */
.ai-badge-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 3.5s infinite ease-in-out;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    /* Sweeps quickly */
    100% {
        left: 200%;
    }

    /* Pauses before next sweep */
}

/* =========================================
   OB360 Modal Section
   ========================================= */

.ob360-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ob360-modal.show {
    opacity: 1;
}

.ob360-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.ob360-modal.show .ob360-modal-content {
    transform: scale(1);
}

.ob360-close {
    color: #9CA3AF;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.ob360-close:hover,
.ob360-close:focus {
    color: #1F2937;
    text-decoration: none;
}