:root {
    --primary-color: #0d6efd;
    --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    --secondary-color: #000000;
    --accent-color: #ffc107;
    --text-dark: #1a202c;
    --text-light: #555555;
    --bg-light: #f8fbff;
    --white: #ffffff;
    --light-gray: #ccc;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0d6bf6 0%, #2d3748 100%);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.12);
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-color);
}

.logo span b {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #0056b3;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(20, 199, 250, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-tag {
    background: rgba(0, 86, 179, 0.1);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image-wrap {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    z-index: 2;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    max-width: 100%;
}

.hero-image-card img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

/* Ticker */
.ticker-wrap {
    background: var(--primary-color);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-weight: 500;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Info Cards */
.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 800;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f4f8;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin: 10px 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-header {
    cursor: pointer;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-content {
    display: none;
    padding: 20px;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
    background: #fff;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px !important;
    }

    .logo {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .country-flags {
        justify-content: center;
    }

    /* Navigation */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: var(--primary-color);
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        height: calc(100vh - 70px);
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        font-size: 18px;
        display: block;
        padding: 15px 0;
    }

    /* Hero */
    .hero {
        padding: 40px 0 !important;
        text-align: center;
    }

    .hero-grid {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        padding-right: 0 !important;
        order: 1;
    }

    .hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 16px !important;
    }

    .hero-image {
        order: 2;
        margin-top: 0 !important;
        min-height: auto !important;
    }

    .hero-image-wrap {
        margin-right: 0 !important;
    }

    .hero-btn-group {
        justify-content: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Cards */
    .course-card {
        text-align: center;
        align-items: center;
    }

    .course-features li {
        justify-content: center;
    }

    /* Tables */
    table {
        display: block;
        overflow-x: auto;
    }

    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .page-banner h1 {
        font-size: 30px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero div[style*="display:flex"] {
        flex-direction: column;
        align-items: center;
    }
}

/* Utilities for Mobile (Can be used in PHP files) */
.mobile-stack {
    flex-direction: column !important;
}

.mobile-center {
    text-align: center !important;
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
}

/* Course Card Design */
.course-card {
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-card.black {
    background-color: #000;
}

.course-card.blue {
    background-color: #0d6efd;
    /* Bootstrap primary blue-ish */
}

.course-badge {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.course-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.course-features li {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-features li i {
    font-size: 12px;
}

.btn-course {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.course-card.black .btn-course {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}

.course-card.black .btn-course:hover {
    background-color: #0b5ed7;
}

.course-card.blue .btn-course {
    background-color: #000;
    color: #fff;
    border: none;
}

.course-card.blue .btn-course:hover {
    background-color: #222;
}

/* New Sections Styles */

/* Who Can Join Section */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.target-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f4f8;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.target-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* What Will You Get Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.benefit-icon {
    min-width: 40px;
    height: 40px;
    background: #eaffee;
    color: #00c853;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Our Trainers Section */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trainer-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f4f8;
}

.trainer-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 30px auto 15px;
    border: 4px solid #f8fbff;
    background: #eee;
}

.trainer-info {
    padding: 0 20px 30px;
}

.trainer-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.trainer-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.trainer-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trainer-tag {
    font-size: 12px;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--text-light);
}