/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    background: #fff;
}

/* Skip to main content (Accessibility) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Color Variables - Modern 2025 Palette */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Navigation - Modern Glass Morphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling - Modern */
.logo-img {
    height: 60px;
    width: 60px;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 50%;
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .logo-img {
    height: 50px;
    width: 50px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    margin: 0;
    transition: font-size 0.3s ease;
    font-weight: 800;
}

.navbar.scrolled .nav-logo h2 {
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Watermark - Subtle */
.page-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background-image: url("WhatsApp Image 2025-10-10 at 5.05.26 PM.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: grayscale(100%);
}

/* Hero Section - Modern Gradient */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(248,250,252,1), transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.75rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 1.3s; }
.floating-card:nth-child(3) { 
    animation-delay: 2.6s; 
    grid-column: span 2;
}

.floating-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.floating-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

/* Buttons - Modern Design */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    position: relative;
    z-index: 1;
}

/* Why Choose Us - Modern Cards */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 4rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.feature-card i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.375rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Courses Section - Modern Grid */
.courses {
    padding: 6rem 0;
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.course-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.course-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 24px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.course-icon i {
    font-size: 2.25rem;
    color: white;
}

.course-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.course-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 0.75rem 0;
    color: var(--gray-color);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 900;
    font-size: 1.25rem;
}

.course-duration {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Lead Form Section - Modern */
.lead-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.lead-form {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group input {
    padding: 1.25rem 1.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--gray-color);
    font-weight: 400;
}

.lead-form .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1.375rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
}

/* CTA Section - Modern Gradient */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Testimonials - Modern Cards */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, var(--light-color) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.student-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.student-info span {
    color: var(--gray-color);
    font-size: 0.9375rem;
}

/* About Section - Modern Layout */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.about-text h3 {
    color: var(--dark-color);
    margin: 2.5rem 0 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stat h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.stat p {
    margin: 0;
    font-weight: 600;
}

.about-highlights h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.625rem;
    font-weight: 700;
}

.about-highlights ul {
    list-style: none;
}

.about-highlights li {
    padding: 1rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
}

.about-highlights i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* FAQ Section - Modern Accordion */
.faq {
    padding: 6rem 0;
    background: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4rem;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-item:hover {
    box-shadow: var(--shadow-xl);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    color: var(--dark-color);
    font-size: 1.125rem;
    font-weight: 700;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.125rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 1.75rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Contact Section - Modern */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 40px;
    text-align: center;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.contact-item a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    box-shadow: var(--shadow-md);
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.contact-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

.contact-btn.phone {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.contact-btn.email {
    background: var(--gray-color);
    color: white;
    border-color: var(--gray-color);
}

/* Footer - Modern */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.625rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.375rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

/* Video Testimonials Styling */
.video-testimonials-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.video-section-subtitle,
.text-testimonials-subtitle {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 1.5rem;
    background: white;
}

.video-title {
    font-size: 1.125rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
}

/* Gallery Section Styling */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    background: var(--light-color);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-text {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-color);
    grid-column: 1 / -1;
}

.loading-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.loading-message p {
    font-size: 1.125rem;
    margin: 0;
}

.no-content-message {
    text-align: center;
    padding: 3rem 2rem;
    grid-column: 1 / -1;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.no-content-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.no-content-message p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }


    .video-section-subtitle,
    .text-testimonials-subtitle {
        font-size: 1.5rem;
    }
}


/* REEL CONTAINER */
.reel-card {
    width: 270px;
    margin: auto;
}

/* 9:16 RATIO */
.reel-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.88%; /* 9:16 */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    background: #000;
}

/* DRIVE IFRAME */
.reel-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: none;
}

/* ============================================
   VIDEO TESTIMONIALS - HORIZONTAL SCROLL CAROUSEL
   ============================================ */

.video-testimonials-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.video-section-subtitle {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

/* HORIZONTAL SCROLL CONTAINER */
.video-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    margin: 0 -20px;
    padding-left: 20px;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

/* HIDE SCROLLBAR BUT KEEP FUNCTIONALITY */
.video-grid::-webkit-scrollbar {
    height: 8px;
}

.video-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.video-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.video-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* REEL CARD - VERTICAL VIDEO */
.reel-card {
    flex: 0 0 260px;
    width: 260px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: scale(1.05);
}

/* 9:16 ASPECT RATIO (INSTAGRAM/YOUTUBE SHORTS) */
.reel-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 ratio */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    background: #000;
}

/* GOOGLE DRIVE IFRAME CROP TO VERTICAL */
.reel-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: none;
}

/* VIDEO CAPTION */
.reel-caption {
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1.4;
}

/* ============================================
   GALLERY - HORIZONTAL SCROLL CAROUSEL
   ============================================ */

.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
}





/* GALLERY ITEM */
.gallery-item {
    flex: 0 0 320px;
    width: 320px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--light-color);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.3);
}

/* GALLERY IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* GALLERY OVERLAY */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-text {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ============================================
   LOADING & NO CONTENT MESSAGES
   ============================================ */

.loading-message,
.no-content-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-color);
    width: 100%;
    min-width: 300px;
}

.loading-message i,
.no-content-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.loading-message i {
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.no-content-message i {
    color: var(--gray-color);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-message p,
.no-content-message p {
    font-size: 1.125rem;
    margin: 0;
}

/* ============================================
   NAVIGATION ARROWS (OPTIONAL)
   ============================================ */

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .video-grid,
   
    
    .reel-card {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        width: 280px;
        height: 210px;
    }
    
    .video-section-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reel-card {
        flex: 0 0 220px;
        width: 220px;
    }
    
    .gallery-item {
        flex: 0 0 260px;
        width: 260px;
        height: 195px;
    }
    
    
}

/* === FORCE GALLERY IMAGE VISIBILITY === */

#gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    display: block !important;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 12px;
    opacity: 1 !important;
    visibility: visible !important;
    background: #f0f0f0;
}


.gallery-item {
    display: block;
    position: relative;
}

.gallery-item img {
    display: block !important;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 1 !important;
    visibility: visible !important;
    background: #eee;
}



/* ============================================
   TOUCH FEEDBACK
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    .reel-card:active {
        transform: scale(0.98);
    }
}


/* CAPTION */
.reel-caption {
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}


.scroll-to-top.show {
    display: flex;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */
.btn:focus,
.contact-btn:focus,
.nav-link:focus,
.form-group input:focus,
.faq-question:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .page-watermark {
        width: 350px;
        height: 350px;
        opacity: 0.02;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 120px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .lead-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .page-watermark {
        width: 250px;
        height: 250px;
        opacity: 0.02;
    }

    .why-choose,
    .courses,
    .lead-section,
    .cta,
    .testimonials,
    .about,
    .faq,
    .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 45px;
        width: 45px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .course-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .faq-question,
    .faq-answer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .lead-form {
        padding: 1.75rem 1.25rem;
        margin: 2rem 0.5rem;
    }

    .page-watermark {
        width: 200px;
        height: 200px;
        opacity: 0.015;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* === FINAL FIX FOR GALLERY IMAGES === */

#gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;      /* 🔥 THIS IS THE KEY LINE */
    object-fit: cover !important;
    border-radius: 12px;
    background: #eaeaea;
}

.gallery-name {
    display: block;
    margin-top: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}


/* Print styles */
@media print {
    .navbar,
    .hero,
    .cta,
    .contact,
    .footer,
    .page-watermark,
    .scroll-to-top {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* ===== ABSOLUTE FORCE IMAGE VISIBILITY ===== */

#gallery-grid,
#gallery-grid * {
    box-sizing: border-box !important;
}

#gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 20px !important;
}

#gallery-grid a.gallery-item {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

#gallery-grid a.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 240px !important;      /* 🔥 NON-NEGOTIABLE */
    min-height: 240px !important;
    max-height: 240px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    background: #ddd !important;
}

/* ===== FINAL, CLEAN GALLERY (NO CONFLICTS) ===== */

/* ===============================
   FINAL GALLERY IMAGE FIX (SAFE)
   =============================== */

#gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 20px !important;
}

#gallery-grid a.gallery-item {
    display: block !important;
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #e5e7eb !important;
}

#gallery-grid a.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* ============================================
   GALLERY - FINAL FIX (IMAGES VISIBLE)
   ============================================ */

#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

#gallery-grid a.gallery-item {
    display: block;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#gallery-grid a.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
}

#gallery-grid a.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   VIDEO REELS - INSTAGRAM STYLE WITH MUTE
   ============================================ */

.video-grid {
    display: flex;
    gap: 1rem;
    
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    -webkit-overflow-scrolling: touch;
}

.reel-card {
    flex: 0 0 270px;
    width: 270px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: scale(1.05);
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 ratio */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    background: #000;
}

.reel-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: none;
}

/* ===============================
   MOBILE CENTER FIX FOR REELS
   =============================== */

@media (max-width: 768px) {


    .reel-card {
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media (max-width: 768px) {
    .video-grid {
        justify-content: flex-start;
        transform: translateX(40%);
        -webkit-transform: translateX(40%);
        -moz-transform: translateX(40%);
        -ms-transform: translateX(40%);
        -o-transform: translateX(40%);
}
}


/* MUTE BUTTON - WORKING */
.reel-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.reel-mute-btn:hover {
    background: rgba(0,0,0,0.85);
}

.reel-caption {
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1.4;
}

/* Instagram-style Progress Bar */
.reel-progress {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.reel-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.3s linear;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

.video-grid::-webkit-scrollbar,
#gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.video-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.video-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.video-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}






/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

