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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
}

.cta-button {
    font-family: 'Rajdhani', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 31, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 700px;
    padding: 0;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: #00ffaa;
    font-weight: 800;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: #00ffaa;
    color: #0a1f1f;
    padding: 16px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
}

.cta-button:hover {
    background: #00d4aa;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 180px 0 120px 0;
    background: #0a1f1f;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInLeft 0.8s ease-out;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-content {
    animation: slideInRight 0.8s ease-out;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #ffffff;
    text-align: left;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content h2 .highlight {
    color: #00ffaa;
    display: inline-block;
    transition: transform 0.3s ease;
}

.about-content h2:hover .highlight {
    transform: scale(1.05);
}

.about-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-content .cta-button {
    background: #00ffaa;
    color: #0a1f1f;
    padding: 16px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .cta-button:hover {
    background: #00d4aa;
    transform: translateY(-2px);
}

/* Mentor Section */
.mentor {
    padding: 120px 0;
    background: #ffffff;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: center;
}

.mentor-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.8s ease-out;
}

.mentor-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

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

.mentor-content {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.mentor-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.mentor-content h2 .highlight {
    color: #00ffaa;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mentor-content h2:hover .highlight {
    transform: scale(1.05);
}

/* Marquee Section */
.marquee-section {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    margin: 0;
    pointer-events: none;
}

.marquee-stripe {
    position: absolute;
    width: 150%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-stripe-1 {
    transform: rotate(-2deg);
    background: rgba(0, 255, 170, 0.9);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 255, 170, 0.4);
}

.marquee-stripe-2 {
    transform: rotate(2deg);
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1f1f;
    letter-spacing: 2px;
}

.marquee-stripe-2 .marquee-content {
    color: #0a1f1f;
}

.marquee-stripe-2 .marquee-content {
    animation: marqueeScrollReverse 18s linear infinite;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: #0a1f1f;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: left;
    position: relative;
    padding-left: 80px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item:hover .benefit-number {
    opacity: 0.7;
    transform: scale(1.1);
}

.benefit-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 700;
    color: #00ffaa;
    opacity: 0.3;
    line-height: 1;
    transition: all 0.3s ease;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Investment Section */
.investment {
    padding: 120px 0;
    background: #ffffff;
}

.investment-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    align-items: center;
}

.investment-content {
    animation: slideInLeft 0.8s ease-out;
}

.investment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
    text-align: left;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.investment-content h2 .highlight {
    color: #00ffaa;
    display: inline-block;
    transition: transform 0.3s ease;
}

.investment-content h2:hover .highlight {
    transform: scale(1.05);
}

.investment-content p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.investment-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.investment-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    transition: transform 0.5s ease;
}

.investment-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #0a1f1f;
    border-top: 1px solid rgba(0, 255, 170, 0.1);
    position: relative;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00ffaa;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover::after {
    width: 60%;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00ffaa;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modules Section */
.modules {
    padding: 120px 0;
    background: #ffffff;
}

.modules h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.modules h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.module-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #00ffaa;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.2s; }
.module-card:nth-child(3) { animation-delay: 0.3s; }
.module-card:nth-child(4) { animation-delay: 0.4s; }

.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffaa;
    transition: width 0.3s ease;
}

.module-card:hover::after {
    width: 100%;
}

.module-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    border-left-width: 6px;
}

.module-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #00ffaa;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.module-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
}

.module-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ffaa;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #0a1f1f;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 170, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00ffaa;
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: translateX(0);
}

.testimonial-card:hover {
    border-color: rgba(0, 255, 170, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #00ffaa;
    transition: transform 0.3s ease;
}

.testimonial-image:hover {
    transform: scale(1.1);
}

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

.testimonial-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #00ffaa;
    font-size: 1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #0a1f1f;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffaa, transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-section .cta-button {
    background: #00ffaa;
    color: #0a1f1f;
    padding: 16px 50px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.8s ease-out 0.4s backwards;
}

.cta-section .cta-button:hover {
    background: #00d4aa;
    transform: translateY(-3px) scale(1.05);
}

/* Footer */
footer {
    background: #0a1f1f;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 170, 0.1);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        content: url('assets/banner-mobile.jpg');
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .about,
    .benefits,
    .mentor,
    .investment,
    .stats,
    .modules,
    .testimonials,
    .faq,
    .cta-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about h2,
    .benefits h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .about-content .cta-button {
        display: block;
        margin: 0 auto;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mentor-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .investment-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .investment-content p {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefit-item {
        padding-left: 60px;
    }

    .benefit-number {
        font-size: 2.5rem;
    }

    .marquee-section {
        height: 100px;
    }

    .marquee-stripe {
        height: 45px;
    }

    .marquee-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .about-content h2,
    .mentor-content h2,
    .investment-content h2 {
        font-size: 1.5rem;
    }

    .benefits h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
}
