/*
  Champions Career Academy - Custom Stylesheet
  Focus: Modern UI/UX, Flexbox/Grid, Color Palette, Premium aesthetic
*/

:root {
    /* Brand Colors */
    --clr-primary: #F4C300;
    /* Yellow */
    --clr-secondary: #0B2A5B;
    /* Dark Blue */
    --clr-accent-red: #E53935;
    --clr-accent-blue: #4A90E2;
    --clr-accent-gold: #C89B3C;

    /* Neutral & Backgrounds */
    --clr-bg: #FFFFFF;
    --clr-bg-section: #F8F9FB;
    --clr-text-main: #333333;
    --clr-text-muted: #666666;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(11, 42, 91, 0.08);
    --shadow-hover: 0 15px 35px rgba(11, 42, 91, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* UTILITIES */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--clr-bg-section);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
    box-shadow: 0 4px 15px rgba(244, 195, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 195, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-secondary);
    border: 2px solid var(--clr-secondary);
}

.btn-secondary:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-secondary);
    border: 2px solid var(--clr-primary);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    /* Adjust according to actual logo */
    object-fit: contain;
}

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

.nav-link {
    font-weight: 500;
    color: var(--clr-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

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

.nav-btn {
    background-color: var(--clr-secondary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background-color: var(--clr-primary);
    color: var(--clr-secondary) !important;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-secondary);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: var(--clr-secondary); /* Premium deep dark blue background */
    position: relative;
    overflow: hidden;
}

/* Premium glowing orbs for abstract background effect */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 195, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch; /* Stretches both columns to be equal height */
    position: relative;
    z-index: 1; /* Keeps content layered above the background effects */
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(244, 195, 0, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(244, 195, 0, 0.3);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(244, 195, 0, 0.1);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85); /* Legible on dark background */
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 95%;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--clr-secondary);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Stats in Hero */
.floating-stat {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.stat-1 {
    bottom: 30px;
    left: -30px;
}

.stat-2 {
    top: 50px;
    right: -30px;
    animation-delay: 2s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--clr-secondary);
}

.stat-text span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TRUST BAR */
.trust-bar {
    background-color: var(--clr-secondary);
    color: white;
    padding: 30px 0;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-item i {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-image img {
    border-radius: var(--radius-lg);
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--clr-primary);
    top: -15px;
    left: -15px;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-highlights {
    margin-top: 30px;
}

.about-highlights li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background-color: var(--clr-accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-text p {
    color: var(--clr-text-muted);
}

/* COURSES SECTION */
.courses {
    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(11, 42, 91, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 195, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.courses::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.courses .container {
    position: relative;
    z-index: 1; /* Keeps content layered above the background effects */
}

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

.course-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--clr-primary);
}

.course-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 42, 91, 0.05);
    color: var(--clr-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.course-card:hover .course-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-primary);
}

.course-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.course-desc {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.course-link {
    color: var(--clr-accent-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-link:hover {
    color: var(--clr-secondary);
}

/* FACULTY SECTION */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.faculty-card {
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--clr-primary);
}

.faculty-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-img img {
    transform: scale(1.05);
}

.faculty-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(11, 42, 91, 0.95));
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}

.faculty-card:hover .faculty-socials {
    bottom: 0;
}

.faculty-socials a {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.faculty-socials a:hover {
    background: var(--clr-primary);
    color: var(--clr-secondary);
}

.faculty-info {
    padding: 25px;
}

.faculty-name {
    font-size: 1.4rem;
    color: var(--clr-secondary);
    margin-bottom: 5px;
}

.faculty-subject {
    display: inline-block;
    color: var(--clr-accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faculty-details {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.faculty-details li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.faculty-details li strong {
    color: var(--clr-text-main);
    font-weight: 600;
}

.faculty-details i {
    color: var(--clr-primary);
    width: 25px;
}

/* WHY CHOOSE US */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent-gold) 100%);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
}

/* RESULTS / STATS */
.stats {
    background-color: var(--clr-secondary);
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at right, rgba(244, 195, 0, 0.1) 0%, transparent 40%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* TESTIMONIALS */
.testimonials {
    background-color: var(--clr-bg-section);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201D';
    font-family: var(--font-heading);
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 350px;
    color: rgba(244, 195, 0, 0.05);
    line-height: 1;
    z-index: 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0 50px 0;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
    gap: 30px;
    padding: 20px 0;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    width: 500px;
    max-width: 85vw; /* Graceful scaling on mobile */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.testimonial-card-inner {
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(11, 42, 91, 0.08);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    max-width: 850px;
    width: 100%;
    position: relative;
    border-top: 4px solid var(--clr-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 195, 0, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.feedback {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--clr-text-main);
    margin-bottom: 35px;
    font-weight: 500;
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
}

.student-info img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.student-info h4 {
    font-size: 1.2rem;
    color: var(--clr-secondary);
    margin-bottom: 4px;
}

.student-info span {
    color: var(--clr-accent-blue);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: none; /* Hidden since we use infinite CSS marquee */
}

.slider-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    color: var(--clr-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--clr-primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--clr-secondary);
    transform: scale(1.3);
}

/* CTA SECTION */
.cta-section {
    background-color: var(--clr-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at bottom right, rgba(11, 42, 91, 0.1) 0%, transparent 60%);
}

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

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--clr-secondary);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(11, 42, 91, 0.8);
}

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

.cta-section .btn-primary {
    background-color: var(--clr-secondary);
    color: white;
}

.cta-section .btn-primary:hover {
    background-color: #082046;
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-list {
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(11, 42, 91, 0.05);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--clr-text-muted);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.form-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--clr-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(244, 195, 0, 0.1);
}

/* FOOTER */
.footer {
    background-color: #061733;
    color: white;
    padding-top: 80px;
    border-top: 5px solid var(--clr-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
.footer-brand-text {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--clr-bg);
    margin-bottom: 20px;
    font-weight: 700;
}

.brand-col p {
    color: #a0aabf;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0aabf;
}

.footer-col ul li a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.contact-col p {
    display: flex;
    gap: 10px;
    color: #a0aabf;
    margin-bottom: 15px;
}

.contact-col p i {
    color: var(--clr-primary);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #040f23;
    padding: 20px 0;
    text-align: center;
    color: #a0aabf;
    font-size: 0.9rem;
}

/* FLOATING ELEMENTS */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-chat-btn:hover {
    transform: scale(1.1);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mobile-sticky-cta .btn {
    flex: 1;
    border-radius: 0;
    padding: 15px;
    font-size: 1rem;
}

.mobile-sticky-cta .btn-enroll {
    background-color: var(--clr-primary);
    color: var(--clr-secondary);
}

.mobile-sticky-cta .btn-call {
    background-color: var(--clr-secondary);
    color: white;
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVENESS */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

    .hero {
        padding-top: 120px;
    }

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

    .floating-stat {
        padding: 10px 15px;
    }

    .stat-1 {
        left: 0;
        bottom: 20px;
    }

    .stat-2 {
        right: 0;
        top: 20px;
    }

    .trust-container {
        flex-direction: column;
        gap: 15px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .mobile-sticky-cta {
        display: flex;
    }

    .floating-chat-btn {
        bottom: 80px;
    }

    /* Adjust for sticky CTA */

    /* Modify footer padding to account for sticky bottom CTA */
    body {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}