:root {
    --primary-color: #0f172a; /* Deep Slate Blue */
    --accent-color: #fb923c;  /* Glow Orange */
    --accent-hover: #f97316;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9fafb;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

html, body { scroll-behavior: smooth; overflow-x: hidden; width: 100%; position: relative; }
body { color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* Global Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--primary-color); color: white; }
.btn-accent { background: var(--accent-color); color: white; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); }

/* Keyword Highlighting */
.text-highlight {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
}

/* Header */
.navbar { background: white; padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
.flex-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary-color); display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: clamp(40px, 8vw, 60px); width: auto; object-fit: contain; }
.logo span { color: var(--accent-color); }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-color); }
.mobile-only { display: none; }

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Menu Active State */
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero { 
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.88) 100%);
    color: white; 
    padding: 140px 0;
    overflow: visible;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(251, 146, 60, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.15; margin-bottom: 25px; font-weight: 800; letter-spacing: -0.015em; }
.hero h1 span { color: var(--accent-color); }
.trust-badges { margin-bottom: 35px; display: flex; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.badge { 
    background: rgba(255,255,255,0.08); 
    backdrop-filter: blur(4px);
    padding: 8px 18px; 
    border-radius: 50px; 
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #e2e8f0;
    transition: 0.3s;
}
.badge:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-form-container { 
    background: white; 
    padding: 45px; 
    border-radius: 24px; 
    color: var(--text-dark); 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(0,0,0,0.05);
    scroll-margin-top: 100px;
}
.lead-form h3 { margin-bottom: 20px; text-align: center; }
.lead-form input { 
    width: 100%; 
    padding: 14px; 
    margin-bottom: 15px; 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    outline: none;
    transition: 0.3s;
}
.lead-form input:focus { border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2); }
.lead-form button { width: 100%; font-size: 18px; }
.subheadline { font-size: 1.2rem; opacity: 0.9; border-left: 4px solid var(--accent-color); padding-left: 20px; max-width: 650px; line-height: 1.5; margin-bottom: 30px; }

/* Modern Testimonial Section */
.success-stories {
    background-color: #f5f7fa;
    padding: 100px 0;
}
.success-stories .sub-heading {
    display: block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.success-stories .main-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 60px;
}
.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.success-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.student-meta strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.success-card .stars {
    color: #ffb703; /* Gold color */
    font-size: 0.85rem;
    margin-top: 4px;
}
.testimonial-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* How It Works Styles */
.how-it-works { padding: 100px 0; background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; list-style: none; }
.step-item { text-align: center; position: relative; }
.step-number {
    width: 60px; height: 60px; background: var(--primary-color); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    position: relative;
    z-index: 2;
}
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}
.step-item h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step-item p { color: #64748b; font-size: 0.95rem; }

/* Comparison Table Styles */
.comparison { padding: 100px 0; background: #fff; }
.comparison-container { overflow-x: auto; margin-top: 50px; }
.comparison-table {
    width: 100%; border-collapse: collapse; text-align: center;
    background: #f8fafc; border-radius: 20px; overflow: hidden;
}
.comparison-table th, .comparison-table td { padding: 25px; border-bottom: 1px solid #e2e8f0; }
.comparison-table th { background: #f1f5f9; font-weight: 700; }
.comparison-table .highlight { background: #fff; border-left: 2px solid #e2e8f0; border-right: 2px solid #e2e8f0; color: var(--primary-color); }
.comparison-table td .fa-check-circle { color: #22c55e; font-size: 1.5rem; }
.comparison-table td .fa-times-circle { color: #ef4444; font-size: 1.5rem; }
.comparison-table td .fa-minus-circle { color: #94a3b8; font-size: 1.5rem; }

/* Video Testimonials Section */
.video-testimonials {
    background-color: #f5f7fa;
    padding: 60px 0 100px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}
.reel-header {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reel-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.profile-info strong { font-size: 0.85rem; display: block; }
.profile-info span { font-size: 0.75rem; color: #777; }
.btn-view-profile {
    font-size: 0.75rem;
    background: #0095f6;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.reel-video {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.reel-video:hover .video-thumb { transform: scale(1.05); }
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}
.reel-footer { padding: 12px; }
.view-more {
    font-size: 0.85rem;
    color: #0095f6;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.reel-actions {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.action-icons { display: flex; gap: 12px; }
.likes-count { font-size: 0.85rem; font-weight: 600; }

/* Scroll Animation Classes */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Updated CTA Section Styles */
.cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    color: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.cta-content .main-heading {
    color: white;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.cta-content .sub-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cta-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-lead-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 8px;
}

.form-subtext {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-align: center;
}

.security-text {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
}

.security-text i {
    color: #22c55e;
    margin-right: 5px;
}

/* Stats */
.trust-stats { padding: 50px 0; background: #eee; text-align: center; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; }
.stat-item h2 { color: var(--primary-color); font-size: 36px; }

/* Advantage Section */
.advantage {
    padding: 80px 20px;
    background: #f8fafc;
}
.advantage .section-header {
    margin-bottom: 50px;
}
.advantage-label {
    display: block;
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}
.advantage .main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 10px;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.advantage-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}
.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.advantage-card .icon-box {
    background: #fef3c7;
    color: #f59e0b;
    padding: 12px;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.advantage-card i {
    font-size: 20px;
}
.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}
.advantage-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .advantage .main-heading { font-size: 32px; }
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .advantage-card { text-align: center; }
    .advantage-card .icon-box { margin: 0 auto 12px; }
/* Features */
.features { padding: 80px 0; }
.section-title { font-size: 32px; margin-bottom: 40px; color: var(--primary-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature-card { padding: 30px; border-radius: 10px; box-shadow: var(--shadow); transition: 0.3s; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card i { font-size: 40px; display: block; margin-bottom: 15px; }
.feature-card h4 { font-size: 18px; color: var(--primary-color); }

/* Courses */
.courses-premium {
    padding: 100px 0;
    background-color: #f8fafc;
}

.program-label {
    display: block;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.program-card.highlighted {
    background-color: #f1f5f9;
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.level-tag {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 20px;
}

.program-points {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.program-points li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-points li i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.cta-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    transition: 0.2s;
}

.cta-link:hover {
    color: #f59e0b;
    padding-left: 5px;
}

.program-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 60px;
}

.badge-pill {
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.badge-pill i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Enhanced Trainer Section */
.trainer {
    padding: 80px 20px;
    background: #f8fafc;
}
.trainer .section-header {
    margin-bottom: 50px;
}
.trainer-label {
    display: block;
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}
.trainer .main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
}
.trainer-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.trainer-img {
    position: relative;
    flex-shrink: 0;
}
.trainer-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}
.trainer-img:hover img {
    transform: scale(1.03);
}
.rating-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}
.trainer-info {
    text-align: left;
}
.trainer-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
}
.trainer-name {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 10px;
}
.trainer-info .description {
    color: #475569;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 25px;
}
.trainer-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.trainer-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s ease;
}
.trainer-feature-item:hover {
    transform: translateY(-3px);
}
.trainer-feature-item .icon-box {
    background: #fef3c7;
    color: #f59e0b;
    padding: 10px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trainer-feature-item span {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

/* Advantage Section */
.advantages {
    padding: 80px 0;
    background: white;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.advantage-card {
    padding: 40px 30px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #f59e0b;
}
.adv-icon-box {
    width: 60px;
    height: 60px;
    background: #fef3c7;
    color: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.advantage-card h3 { font-size: 20px; color: #0f172a; margin-bottom: 12px; }
.advantage-card p { color: #64748b; font-size: 15px; line-height: 1.6; }

/* Testimonials */
.testimonials { padding: 80px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: white; padding: 0; overflow: hidden; border-radius: 15px; box-shadow: var(--shadow); }
.testi-content { padding: 25px; }
.video-placeholder { background: #333; height: 200px; display: flex; align-items: center; justify-content: center; color: white; border-radius: 10px; margin-bottom: 20px; }

/* FAQ */
.faq { padding: 80px 0; }
.faq { 
    padding: 100px 0;
    background-color: #f8fafc;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; padding: 20px 0; cursor: pointer; }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; }
.faq-answer { display: none; padding-top: 15px; color: #666; }
.faq-item { 
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-question { 
    font-weight: 600; 
    display: flex; 
    justify-content: space-between; 
    color: #0f172a;
    font-size: 1.1rem;
}
.faq-question span { color: #f59e0b; transition: transform 0.3s ease; }
.faq-answer { display: none; padding-top: 15px; color: #475569; line-height: 1.6; border-top: 1px solid #f1f5f9; margin-top: 15px; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active { border-color: #f59e0b; }

/* Footer */
.main-footer { background: #0f172a; color: white; padding: 80px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; font-weight: 600; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent-color); }
.footer-logo img { height: 70px; margin-bottom: 20px; width: auto; }
.footer-about p { opacity: 0.7; font-size: 14px; line-height: 1.6; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; font-size: 14px; }
.footer-links ul li a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-contact p { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--accent-color); font-size: 16px; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { 
    width: 35px; height: 35px; background: rgba(255,255,255,0.05); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 5px; color: white; text-decoration: none; transition: 0.3s; 
}
.social-btn:hover { background: var(--accent-color); transform: translateY(-3px); }
.footer-bottom { 
    margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); 
    text-align: center; color: rgba(255,255,255,0.5); font-size: 13px; 
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    text-decoration: none;
}
.float-call { background: var(--primary-color); }
.float-whatsapp { background: #25d366; }
.float-top { background: var(--accent-color); opacity: 0; visibility: hidden; }
.float-top.show { opacity: 1; visibility: visible; }
.float-btn:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .cta-grid { gap: 40px; }
    .programs-grid, .steps-grid { gap: 20px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-item::after { display: none; }
    .trainer-flex { gap: 30px; }
}

@media (max-width: 768px) {
    .navbar > .container > .btn-primary { display: none; }
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        padding: 60px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-links li { width: 100%; }
    .steps-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .programs-grid {
        grid-template-columns: 1fr;
    }
    .program-badges {
        flex-direction: column;
        align-items: center;
    }
    .badge-pill {
        width: 100%;
        justify-content: center;
    }
    .nav-links.active { right: 0; }
    .mobile-only { display: block; }

    .hero-grid, .trainer-flex, .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
    
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 32px; }
    .hero .subheadline {
        border-left: none; /* Remove left border when text is centered */
        padding-left: 0;   /* Remove left padding when text is centered */
    }
    .trust-badges {
        justify-content: center; /* Center the badge items when the hero content is centered */
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .cta-content .main-heading { text-align: center; font-size: 32px; }
    .contact-info p { justify-content: center; }

    .course-card.featured { transform: scale(1); }
    .trainer-flex { 
        flex-direction: column; 
        text-align: center;
        gap: 40px;
    }
    .trainer .main-heading { font-size: 32px; }
    .trainer-info { text-align: center; }
    .trainer-feature-grid { grid-template-columns: 1fr; }
    .trainer-feature-item { justify-content: center; }
    .footer-grid { text-align: center; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .section-title { font-size: 24px; }
    .stat-item h2 { font-size: 28px; }
    .trust-badges { flex-direction: column; align-items: center; gap: 5px; }
    .container { padding: 0 15px; }
    .video-grid { grid-template-columns: 1fr; }
    .faq .main-heading { font-size: 32px; }
}