/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

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

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

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

/* Navigation Contact Icons */
.nav-contact {
    display: none;
    gap: 1rem;
    align-items: center;
}

.nav-contact .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-contact .nav-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.nav-contact .nav-link::after {
    display: none;
}

.enroll-btn {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Hero background animation */
@keyframes heroBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero {
    animation: heroBackground 20s ease-in-out infinite;
}

/* Floating elements for hero section */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; */
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: left;
    font-weight: 700;

}

.hero-dynamic-text {
    text-align: left;
}

.hero-dynamic-text span {
    display: none;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
  }
  
  .hero-dynamic-text span.active {
    display: inline;
    animation: fade 0.5s ease-in-out;
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }
}

@keyframes perkPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Free Lesson Section */
.free-lesson {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.free-lesson::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

.free-lesson::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.free-lesson .floating-element {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    z-index: 1;
}

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

.free-lesson-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.free-lesson-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.free-lesson-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: #fbbf24;
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    background: #fbbf24;
    color: #1f2937;
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 500;
    color: white;
    font-size: 1rem;
}

.free-lesson-form {

    justify-content: center;
}

.free-lesson-contact {
    display: flex;
    justify-content: center;
}

 
 

.contact-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info {
    margin-top: 1.5rem;
}
 

 

.contact-item i {
    font-size: 1.5rem;
    color: #fbbf24;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #fbbf24;
    color: white;
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.contact-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-note i {
    color: #2563eb;
    font-size: 1rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

.form-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-card .form-group {
    margin-bottom: 0rem;
}

.form-card input,
.form-card select {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-card input:focus,
.form-card select:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-card .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

.form-card .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-icon i {
    font-size: 1.5rem;
    color: white;
}

.course-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.course-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.course-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.course-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.course-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.course-price {
    /* display: flex; */
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.book-button-div{
    width: 100%;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.duration {
    color: #6b7280;
}

.book-now-btn {
    margin-top: 1rem !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.book-now-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.book-now-btn i {
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.25rem;
}

.feature h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Teachers Section */
.teachers {
    padding: 80px 0;
    background: #f8fafc;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.teacher-image {
    height: 250px;
    overflow: hidden;
}

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

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
}

.teacher-info {
    padding: 1.5rem;
}

.teacher-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.teacher-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.teacher-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

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

.contact-item i {
    font-size: 1.25rem;
    /* color: #2563eb; */
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 0rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enrollment Section */
.enroll {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.enroll-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.enroll-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.enroll-benefits {
    display: grid;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.enroll-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enroll-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.enroll-form .form-group input,
.enroll-form .form-group select,
.enroll-form .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

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

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

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.contact-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.contact-info a i {
    font-size: 1.1rem;
    min-width: 20px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.contact-info a:hover i {
    color: #f59e0b;
    transform: scale(1.1);
}

.contact-info p {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #fbbf24;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Footer Form Styles */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-form .form-group {
    margin-bottom: 0;
}

.footer-form .form-group input,
.footer-form .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #374151;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #374151;
    color: white;
}

.footer-form .form-group input::placeholder {
    color: #9ca3af;
}

.footer-form .form-group input:focus,
.footer-form .form-group select:focus {
    outline: none;
    border-color: #fbbf24;
    background: #4b5563;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.footer-form .btn-primary {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: 8px;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.footer-form .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.footer-form .btn-primary i {
    font-size: 1rem;
}

/* Adults Section Styles */
.adults-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.adults-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.adults-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.adults-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.adults-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.adults-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.adults-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.adults-features .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.adults-features .feature i {
    font-size: 1.5rem;
    color: #2563eb;
    background: #dbeafe;
    padding: 12px;
    border-radius: 50%;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adults-features .feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.adults-features .feature p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.adults-levels {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.adults-levels h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.levels-grid {
    display: grid;
    gap: 1rem;
}

.level-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.level-item:hover {
    background: #dbeafe;
    transform: translateX(5px);
}

.level-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.level-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.adults-form {
    position: sticky;
    top: 100px;
}

.adults-form .form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.adults-form .form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.adults-form .form-group {
    margin-bottom: 1.5rem;
}

.adults-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.adults-form .form-group input,
.adults-form .form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.adults-form .form-group input:focus,
.adults-form .form-group select:focus,
.adults-form .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.adults-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.adults-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.adults-form .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Animation for adults section */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.adults-text {
    animation: slideInLeft 0.8s ease-out;
}

.adults-form {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

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

.adults-cta .enroll-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.adults-cta .enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.adults-cta .enroll-btn i {
    font-size: 1.2rem;
}

/* Children Section Styles */
.children-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.85) 0%, rgba(253, 230, 138, 0.85) 100%),
                url('https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.children-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fde68a" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23fde68a" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23fde68a" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23fde68a" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23fde68a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.children-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.children-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.children-text p {
    font-size: 1.1rem;
    color: #a16207;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.children-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.children-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.children-features .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.children-features .feature i {
    font-size: 1.5rem;
    color: #f59e0b;
    background: #fef3c7;
    padding: 12px;
    border-radius: 50%;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.children-features .feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.children-features .feature p {
    font-size: 0.95rem;
    color: #a16207;
    margin: 0;
    line-height: 1.6;
}

.children-programs {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.children-programs h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 1.5rem;
}

.programs-grid {
    display: grid;
    gap: 1.5rem;
}

.program-item {
    padding: 1.5rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
}

.program-item:hover {
    background: #fde68a;
    transform: translateX(5px);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.program-header i {
    font-size: 1.5rem;
    color: #f59e0b;
    background: white;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}

.program-item p {
    color: #a16207;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-item ul {
    list-style: none;
    padding: 0;
}

.program-item li {
    padding: 0.5rem 0;
    color: #a16207;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.program-item li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Animation for children section */
@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.children-text {
    animation: bounceIn 0.8s ease-out;
}

.program-item {
    animation: fadeInUp 0.6s ease forwards;
}

.program-item:nth-child(2) {
    animation-delay: 0.2s;
}

.program-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design for Children Section */
@media (max-width: 768px) {
    .children-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .children-text h3 {
        font-size: 2rem;
    }

    .children-features .feature {
        text-align: left;
    }

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

/* Exams Section Styles */
.exams-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.85) 100%),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
}

.exams-section .section-header h2 {
    color: white;
}

.exams-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.exams-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.exams-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.exams-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.exams-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.exams-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.exams-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.exams-features .feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.exams-features .feature i {
    font-size: 1.5rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
    padding: 12px;
    border-radius: 50%;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exams-features .feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.exams-features .feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.exams-programs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.exams-programs h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.exams-grid {
    display: grid;
    gap: 1.5rem;
}

.exam-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
    transition: all 0.3s ease;
}

.exam-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.exam-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exam-header i {
    font-size: 1.5rem;
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.exam-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.exam-item ul {
    list-style: none;
    padding: 0;
}

.exam-item li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.exam-item li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.exams-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exams-stats h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Animation for exams section */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exams-text {
    animation: slideInUp 0.8s ease-out;
}

.exam-item {
    animation: fadeInUp 0.6s ease forwards;
}

.exam-item:nth-child(2) {
    animation-delay: 0.2s;
}

.exam-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design for Exams Section */
@media (max-width: 768px) {
    .exams-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .exams-text h3 {
        font-size: 2rem;
    }

    .exams-features .feature {
        text-align: left;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* NMT Section Styles */
.nmt-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.85) 0%, rgba(55, 65, 81, 0.85) 100%),
                url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
}

.nmt-section .section-header h2 {
    color: white;
}

.nmt-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.nmt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.nmt-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nmt-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.nmt-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.nmt-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.nmt-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nmt-features .feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nmt-features .feature i {
    font-size: 1.5rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
    padding: 12px;
    border-radius: 50%;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nmt-features .feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.nmt-features .feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.nmt-programs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.nmt-programs h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.nmt-grid {
    display: grid;
    gap: 1.5rem;
}

.nmt-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
    transition: all 0.3s ease;
}

.nmt-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.nmt-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nmt-header i {
    font-size: 1.5rem;
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nmt-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.nmt-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nmt-item ul {
    list-style: none;
    padding: 0;
}

.nmt-item li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.nmt-item li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.nmt-topics {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.nmt-topics h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.topic-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.topic-icon i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.topic-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.topic-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.nmt-results {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nmt-results h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Animation for NMT section */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nmt-text {
    animation: slideInDown 0.8s ease-out;
}

.nmt-item {
    animation: fadeInUp 0.6s ease forwards;
}

.nmt-item:nth-child(2) {
    animation-delay: 0.2s;
}

.nmt-item:nth-child(3) {
    animation-delay: 0.4s;
}

.topic-item {
    animation: fadeInUp 0.6s ease forwards;
}

.topic-item:nth-child(2) {
    animation-delay: 0.2s;
}

.topic-item:nth-child(3) {
    animation-delay: 0.4s;
}

.topic-item:nth-child(4) {
    animation-delay: 0.6s;
}

.result-item {
    animation: fadeInUp 0.6s ease forwards;
}

.result-item:nth-child(2) {
    animation-delay: 0.2s;
}

.result-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design for NMT Section */
@media (max-width: 768px) {
    .nmt-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .nmt-text h3 {
        font-size: 2rem;
    }

    .nmt-features .feature {
        text-align: left;
    }

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

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.6s;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: #fbbf24;
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon i {
    color: #1f2937;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    padding: 0 15px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-info h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Slick Slider Custom Styles */
.slick-slider {
    position: relative;
}

.slick-list {
    overflow: hidden;
}

.slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.slick-slide.slick-active {
    opacity: 1;
}

.slick-slide.slick-center {
    opacity: 1;
}

/* Custom Navigation Buttons */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    z-index: 10;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #1d4ed8;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.slick-prev:before {
    content: '\f053'; /* fa-chevron-left */
}

.slick-next:before {
    content: '\f054'; /* fa-chevron-right */
}

/* Custom Dots */
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
}

.slick-dots li.slick-active button {
    background: #2563eb;
    transform: scale(1.2);
}

.slick-dots li button:hover {
    background: #9ca3af;
}

/* Responsive Slick */
@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        width: 45px;
        height: 45px;
    }
    
    .slick-prev {
        left: -22px;
    }
    
    .slick-next {
        right: -22px;
    }
    
    .slick-prev:before,
    .slick-next:before {
        font-size: 1rem;
    }
    
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-contact {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .nav-contact .nav-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .contact-info h2,
    .enroll-text h2,
    .free-lesson-text h2 {
        font-size: 2rem;
    }

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

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

    .adults-text h3 {
        font-size: 2rem;
    }

    .adults-features .feature {
        text-align: left;
    }

    .adults-form {
        position: static;
    }
    
    .adults-cta .enroll-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

        .testimonials-slider {
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }

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

    .stat-item {
        padding: 1.5rem 1rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-card {
        padding: 1.5rem;
    }
}

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

.course-card,
.teacher-card,
.feature {
    animation: fadeInUp 0.6s ease forwards;
}

.course-card:nth-child(2) {
    animation-delay: 0.2s;
}

.course-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for forms */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Hover effects for interactive elements */
.nav-link:hover,
.btn:hover,
.course-card:hover,
.teacher-card:hover {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.booking-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    border: 1px solid #bae6fd;
}

.perk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: perkPulse 2s infinite;
}

.perk-badge i {
    font-size: 1.1rem;
}

.booking-intro p {
    color: #374151;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.perk-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    transition: all 0.3s ease;
}

.perk-item:hover {
    background: rgba(251, 191, 36, 0.15);
    transform: translateX(5px);
}

.perk-item i {
    color: #fbbf24;
    font-size: 1.1rem;
    min-width: 20px;
}

.perk-item span {
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.perk-description {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #ef4444;
}

.booking-benefits {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.booking-benefits h4 {
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.booking-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    margin: 0 auto;
}

.booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.booking-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.booking-submit i {
    font-size: 1.2rem;
}

/* Course Selection Buttons */
.course-selection-buttons {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.course-selection-buttons h4 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
    text-align: center;
}

.course-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.course-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
}

.course-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.course-btn.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.course-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.course-btn:hover i {
    transform: scale(1.1);
}

.course-btn.active i {
    color: white;
}

.course-btn span {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 0.5rem 1.5rem 0.5rem;
    }
    
    .modal-body {
        padding: 0.5rem 1.5rem 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .booking-intro {
        padding: 1rem;
    }
    
    .perk-details {
        gap: 0.5rem;
    }
    
    .perk-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .perk-item span {
        font-size: 0.85rem;
    }
    
    .perk-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .course-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .course-btn {
        padding: 0.875rem;
    }
    
    .course-btn span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .booking-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Special Offer Modal Styles */
.special-offer-modal {
    z-index: 10001;
}

.special-offer-content {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    border: 3px solid #fbbf24;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.special-offer-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.offer-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    animation: offerPulse 2s infinite;
}

.offer-badge i {
    font-size: 1.4rem;
    color: #dc2626;
}

.special-offer-intro h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.offer-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

/* .offer-benefit:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: #fbbf24;
} */

.offer-benefit i {
    font-size: 2rem;
    color: #fbbf24;
    min-width: 40px;
}

.offer-benefit h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offer-benefit p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.special-offer-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.special-offer-form .form-group label {
    color: white;
    font-weight: 600;
}

.special-offer-form .form-group input,
.special-offer-form .form-group select,
.special-offer-form .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.3);
    color: #1f2937;
}

.special-offer-form .form-group input:focus,
.special-offer-form .form-group select:focus,
.special-offer-form .form-group textarea:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.offer-timer {
    text-align: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.timer-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(220, 38, 38, 0.3);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-top: 1rem;
}

.special-offer-submit {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    width: 100%;
    margin-top: 1rem;
}

.special-offer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.special-offer-submit i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

@keyframes offerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    }
}

/* Responsive Special Offer Modal */
@media (max-width: 768px) {
    .special-offer-content {
        width: 95%;
        margin: 1rem;
    }
    
    .offer-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .special-offer-intro h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .offer-benefit {
        padding: 1rem;
    }
    
    .offer-benefit i {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .offer-benefit h3 {
        font-size: 1.1rem;
    }
    
    .special-offer-form {
        padding: 1.5rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .special-offer-submit {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
        
    }
} 

/* Hero CTA Button */
.hero-cta-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: heroPulse 2s infinite;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.hero-cta-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
    }
}

/* Free Lesson Modal Styles */
.free-lesson-intro {
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    border: 3px solid #0ea5e9;
    position: relative;
    overflow: hidden;
}

.free-lesson-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.free-lesson-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    animation: freeLessonPulse 2s infinite;
    position: relative;
    z-index: 1;
}

.free-lesson-badge i {
    font-size: 1.2rem;
}

.free-lesson-intro p {
    color: #374151;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.free-lesson-form {
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.free-lesson-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.free-lesson-form .form-group {
    margin-bottom: 0rem;
}

.free-lesson-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.free-lesson-form .form-group input,
.free-lesson-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.free-lesson-form .form-group input:focus,
.free-lesson-form .form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.free-lesson-benefits {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 20px;
    border: 3px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.free-lesson-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: slideRight 4s infinite;
}

@keyframes slideRight {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.free-lesson-benefits h4 {
    color: #92400e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.free-lesson-benefits .benefits-list {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.free-lesson-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.free-lesson-benefits .benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.free-lesson-benefits .benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.free-lesson-benefits .benefit-item span {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

.free-lesson-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.free-lesson-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.free-lesson-submit:hover::before {
    left: 100%;
}

.free-lesson-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.free-lesson-submit i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

@keyframes freeLessonPulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
        transform: scale(1.05);
    }
}

/* Responsive styles for free lesson modal */
@media (max-width: 768px) {
    .hero-cta-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .free-lesson-intro {
        padding: 1.5rem;
    }
    
    .free-lesson-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .free-lesson-intro p {
        font-size: 1.1rem;
    }
    
    .free-lesson-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .free-lesson-benefits {
        padding: 1.5rem;
    }
    
    .free-lesson-benefits .benefit-item {
        padding: 0.8rem;
    }
    
    .free-lesson-submit {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .free-lesson-intro {
        padding: 1rem;
    }
    
    .free-lesson-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .free-lesson-intro p {
        font-size: 1rem;
    }
    
    .free-lesson-form {
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .free-lesson-form .form-group input,
    .free-lesson-form .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .free-lesson-benefits {
        padding: 1rem;
    }
    
    .free-lesson-benefits h4 {
        font-size: 1.1rem;
    }
    
    .free-lesson-benefits .benefit-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }
    
    .free-lesson-benefits .benefit-item span {
        font-size: 0.9rem;
    }
    
    .free-lesson-submit {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}