* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --secondary: #2d5a87;
    --accent: #c53030;
    --gold: #d69e2e;
    --dark: #1a202c;
    --light: #f7fafc;
    --text: #2d3748;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(214, 158, 46, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(214, 158, 46, 0.6)); }
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), #e53e3e);
    color: white;
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* --- MASSIVE RED CTA BUTTON --- */
.btn-massive-red {
    display: inline-block;
    background-color: #e53e3e; /* Uses your exact brand red */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(197, 48, 48, 0.4);
    transition: all 0.3s ease;
}

.btn-massive-red:hover {
    background-color: #e53e3e; /* Slightly lighter red for hover */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.6);
    color: white;
}

/* Ensure it fits on smaller phone screens */
@media (max-width: 480px) {
    .btn-massive-red {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        display: block;
    }
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.instructor {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

.instructor-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.instructor-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.instructor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instructor-img:hover {
    transform: scale(1.05);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.instructor-info h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.instructor-info h4 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: normal;
}

.credentials {
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.credential-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.instructor-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

@media (max-width: 768px) {
    .instructor-profile {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-image {
        height: 300px;
    }
}

.features {
    padding: 100px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.courses {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.course-card:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid var(--accent);
}

.stats {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

/* --- HYBRID FOOTER STYLES --- */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-grid p {
    margin-bottom: 12px;
    color: #e2e8f0; 
    line-height: 1.5;
}

/* Footer Link Styling */
.footer-grid a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-grid a:hover {
    color: white;
    transform: translateX(5px); 
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* --- HAMBURGER BUTTON STYLES --- */
.mobile-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001; /* Keeps it above the menu */
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none; /* This removes the default link underline */
    transition: color 0.3s ease; /* Adds a smooth fade effect for the hover state */
}

/* Optional: Add a hover effect so people know it's clickable */
.logo:hover {
    color: white; 
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* 1. Show the hamburger button */
    .mobile-toggle {
        display: flex; 
    }

    /* 2. Style the hidden drop-down menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 54, 93, 0.98); /* Matches your nav color */
        flex-direction: column;
        text-align: center;
        padding: 0;
        max-height: 0; /* Hidden by default */
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* 3. The class JS will add to open the menu */
    .nav-links.active {
        max-height: 350px; /* Expands the menu */
        padding: 20px 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* 4. Animate the hamburger into an "X" */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* BLOG CSS */
.blog-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}
.blog-header h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.blog-container {
    padding: 80px 0;
    background: var(--light);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.blog-post:hover {
    transform: translateY(-5px);
}
.blog-content {
    padding: 30px;
}
.blog-date {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}
.blog-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.blog-excerpt {
    color: var(--text);
    margin-bottom: 20px;
}
.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}
.read-more:hover {
    text-decoration: underline;
}

/* LF-PROGRESS CSS */
.lf-progress {
  -webkit-appearance: none;
  -moz-apperance: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  cursor: pointer;
}
.lf-progress:focus { outline: none; border: none; }
.lf-progress::-moz-range-track { cursor: pointer; background: none; border: none; outline: none; }
.lf-progress::-webkit-slider-thumb { -webkit-appearance: none !important; height: 13px; width: 13px; border: 0; border-radius: 50%; background: #0fccce; cursor: pointer; }
.lf-progress::-moz-range-thumb { -moz-appearance: none !important; height: 13px; width: 13px; border: 0; border-radius: 50%; background: #0fccce; cursor: pointer; }
.lf-progress::-ms-track { width: 100%; height: 3px; cursor: pointer; background: transparent; border-color: transparent; color: transparent; }
.lf-progress::-ms-fill-lower { background: #ccc; border-radius: 3px; }
.lf-progress::-ms-fill-upper { background: #ccc; border-radius: 3px; }
.lf-progress::-ms-thumb { border: 0; height: 15px; width: 15px; border-radius: 50%; background: #0fccce; cursor: pointer; }
.lf-progress:focus::-ms-fill-lower { background: #ccc; }
.lf-progress:focus::-ms-fill-upper { background: #ccc; }
.lf-player-container :focus { outline: 0; }
.lf-popover { position: relative; }
.lf-popover-content { display: inline-block; position: absolute; opacity: 1; visibility: visible; transform: translate(0, -10px); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97); }
.lf-popover-content.hidden { opacity: 0; visibility: hidden; transform: translate(0, 0px); }
.lf-player-btn-container { display: flex; align-items: center; }
.lf-player-btn { cursor: pointer; fill: #999; width: 14px; }
.lf-player-btn.active { fill: #555; }
.lf-popover { position: relative; }
.lf-popover-content { display: inline-block; position: absolute; background-color: #ffffff; opacity: 1; transform: translate(0, -10px); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97); padding: 10px; }
.lf-popover-content.hidden { opacity: 0; visibility: hidden; transform: translate(0, 0px); }
.lf-arrow { position: absolute; z-index: -1; content: ''; bottom: -9px; border-style: solid; border-width: 10px 10px 0px 10px; }
.lf-left-align, .lf-left-align .lfarrow { left: 0; right: unset; }
.lf-right-align, .lf-right-align .lf-arrow { right: 0; left: unset; }
.lf-text-input { border: 1px #ccc solid; border-radius: 5px; padding: 3px; width: 60px; margin: 0; }
.lf-color-picker { display: flex; flex-direction: row; justify-content: space-between; height: 90px; }
.lf-color-selectors { display: flex; flex-direction: column; justify-content: space-between; }
.lf-color-component { display: flex; flex-direction: row; font-size: 12px; align-items: center; justify-content: center; }
.lf-color-component strong { width: 40px; }
.lf-color-component input[type='range'] { margin: 0 0 0 10px; }
.lf-color-component input[type='number'] { width: 50px; margin: 0 0 0 10px; }
.lf-color-preview { font-size: 12px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-left: 5px; }
.lf-preview { height: 60px; width: 60px; }
.lf-popover-snapshot { width: 150px; }
.lf-popover-snapshot h5 { margin: 5px 0 10px 0; font-size: 0.75rem; }
.lf-popover-snapshot a { display: block; text-decoration: none; }
.lf-popover-snapshot a:before { content: '⥼'; margin-right: 5px; }
.lf-popover-snapshot .lf-note { display: block; margin-top: 10px; color: #999; }
.lf-player-controls > div { margin-right: 5px; margin-left: 5px; }
.lf-player-controls > div:first-child { margin-left: 0px; }
.lf-player-controls > div:last-child { margin-right: 0px; }