:root {
    --bg-color: #ffffff;
    --text-primary: #202124;
    /* Google Grey 900 */
    --text-secondary: #5f6368;
    /* Google Grey 700 */
    --brand-cyan: #00796b;

    /* Darker Teal for white bg */
    --brand-purple: #6200ea;
    /* Deep Purple */
    --brand-blue: #1a73e8;
    /* Google Blue */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: 15px;
    --font-main: 'Outfit', sans-serif;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



/* Vertical Testimonials */
.vertical-testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    /* Optional: limit width for readability */
    margin: 0 auto;
}

/* Video Facade */
.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-facade:hover .video-thumb {
    opacity: 0.6;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.video-facade:hover .play-button {
    transform: scale(1.1);
}

/* Video Mute Indicator */
.video-mute-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
    /* Ensure it stays on top */
}

.video-container:hover .video-mute-indicator {
    opacity: 0;
}



/* Scrolling 3-Column Grid */
/* Auto-Scrolling Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .testimonial-card {
    /* 3 cards visible: (100% of viewport - 2 gaps) / 3 */
    /* using vw to ensure consistency relative to viewport if container is full width */
    /* properly calculating width based on container would be ideal, but for marquee flexible width with min-width is safer */
    flex: 0 0 400px;
    max-width: 400px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by half the width of the track (assuming 2 sets of identical cards) */
        transform: translateX(-50%);
    }
}

/* Mobile responsive for marquee */
@media (max-width: 768px) {
    .marquee-track .testimonial-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}



/* Mobile responsive for scrolling grid */




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* --- Optimization Helper Classes (Refactored from Inline Styles) --- */

.p-20 {
    padding: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.fs-18 {
    font-size: 1.8rem !important;
}

.opacity-80 {
    opacity: 0.8;
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Specific Section Styles */

.hero-feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.hero-feature-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-lg {
    font-size: 1.2rem;
}

.institutions-section {
    padding: 40px 0;
    text-align: center;
}

.institutions-logos-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.instructor-card {
    text-align: left;
    display: flex;
    gap: 30px;
    align-items: center;
}

.instructor-img {
    flex: 0 0 150px;
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    background: #ddd;
}

@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
}




/* Typography Helpers */
.highlight {
    color: var(--brand-blue);
}

.gradient-text {
    background: linear-gradient(to right, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brand-blue);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Countdown */
.countdown-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.time-unit {
    background: white;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
}

.time-val {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Gallery / Work Section */
.work-section {
    padding: 80px 0;
}


/* Update: Gallery Grid changed to Marquee, removing old grid styles */
/* The marquee-container and marquee-track are reused */

.marquee-track .gallery-item {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--card-shadow);
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.gallery-item {
    flex: 0 0 300px;
    /* Fixed width for scrolling items */
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    box-shadow: var(--card-shadow);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    border-color: var(--brand-blue);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Social Notification Popup */
.notification-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.notify-popup {
    background: white;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--brand-blue);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    width: 300px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease forwards, fadeOut 0.5s ease 4s forwards;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notify-icon {
    font-size: 1.5rem;
}

.notify-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.notify-content strong {
    color: var(--brand-blue);
}

.notify-time {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 2px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    box-shadow: var(--card-shadow);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-blue);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger Animation State */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn-primary {
    background: var(--brand-blue);
    color: white !important;
    padding: 12px 30px;
    border-radius: 8px;
    /* Slightly squarer for clean look */
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1557b0;
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.4);
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary.large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-secondary {
    background: white;
    color: var(--brand-blue);
    padding: 14px 40px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    background: #f8f9fa;
}

/* Sections */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Gives more text space */
    gap: 50px;
    align-items: center;
}

.hero-text-col {
    /* Left column styles */
    max-width: 100%;
}



/* Mobile Responsive adjustment for Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on tablets/mobile */
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .countdown-box {
        justify-content: center !important;
    }
}

.badge {
    background: #e8f0fe;
    color: var(--brand-blue);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
}

.subtitle {
    margin-bottom: 40px;
    max-width: 500px;
    color: var(--text-secondary);
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    border-left: 3px solid var(--brand-blue);
    padding-left: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Instructor */
.instructor-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.center-text {
    text-align: center;
}

/* Checkout */
.checkout-section {
    text-align: center;
    background: white;
    padding-bottom: 50px;
}

.price-box {
    font-size: 2rem;
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-right: 15px;
}

.final-price {
    color: var(--brand-blue);
    font-weight: 700;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(26, 115, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

footer {
    margin-top: 100px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    /* row gap, col gap */
}

.feature-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-list li span {
    font-size: 1.5rem;
    margin-right: 15px;
    background: #e8f0fe;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brand-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    /* Navbar Mobile */
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        /* Below navbar */
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Hero adjustments */
    .hero-content {
        padding: 20px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        border: none;
        padding: 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stats .stat {
        align-items: center;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    /* Countdown responsive */
    .countdown-box {
        gap: 10px !important;
    }

    .time-unit {
        min-width: 60px;
        padding: 10px;
    }

    .time-val {
        font-size: 1.5rem;
    }

    .cert-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .instructor-card {
        flex-direction: column;
        text-align: center !important;
    }

    .instructor-card img {
        margin: 0 auto;
    }

    /* Certificate Mobile Fixes */
    .cert-section {
        padding: 60px 20px;
    }

    .cert-layout {
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .cert-text {
        text-align: center;
        order: 1;
    }

    .cert-visual {
        order: 2;
    }

    .cert-text,
    .cert-visual {
        width: 100%;
    }

    .cert-text .feature-list {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 20px;
        /* Reduced gap for tighter list */
        margin-top: 20px;
    }

    .cert-text .feature-list li {
        justify-content: flex-start;
        display: flex;
        gap: 15px;
    }
}

/* Stats Section */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    min-width: 200px;
    background: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 5px;
}

.stat-desc {
    color: var(--text-secondary);
}

/* Certificate */
.cert-section {
    overflow: hidden;
}

.cert-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


.cert-mockup {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    font-family: Serif;
    border: 1px solid #eee;
}

.cert-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--brand-purple);
    pointer-events: none;
}

.cert-name {
    display: block;
    font-size: 1.8rem;
    margin: 20px 0;
    font-family: 'Great Vibes', cursive, serif;
    /* Fallback to standard serif if not loaded */
    color: var(--brand-purple);
    border-bottom: 1px solid #ddd;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
    /* Arbitrary large height */
}

.toggle {
    font-size: 1.5rem;
    color: var(--brand-blue);
    transition: transform 0.3s;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Footer */
.main-footer {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 50px;
    background: #f8f9fa;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--brand-purple);
    transform: translateY(-2px);
}



.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
}

/* Outcomes Checklist */
.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
}

/* Emoji List (No checkmarks) */
.emoji-list {
    list-style: none;
    margin-top: 20px;
    /* Reverted to vertical list as per request */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.emoji-list li {
    font-size: 1.1rem;
    margin-bottom: 0;
    /* Let grid handle spacing */
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}




/* Outcomes Card Layout */
.outcomes-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.outcomes-content {
    flex: 1;
}

.outcomes-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Instructor Card Responsive */
@media (max-width: 768px) {
    .outcomes-card {
        flex-direction: column;
        text-align: center;
    }

    .emoji-list li {
        justify-content: center;
    }

    .instructor-card {
        flex-direction: column !important;
        text-align: center !important;
    }

    .instructor-card>div:first-child {
        margin: 0 auto 20px auto;
    }

    .instructor-card>div:first-child {
        margin: 0 auto 20px auto;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    color: #FFF;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional Stagger for list items */
.feature-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-list li:nth-child(4) {
    transition-delay: 0.4s;
}

/* Payment Button */
.pay-btn {
    background-color: var(--brand-blue);
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 220px;
    text-align: center;
    text-decoration: none;
    /* Added for <a> usage */
    display: inline-block;
    /* Added for <a> usage */
}

.pay-btn:hover {
    background-color: #43a047;
    color: white;
    /* Ensure hover text color stays white */
}

/* Enhanced Notification System */
#notification-area {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 14px 16px;
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-400px);
    transition: transform 0.4s ease-out;
    z-index: 1000;
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-popup.hide {
    transform: translateX(-400px);
}

.popup-content {
    flex: 1;
}

.popup-text {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 2px;
}

.popup-role {
    color: #1976d2;
    font-weight: 600;
}

.popup-location {
    color: #666;
    font-weight: 500;
}

.popup-time {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
}

.close-btn {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
}

.close-btn:hover {
    color: #666;
}

.rating-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 16px 18px;
    max-width: 340px;
    transform: translateX(-400px);
    transition: transform 0.4s ease-out;
    z-index: 1000;
}

.rating-popup.show {
    transform: translateX(0);
}

.rating-popup.hide {
    transform: translateX(-400px);
}

.rating-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.rating-text {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.rating-value {
    font-weight: 700;
    color: #1976d2;
    font-size: 18px;
}

.rating-count {
    color: #666;
    font-size: 13px;
}