/* Global Styles */
:root {
    --color-primary: #7048e8;
    --color-primary-light: #9775fa;
    --color-secondary: #f03e3e;
    --color-secondary-light: #ff6b6b;
    --color-text: #212529;
    --color-text-light: #495057;
    --color-background: #ffffff;
    --color-background-light: #f1f3f5;
    --color-accent: #74c0fc;
    --gradient-primary: linear-gradient(90deg, #f03e3e 0%, #7048e8 100%);
    --border-radius: 12px;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: Arial, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-special {
    color: var(--color-primary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(116, 192, 252, 0.15);
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 107, 107, 0.1);
    bottom: 20%;
    right: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background-color: rgba(112, 72, 232, 0.1);
    top: 60%;
    left: 15%;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 220, 72, 0.2);
    top: 30%;
    right: 20%;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background-color: rgba(255, 107, 107, 0.1);
    top: 20%;
    left: 10%;
}

.shape-6 {
    width: 140px;
    height: 140px;
    background-color: rgba(112, 72, 232, 0.1);
    bottom: 30%;
    right: 5%;
}

/* Header Styles */
header {
    position: relative;
    padding: 20px 0;
    background-color: var(--color-background);
    box-shadow: var(--shadow-light);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.btn-enroll {
    background-color: var(--color-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-enroll:hover {
    background-color: var(--color-secondary-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-secondary-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    padding: 15px 30px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.arrow-icon {
    font-size: 1.2rem;
}

.enrollment-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text-light);
}

.avatar-group {
    display: flex;
    gap: 5px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 20px 0;
}

.feature-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pill {
    background-color: rgba(112, 72, 232, 0.1);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
}

/* Why This Course Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: rgba(112, 72, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.code-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline></svg>'); }
.learn-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>'); }
.train-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"></path><path d="M12 6v6l4 2"></path></svg>'); }
.solve-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M9 12l2 2 4-4"></path><circle cx="12" cy="12" r="10"></circle></svg>'); }
.interaction-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>'); }
.future-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><polygon points="12 2 15 8 22 9 17 14 18 21 12 18 6 21 7 14 2 9 9 8"></polygon></svg>'); }
.help-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M9 12l2 2 4-4"></path><circle cx="12" cy="12" r="10"></circle></svg>'); }
.confidence-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle></svg>'); }
.ready-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line></svg>'); }
.schedule-icon { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>'); }
/* Industry Expert Sessions */
.expert-sessions-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z"/><path d="M12 6a4 4 0 0 0-4 4h8a4 4 0 0 0-4-4z"/></svg>');
}

/* Regular Parent-Teacher Interaction */
.parent-teacher-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2"/><circle cx="10" cy="7" r="4"/><path d="M21 21v-2a4 4 0 0 0-3-3.87"/><circle cx="18" cy="7" r="3"/></svg>');
}

/* Regular Doubt Sessions */
.doubt-sessions-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><path d="M12 17h.01"/></svg>');
}

/* Engaging Quizzes */
.quizzes-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M12 20h9"/><path d="M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4z"/><path d="M12 13h.01"/></svg>');
}

/* Exciting Projects */
.projects-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M3 3h7v7H3z"/><path d="M14 3h7v7h-7z"/><path d="M14 14h7v7h-7z"/><path d="M3 14h7v7H3z"/></svg>');
}

/* Thrilling Competitions */
.competitions-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/><path d="M19 9l-7-7-7 7v6l7 7 7-7z"/></svg>');
}

/* Learning Certificates */
.certificates-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M4 3h16v16H4z"/><path d="M12 8v4"/><path d="M10 12h4"/><circle cx="12" cy="16" r="1"/></svg>');
}

/* Live Personalized Classes */
.personalized-classes-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
}

/* Gamified Learning Experience */
.gamified-learning-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237048E8" stroke-width="2"><path d="M12 2v6"/><path d="M12 16v6"/><path d="M2 12h6"/><path d="M16 12h6"/><circle cx="12" cy="12" r="2"/></svg>');
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Curriculum Section */
.curriculum-subtitle {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.curriculum-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(112, 72, 232, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--color-background);
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--color-background-light);
}

.week-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 600;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.2rem;
}

.accordion-toggle {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23495057" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-size: contain;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 20px;
    background-color: var(--color-background-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

.content-note {
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 1rem;
}

.session {
    margin-bottom: 1.5rem;
}

.session h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.vocabulary {
    margin-top: 1rem;
}

.vocabulary h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.vocab-item {
    background-color: rgba(112, 72, 232, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* Schedule Section */
.tag-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tag-pill {
    background-color: rgba(112, 72, 232, 0.1);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--color-background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.project-card img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
}

.relation {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.video-testimonial {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.video-container {
    position: relative;
    margin-bottom: 1rem;
}

.video-container video {
    width: 100%;
    border-radius: var(--border-radius);
}

.video-controls {
    display: none; /* Hide static controls since video has native controls */
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
}

.time {
    color: white;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: white;
}

.volume, .fullscreen {
    color: white;
    font-size: 1rem;
}

.video-quote {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.video-author {
    color: var(--color-text-light);
}

/* Call to Action Section */
.cta-section {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 200px;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1rem;
}

.btn-enroll-action {
    background-color: white;
    color: var(--color-primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-enroll-action:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Footer */
footer {
    background-color: var(--color-background);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-text-light);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.contact-info {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    max-width: 300px;
}

.btn-contact {
    background-color: var(--color-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: var(--color-secondary-light);
}

.copyright {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}