/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #79b329;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #79b329;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #79b329;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.nav-cta-button:hover {
    background: #e69a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 171, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger {
    background: #79b329;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    padding-top: 70px; /* Space for fixed navbar */
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('./images/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
}


/* Master AI Skills Section */
.master-ai-section {
    padding: 6rem 0;
    background: #fafafa;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #79b329;
}

.section-headline {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-block.reverse {
    direction: ltr;
}

.content-block.reverse .content-text {
    direction: ltr;
}

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

.feature-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}


.benefits-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #79b329;
}

.benefits-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700px !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: #79b329;
    padding: 1rem;
    border-radius: 20px;
    text-align: left;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    margin-bottom: 0.2rem;
    color: #1a1a1a;
}


.benefit-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Course Preview Section */
.course-preview-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/course.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.course-overlay {
    width: 100%;
    padding: 4rem 0;
}

.course-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.course-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.course-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}


/* Learning Section */
.learning-section {
    padding: 6rem 0;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.learning-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #79b329;
}

.learning-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.learning-card {
    background: #79b329;
    padding: 1rem;
    border-radius: 20px;
    text-align: left;
    color: white;
    position: relative;
    overflow: hidden;
}

.learning-header h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.learning-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.learning-icon {
    margin-bottom: 0.2rem;
    color: white;
}

/* Bonuses Section */
.bonuses-section {
    padding: 6rem 0;
    background: #fafafa;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.bonuses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonuses-text {
    padding-right: 2rem;
}

.bonuses-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #79b329;
}

.bonuses-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.bonuses-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

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

.bonuses-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bonus-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 171, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(246, 171, 0, 0.3);
}

.bonus-icon {
    margin-bottom: 1.5rem;
    color: #79b329;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
}

.bonus-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.bonus-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .section-headline {
        font-size: 1.3rem;
    }

    .content-block {
        gap: 3rem;
    }

    .content-text h3 {
        font-size: 1.8rem;
    }

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

    .bonuses-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .bonuses-text {
        padding-right: 0;
    }
    
    .bonuses-title {
        font-size: 2.2rem;
    }
    
    .bonuses-subtitle {
        font-size: 1.3rem;
    }
    
    .bonuses-cards {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .nav-cta.active {
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }

    .hero-section {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .course-cta-button,
    .bonuses-cta-button,
    .testimonials-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .master-ai-section,
    .benefits-section,
    .course-preview-section,
    .learning-section,
    .bonuses-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    margin-bottom: 1rem;
    }
    
    .section-headline {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .content-block.reverse {
        direction: ltr;
    }

    .content-text h3 {
        font-size: 1.6rem;
    }

    .benefits-grid,
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonuses-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonuses-title {
        font-size: 2rem;
    }
    
    .bonuses-subtitle {
        font-size: 1.2rem;
    }

    .course-title {
        font-size: 2.5rem;
    }

    .course-subtitle {
        font-size: 1.5rem;
    }

    .course-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-text h3 {
        font-size: 1.4rem;
    }

    .benefit-header h3,
    .learning-header h4 {
        font-size: 1.6rem;
    }

    .course-title {
        font-size: 2rem;
    }

    .course-subtitle {
        font-size: 1.3rem;
    }

    .bonuses-title {
        font-size: 1.8rem;
    }

    .bonuses-subtitle {
        font-size: 1.1rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .bonus-card h4 {
        font-size: 1.1rem;
    }
    
    .bonus-card p {
        font-size: 0.9rem;
    }
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.course-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(30, 58, 138, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 138, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    padding-right: 2rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
        margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a;
}

.cta-subdescription {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.submit-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive for Final CTA Section */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
    }
    
    .cta-subdescription {
        font-size: 1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text {
        padding-right: 0;
    }
    
    .contact-form-container {
        max-width: 500px;
        padding: 2.5rem 2rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .cta-subdescription {
        font-size: 0.95rem;
    }
    
    .cta-content {
        gap: 2rem;
    }
    
    .contact-form-container {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .submit-button {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-subdescription {
        font-size: 0.9rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: #1e3a8a;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    color: white;
}

.testimonials-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

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

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    height: 400px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
}

.testimonial-content {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonial-text p {
        font-size: 1.2rem;
    }
    
    .testimonials-carousel {
        max-width: 800px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 6rem 0;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }
    
    .testimonials-carousel {
        max-width: 100%;
        height: 340px;
        margin-bottom: 3rem;
    }
    
    .testimonial-content {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-carousel {
        height: 380px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
}

/* Responsive for Enroll Now Section */
@media (max-width: 1024px) {
    .enroll-title {
        font-size: 3rem;
    }
    
    .enroll-description {
        font-size: 1.3rem;
    }
    
    .enroll-subdescription {
        font-size: 1.2rem;
    }
    
    .enroll-cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .enroll-now-section {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .enroll-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .enroll-description {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .enroll-subdescription {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .enroll-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .enroll-now-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .enroll-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .enroll-description {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .enroll-subdescription {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .enroll-cta-button {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}

/* Responsive for Benefits Section */
@media (max-width: 1024px) {
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefits-subtitle {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        max-width: 900px;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
    }
    
    .benefit-header h3 {
        font-size: 2rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    .learning-title {
        font-size: 2.2rem;
    }
    
    .learning-subtitle {
        font-size: 1.2rem;
    }
    
    .learning-grid {
        max-width: 900px;
        gap: 2rem;
    }
    
    .learning-card {
        padding: 2rem;
    }
    
    .learning-header h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefits-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
    }
    
    .benefit-header h3 {
        font-size: 1.8rem;
    }
    
    .learning-section {
        padding: 4rem 0;
    }
    
    .learning-title {
        font-size: 2rem;
    }
    
    .learning-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .learning-card {
        padding: 2rem;
    }
    
    .learning-header h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 2rem;
    }
    
    .learning-title {
        font-size: 1.8rem;
    }
    
    .learning-subtitle {
        font-size: 1rem;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .learning-card {
        padding: 1.5rem;
    }
    
    .learning-header h4 {
        font-size: 1.3rem;
    }
    
    .learning-card p {
        font-size: 1rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .benefit-header h3 {
        font-size: 1.6rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}

/* Enroll Now Section */
.enroll-now-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('./images/enrol-now.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.enroll-overlay {
    width: 100%;
    padding: 4rem 0;
}

.enroll-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.enroll-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    font-weight: 400;
}

.enroll-subdescription {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #79b329;
    font-weight: 600;
}

.enroll-cta-button {
    background: #79b329;
    color: #1a1a1a;
    border: none;
    padding: 1em 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.05em;
}

.enroll-cta-button:hover {
    background: #e69a00;
    transform: translateY(-3px);
}

.enroll-cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3.footer-title {
        font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #79b329;
}

.footer-section h4.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #79b329;
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #79b329;
}

.contact-info p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: #79b329;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #e69a00;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: #79b329;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-phone {
    color: #79b329;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #e69a00;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.copyright {
    color: #999999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #79b329;
}

.separator {
    color: #666666;
    font-weight: 300;
    margin: 0 0.5rem;
}

/* Responsive for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    .separator {
        margin: 0 0.25rem;
    }
}

/* Privacy Policy & Terms Pages */
.privacy-section,
.terms-section {
    padding: 8rem 0 4rem;
    background: #fff;
    min-height: 100vh;
}

.privacy-title,
.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.privacy-date,
.terms-date {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-content,
.terms-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-section-block,
.terms-section-block {
    margin-bottom: 3rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2rem;
}

.privacy-section-block:last-child,
.terms-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section-block h2,
.terms-section-block h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.privacy-section-block p,
.terms-section-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.privacy-section-block ul,
.terms-section-block ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.privacy-section-block li,
.terms-section-block li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.5rem;
}

.privacy-section-block .contact-info,
.terms-section-block .contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #e0e0e0;
}

.privacy-section-block .contact-info p,
.terms-section-block .contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-section-block .contact-info strong,
.terms-section-block .contact-info strong {
    color: #1a1a1a;
}

/* Responsive for Privacy & Terms */
@media (max-width: 768px) {
    .privacy-section,
    .terms-section {
        padding: 6rem 0 2rem;
    }
    
    .privacy-title,
    .terms-title {
        font-size: 2rem;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 1.5rem;
    }
    
    .privacy-section-block,
    .terms-section-block {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-title,
    .terms-title {
        font-size: 1.8rem;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 1rem;
    }
    
    .privacy-section-block,
    .terms-section-block {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .privacy-section-block h2,
    .terms-section-block h2 {
        font-size: 1.2rem;
    }
}