/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


:root {
    --primary-blue: #0d1b4d;
    --python-yellow: #f7df1e;
    --accent-blue: #306998;
}


body {
    background-color: #0d1b4d; /* Dark Navy Background */
    color: white;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Typography */
.main-title {
    font-size: 4rem;
    color: #f7df1e; /* Python Yellow */
    margin-bottom: 10px;
}

.sub-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Glassmorphism Effect */
.glass-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
    font-size: 1.5rem;
}

/* Button Styling */
.cta-button {
    background-color: #4a76c5;
    color: white;
    border: 2px solid #7ea6f2;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #3b62ad;
}

.old-price {
    text-decoration: line-through;
    color: #f7df1e;
    margin-right: 5px;
}

/* Graphic Placeholder */
.graphic-container {
    background: radial-gradient(circle, #1a2a6c, #0d1b4d);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.python-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
     border-radius: 10px;
}

.py-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
     border-radius: 30px;
}

/* Bottom Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin-top: 50px;
}

.stat-card {
    background-color: #fffef2;
    color: #0d1b4d;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1rem;
    color: #2b4a8c;
}

/* Responsive */
@media (max-width: 768px) {
    .container { flex-direction: column; text-align: center; }
    .main-title { font-size: 3rem; }
}


.python-ai-features {
    background-color: #f0f2f5;
    padding: 80px 10%; /* Creates the side spacing you requested */
    font-family: 'Arial', sans-serif;
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

/* Benefit Items Animation */
.benefits-list {
    flex: 1;
}

.benefit-item {
    background: white;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    opacity: 0; /* For JS Animation */
    transform: translateY(20px);
}

.check-icon {
    color: #6a5acd;
    margin-right: 15px;
    font-size: 1.7rem;
}

/* Visual Card Styling */
.visual-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card img {
    max-width: 100%;
    height: auto;
}

.py-icon {
    border-radius: 20px;
}

/* Scarcity & Progress Bar */
.scarcity-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.status-text {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.progress-container {
    background: #e0e0e0;
    height: 25px;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    width: 0%; /* Initial state for animation */
    background: linear-gradient(90deg, #f7df1e, #ffd700);
    border-radius: 50px;
    position: relative;
    transition: width 2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.percentage-label {
    position: absolute;
    right: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    top: 50%;
    transform: translateY(-50%);
}

.hurry-text {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 25px;
}

/* CTA Button */
.enroll-btn {
    border: 3px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.enroll-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.old-price { text-decoration: line-through; opacity: 0.6; margin: 0 10px; }

/* Animation Classes */
.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-container { flex-direction: column; }
    .python-ai-features { padding: 40px 5%; }
}



.mentors-section {
    padding: 60px 10%;
    background-color: #f8faff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.section-title {
    color: #3b4d9b;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f4f9;
    padding: 40px 20px;
    border-radius: 15px;
}

.mentors-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

.mentor-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Initial state for animation */
    transform: translateY(30px);
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(59, 77, 155, 0.15);
}

.image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.institution {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.detail {
    color: #777;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* Navigation Buttons */
.nav-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #000;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    z-index: 10;
}

.nav-btn:hover { color: #3b4d9b; }

/* CTA Button */
.cta-wrapper { margin-top: 50px; }

.mentor-cta {
    background: white;
    border: 3px solid #3b4d9b;
    color: #3b4d9b;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mentor-cta:hover {
    background: #3b4d9b;
    color: white;
    transform: scale(1.05);
}

.strikethrough {
    text-decoration: line-through;
    margin: 0 5px;
    opacity: 0.6;
}

/* Intersection Observer Class */
.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container Spacing */
.certified-section, .scarcity-container {
    padding: 80px 12%; /* Controlled side spacing */
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f7fa;
    text-align: center;
}

.section-title {
    color: #2c3e8c;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.expert-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #dce4ff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-10px);
    border-color: #2c3e8c;
}

.brand-logo { height: 40px; margin-bottom: 20px; filter: grayscale(1); transition: 0.3s; }
.expert-card:hover .brand-logo { filter: grayscale(0); }

.iit-logo {
    font-weight: 900;
    font-size: 2rem;
    color: #444;
    margin-bottom: 20px;
}

/* Progress Bar Styling */
.scarcity-container { background-color: #f4f7fa; padding-top: 20px; }

.sold-out-text { color: #2c3e8c; margin-bottom: 15px; }

.progress-bar-bg {
    background: #e0e6ed;
    height: 24px;
    border-radius: 50px;
    margin: 20px auto;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%; /* Animated by JS */
    background: linear-gradient(90deg, #f7df1e, #ffd700);
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bar-label { padding-right: 10px; font-size: 16px; font-weight: bold; color: #333; }

.enroll-btn-outline {
    background: transparent;
    border: 2px solid #2c3e8c;
    color: #2c3e8c;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    transition: 0.3s;
}

.enroll-btn-outline:hover { background: #2c3e8c; color: #fff; }

.old-price { text-decoration: line-through; opacity: 0.6; margin: 0 5px; }

/* Animation States */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* --- Certified Experts Section Fix --- */
.certified-section {
    padding: 80px 12%;
    background-color: #f4f7fa; /* Light background */
    text-align: center;
    color: #000000; /* Force section base color to black */
}

.certified-section .section-title {
    color: #2c3e8c; /* Dark Blue for Title */
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.expert-card {
    background: #ffffff; /* White card */
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #dce4ff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Specifically target H3 and P inside Expert Cards */
.expert-card h3 {
    color: #000000 !important; /* Force Black */
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.expert-card p {
    color: #333333 !important; /* Dark Gray for better readability */
    font-size: 1.1rem;
    line-height: 1.5;
}

/* --- Scarcity Section Fix --- */
.scarcity-container {
    background-color: #f4f7fa; 
    padding: 40px 12%;
    text-align: center;
}

.sold-out-text {
    color: #2c3e8c; /* Blue color as per screenshot */
    font-weight: bold;
    font-size: 1.5rem;
}

.hurry-msg {
    color: #000000 !important; /* Force Black */
    font-weight: 600;
    margin-top: 15px;
}

/* Button text remains blue/white as per design */
.enroll-btn-outline {
    border: 2px solid #2c3e8c;
    color: #2c3e8c;
    background: transparent;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.enroll-btn-outline .old-price {
    color: #666666; /* Gray for strikethrough price */
    text-decoration: line-through;
}


/* Container styling with side spacing */
.trusted-by-section {
    padding: 60px 10%;
    background-color: #ffffff; /* Explicit white background */
    text-align: center;
    overflow: hidden;
}

/* Explicitly set title to Black/Dark Blue */
.trusted-title {
    color: #2c3e8c !important; /* Dark blue from your theme */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: sans-serif;
}

/* Slider logic */
.logo-slider {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: calc(250px * 12); /* Adjust based on logo width + gap */
    animation: scrollLogos 30s linear infinite;
}

.logo-track img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%); /* Optional: make them gray like the screenshot */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* The Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Slides half the track length */
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .trusted-title { font-size: 2rem; }
    .logo-track img { height: 30px; }
}

.why-join-section {
    padding: 80px 10%;
    background-color: #ffffff; /* Explicit background */
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.why-join-title {
    color: #2c3e8c !important; /* Explicit Dark Blue */
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #dce4ff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0; /* For JS animation */
    transform: scale(0.9);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(44, 62, 140, 0.1);
    border-color: #2c3e8c;
}

.icon-circle {
    background-color: #2c3e8c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.why-card p {
    color: #000000 !important; /* Force Black Text */
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* CTA Area */
.why-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.why-enroll-btn {
    border: 2px solid #2c3e8c;
    background: transparent;
    color: #2c3e8c !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.why-enroll-btn:hover {
    background: #2c3e8c;
    color: white !important;
}

.bonus-tag {
    background: #f1f3f7;
    color: #000000 !important; /* Force Black */
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
}

.bonus-tag strong {
    color: #d93025; /* Red for emphasis */
}

/* Animation triggers */
.reveal-pop.active {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-join-section { padding: 40px 5%; }
}

/* General Utility to force black text on light sections */
.light-bg-text h2, 
.light-bg-text p, 
.light-bg-text span {
    color: #000000 !important;
}

/* Slider Section */
.reports-slider-section {
    padding: 60px 10%;
    background-color: #f9fbff;
    text-align: center;
}

.section-heading {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e8c !important;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 320px;
    border-radius: 10px;
}

.report-slide {
    min-width: 100%;
    transition: transform 0.8s ease, opacity 0.8s ease;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
}

.slide-pair {
    display: flex;
    gap: 20px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slide-pair .report-slide {
    width: calc(50% - 10px); /* Two slides with 20px total gap (10px each side) */
    min-width: calc(50% - 10px);
    opacity: 1;
    position: static;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex: 1; /* Allow flex growth */
    box-sizing: border-box; /* Ensure consistent sizing */
}

.slide-pair .report-slide img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.report-slide.active {
    opacity: 1;
    position: relative;
    z-index: 10;
}

.report-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.report-slide img:hover {
    transform: scale(1.02);
}

.slider-arrow {
    background: white;
    border: 2px solid #2c3e8c;
    font-size: 2rem;
    cursor: pointer;
    color: #2c3e8c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: #2c3e8c;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #2c3e8c;
}

.dot:hover {
    background-color: #717171;
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 10%;
    background-color: #f9fbff;
}

.cta-blue-card {
    background: #0a194e; /* Deep Blue from your image */
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    overflow: hidden;
}

.timer-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #ff4d4d;
    padding: 5px 25px;
    transform: rotate(5deg);
    font-weight: bold;
    font-size: 1rem;
}

.cta-blue-card h2 { color: #fff !important; font-size: 2rem; margin-bottom: 20px; }
.cta-blue-card p { color: #ccc !important; font-size: 1.2rem; }
.cta-blue-card p span { color: #f7df1e !important; font-weight: bold; }

.highlight-text { color: #fff !important; margin-top: 20px; font-weight: bold; }
.sub-detail { color: #f7df1e !important; font-size: 1rem; margin-top: 10px; }

.white-cta-btn {
    margin-top: 30px;
    background: white;
    color: #0a194e;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.white-cta-btn:hover { transform: scale(1.05); }

.bonus-footer-bar {
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #000 !important;
    font-weight: 600;
}

.price-red { color: #d93025 !important; }

.comparison-section {
    padding: 80px 10%;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.comparison-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.comparison-intro {
    flex: 1;
}

.brand-logo-text {
    color: #2c3e8c !important;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.comparison-subtitle {
    color: #2c3e8c !important;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.motto-box p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.motto-green { color: #28a745 !important; }
.motto-red { color: #dc3545 !important; }

.trust-text {
    margin-top: 30px;
    color: #333333 !important;
    font-size: 1.1rem;
}

/* Table Design */
.comparison-table {
    flex: 1.5;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}

.table-column {
    padding: 30px;
    flex: 1;
}

.skillected-col {
    background: #ffffff;
    border: 3px solid #7ea6f2;
    z-index: 2;
    transform: scale(1.05); /* Make it stand out */
    border-radius: 20px;
}

.others-col {
    background: #f1f1f1;
    padding-left: 50px;
    margin-left: -20px; /* Slight overlap */
}

/* Headers */
.col-header { text-align: center; margin-bottom: 25px; }
.price-tag { font-size: 2rem; color: #2c3e8c !important; font-weight: bold; margin-top: 10px; }
.others-pill { background: white; padding: 5px 20px; border-radius: 20px; display: inline-block; font-weight: bold; color: #2c3e8c; }
.price-old { font-size: 1.5rem; color: #666 !important; margin-top: 10px; text-decoration: line-through; }

/* Lists */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #000000 !important; /* Force Black */
    display: flex;
    align-items: center;
}

.check { color: #2c3e8c; font-weight: bold; margin-right: 10px; }
.cross { color: #ffa500; font-weight: bold; margin-right: 10px; }

/* Animations */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 0.8s ease; }
.reveal-pop { opacity: 0; transform: scale(0.8); transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.active { opacity: 1; transform: translate(0) scale(1.05); }
.skillected-col.active { animation: float 3s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@media (max-width: 992px) {
    .comparison-container { flex-direction: column; }
    .skillected-col { transform: scale(1); }
}

.light-theme-text h2, 
.light-theme-text h3, 
.light-theme-text p {
    color: #2c3e8c !important; /* Dark Navy for headers */
    font-family: 'Segoe UI', sans-serif;
}

/* ---------- Attendee Section ---------- */
.attendee-section {
    padding: 100px 10%;
    background-color: #f8faff;
    text-align: center;
}

.attendee-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
}

.attendee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.attendee-card {
    background: #ffffff;
    border: 1px solid #c8d4f0;
    border-radius: 15px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.attendee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(44, 62, 140, 0.15);
    border-color: #2c3e8c;
}

.attendee-icon { font-size: 2.5rem; }

.attendee-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ---------- CTA & Bonus ---------- */
.attendee-enroll-btn {
    display: block; /* make it appear above bonus alert */
    border: 2px solid #2c3e8c;
    background: transparent;
    color: #2c3e8c;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 0 auto 20px auto; /* center + spacing below */
    transition: 0.3s;
}

.attendee-enroll-btn:hover { background: #2c3e8c; color: white; }

.bonus-alert {
    background: #f1f3f7;
    color: #333 !important;
    padding: 16px 20px;
    border-radius: 10px;
    display: block; /* stacked under button */
    margin: 0 auto;
    max-width: 800px;
    font-size: 1rem;
    font-weight: 500;
}

.red-text { color: #d93025; font-weight: bold; }

/* ---------- Sticky Footer Bar ---------- */
.red-text { color: #d93025; font-weight: bold; }

/* Sticky Footer Bar */
.sticky-footer {
    position: fixed;
    bottom: 0; /* Visible by default */
    left: 0;
    width: 100%;
    background: #0d1b4d;
    color: white;
    padding: 15px 10%;
    z-index: 999;
    transition: bottom 0.5s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spot-highlight { font-weight: bold; color: #fff; animation: blink-hard 1s infinite; }
.strike { text-decoration: line-through; opacity: 0.7; }

@keyframes blink-hard {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.buy-now-btn {
    background: #ffffff;
    color: #0d1b4d;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

/* Affiliate Section */
.affiliate-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #0d1b4d 0%, #1a237e 100%);
    color: white;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.affiliate-title {
    font-size: 2.5rem;
    color: #f7df1e;
    margin-bottom: 20px;
    font-weight: bold;
}

.affiliate-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #e0e0e0;
    line-height: 1.6;
}

.affiliate-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.aff-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 15px;
    width: 280px;
    transition: transform 0.3s ease;
}

.aff-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.aff-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.aff-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.aff-feature-card p {
    font-size: 1rem;
    color: #ccc;
}

.affiliate-btn {
    background: #f7df1e;
    color: #0d1b4d;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.affiliate-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

@media (max-width: 768px) {
    .affiliate-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------- Animation Trigger Class ---------- */
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .attendee-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .report-slide img {
        height: 250px;
    }
    .slides-wrapper {
        height: 270px;
    }
}

@media (max-width: 768px) {
    .attendee-grid { grid-template-columns: 1fr; }
    
    /* Single slide on mobile */
    .slide-pair {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .report-slide {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .report-slide img {
        height: 200px;
    }
    
    .slides-wrapper {
        height: auto;
        min-height: 450px;
    }
}

/* Container Spacing */
.bonuses-section {
    padding: 80px 10%;
    background-color: #0d1b4d; /* Navy Blue background as per screenshot */
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bonus-main-title {
    color: #ffffff !important; /* White for main title on dark bg */
    font-size: 2.2rem;
    margin-bottom: 60px;
    line-height: 1.4;
}

.highlight-price {
    color: #f7df1e; /* Yellow highlight */
}

/* Grid Layout */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.bonus-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    opacity: 0; /* For Animation */
    transform: scale(0.8);
}

.bonus-card:hover {
    transform: translateY(-10px);
}

/* Force Black Text inside Cards */
.bonus-card h3 {
    color: #000000 !important;
    font-size: 1.2rem;
    margin: 20px 0;
    min-height: 50px;
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000 !important;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bonus-icon {
    font-size: 3.5rem;
}

.value-tag {
    background: #eef2ff;
    color: #2c3e8c !important;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #c8d4f0;
}

/* CTA Button */
.final-enroll-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.final-enroll-btn:hover {
    background: #ffffff;
    color: #0d1b4d;
}

.strike { text-decoration: line-through; opacity: 0.6; margin-right: 10px; }

/* Animation Trigger */
.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive */
@media (max-width: 992px) {
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bonus-grid { grid-template-columns: 1fr; }
    .bonus-main-title { font-size: 2rem; }
}
.learning-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

/* Force Black Text */
.learning-title {
    color: #2c3e8c !important;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 100px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.learning-card {
    background: #ffffff;
    border: 1.5px solid #2c3e8c;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: all 0.4s ease;
    opacity: 0;
    transform: perspective(1000px) rotateX(-20deg);
}

.learning-card:hover {
    background: #f0f4ff;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(44, 62, 140, 0.1);
}

.card-icon { width: 50px; display: flex; justify-content: center; }
.card-icon img { width: 100%; height: auto; }
.icon-text { font-size: 3.5rem; color: #8a2be2; font-weight: bold; font-family: serif; }

.learning-card h3 {
    color: #333333 !important;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.learning-summary p {
    color: #2c3e8c !important;
    font-weight: bold;
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* CTA Styles */
.enroll-pill-btn {
    border: 2px solid #2c3e8c;
    background: transparent;
    color: #2c3e8c;
    padding: 20px 60px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-bottom: 25px;
    transition: 0.3s;
}

.enroll-pill-btn:hover {
    background: #2c3e8c;
    color: white;
}

.midnight-offer {
    background: #f4f5f7;
    padding: 12px 25px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #000 !important;
    font-size: 1rem;
}

.price-bold { font-weight: bold; }
.strike { text-decoration: line-through; opacity: 0.6; margin: 0 5px; }

/* Animation Trigger */
.reveal-flip.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
}

/* Responsive */
@media (max-width: 992px) {
    .learning-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .learning-grid { grid-template-columns: 1fr; }
}

.salary-comparison-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

/* Forcing Black Text on Heading */
.fact-title {
    color: #2c3e8c !important;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 150px;
}

.salary-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.salary-card {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 20px;
    padding: 40px;
    width: 380px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.salary-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 62, 140, 0.1);
}

.card-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 30px; /* Pulls icon up halfway */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Salary Numbers */
.salary-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.orange-text { color: #f39c12 !important; }
.green-text { color: #27ae60 !important; }

/* Subtext Forced to Black/Gray */
.salary-label {
    color: #555555 !important;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 10px;
}

/* CTA Styles */
.fact-enroll-btn {
    border: 2px solid #2c3e8c;
    background: transparent;
    color: #2c3e8c;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.fact-enroll-btn:hover {
    background: #2c3e8c;
    color: white;
}

.midnight-timer-bar {
    background: #f4f5f7;
    padding: 12px 30px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #333 !important;
    font-size: 1rem;
}

.bold-price { color: #d93025; font-weight: bold; }
.strike { text-decoration: line-through; opacity: 0.6; }

/* Animation Trigger */
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 850px) {
    .salary-grid { flex-direction: column; align-items: center; gap: 80px; }
    .salary-card { width: 90%; }
}

.certification-section {
    padding: 80px 10%;
    background-color: #f1f4f9; /* Light gray-blue background */
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.cert-main-title {
    color: #2c3e8c !important; /* Professional Navy */
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 60px;
}

.cert-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Side Tags */
.cert-benefits {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-tag {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* For JS animation */
}

.benefit-tag:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(44, 62, 140, 0.1);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.orange-bg { background: #f39c12; }

.benefit-tag p {
    color: #333333 !important; /* Explicit Black/Dark Gray */
    font-weight: 300;
    font-size: 1.2rem;
    text-align: left;
    margin: 0;
}

/* Right Side Certificate */
.cert-image-container {
    flex: 1.2;
    position: relative;
    opacity: 0; /* For JS animation */
}

.cert-mockup {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.cert-image-container:hover .cert-mockup {
    transform: scale(1.02) rotate(1deg);
}

/* Fix for Responsive Animation Alignment */
.benefit-tag.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.cert-image-container.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* Animation Trigger Classes */
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .cert-container { flex-direction: column; }
    .cert-benefits, .cert-image-container { width: 100%; }
    .cert-main-title { font-size: 2.5rem; }
    .benefit-tag { padding: 15px 20px; }
}

@media (max-width: 600px) {
    .certification-section { padding: 40px 20px; }
    .cert-main-title { font-size: 2.3rem; margin-bottom: 30px; }
    .benefit-tag { padding: 15px; gap: 10px; }
    .benefit-tag p { font-size: 1.2rem; }
    .benefit-icon { width: 35px; height: 35px; font-size: 1.5rem; }
}

/* Container Spacing */
.mentors-section, .testimonials-section {
    padding: 80px 10%;
    background-color: #f8faff;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.section-title-dark {
    color: #2c3e8c !important; /* Professional Dark Navy */
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border: 2px solid #2c3e8c;
    border-radius: 25px;
    padding: 40px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.student-header { margin-bottom: 20px; }
.student-img { width: 80px; height: 80px; border-radius: 50%; margin-top: -80px; border: 5px solid #f8faff; }
.student-name { color: #2c3e8c !important; margin: 10px 0; font-size: 1.3rem; font-weight: bold; }
.quote { color: #444 !important; font-style: italic; line-height: 1.6; font-size: 1.1rem; }

/* Navigation Buttons */
.slider-nav {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    padding: 20px;
}

/* Global CTA */
.pill-cta-btn {
    margin-top: 40px;
    background: white;
    color: #2c3e8c;
    border: 2px solid #2c3e8c;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.pill-cta-btn:hover { background: #2c3e8c; color: white; }
.strike { text-decoration: line-through; opacity: 0.6; }

/* Animations */
.reveal-pop {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-pop.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.hero-section {
    background-color: #01287c;
    padding: 100px 70px 60px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.hero-main-title {
    font-size: 3.5rem;
    color: #f7df1e; /* Bright Yellow */
    margin-bottom: 10px;
    font-weight: 800;
}

.hero-sub-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-description-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-description-box p {
    font-size: 1.1rem;
    margin: 5px 0;
}

/* CTA Button */
.hero-cta-btn {
    background: #3b5998; /* Blue button color */
    color: white;
    border: 2px solid #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.strike { text-decoration: line-through; color: #f7df1e; margin: 0 5px; }

/* Info Grid */
.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.info-card {
    background: #fffef0; /* Off-white from screenshot */
    padding: 25px 15px;
    border-radius: 12px;
    color: #0d1b4d !important; /* Navy text for light cards */
}

.info-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; }
.info-card p { font-size: 1rem; margin: 0; opacity: 0.8; }

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-info-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-main-title { font-size: 3rem; }
}

:root {
    --navy-bg: #0a135d;
    --accent-yellow: #ffde59;
    --light-grey: #eeeeee;
    --white: #ffffff;
}

.promo-section {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.promo-container {
    background: linear-gradient(180deg, #0d1b7a 0%, #060e45 100%);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--white);
    animation: fadeIn 0.8s ease-out;
    position: relative;
}

.promo-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.promo-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.highlight {
    color: var(--accent-yellow);
    font-weight: bold;
}

.offer-deadline {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.bonus-text {
    color: var(--accent-yellow);
    font-size: 18px;
    margin-bottom: 10px;
}

.register-note {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 35px;
}

.promo-cta-button {
    background-color: #f0f2ff;
    color: #3167eb;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

.promo-cta-button:hover {
    transform: scale(1.05);
    background-color: #ffffff;
}

.old-price {
    text-decoration: line-through;
    color: #ff4d4d;
    margin: 0 10px;
}

.new-price {
    color: #3167eb;
}

.bonus-footer {
    margin-top: 30px;
    background-color: #efefef;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bold-date, .bold-price {
    font-weight: bold;
    color: #b72025; /* Match the dark red in screenshot */
}

.promo-alert {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.faq-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 80px 20px;
    background-color: #ffffff;
    color: #0d1b4d;
}

.faq-header {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    border-top: 1px solid #c5cae9;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #c5cae9;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    color: #1a237e;
    transition: background 0.3s ease;
}

.faq-question:hover {
    color: #3f51b5;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #3f51b5;
    margin-left: 20px;
}

/* JavaScript will toggle this class */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 20px;
}

/* Footer Button */
.faq-footer-btn-container {
    text-align: center;
    margin: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta {
    background: transparent;
    border: 3px solid #1a237e;
    color: #1a237e;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cta:hover {
    background: #1a237e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
    margin: 0 5px;
}