/* Global Styles */
:root {
    --primary: #008000;
    --secondary: #006000;
    --dark: #333333;
    --light: #f8f9fa;
    --accent: #00a000;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 0.7rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.toppage-heder{
    background-color: var(--primary);
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 128, 0, 0.8), rgba(0, 96, 0, 0.8));
}

.page-header h1 {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
}

.name{
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(255, 255, 255);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 128, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 128, 0, 0.2);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 1rem;
    transform-origin: center bottom;
}

/*
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
*/

/* Features */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 128, 0, 0.1);
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 128, 0, 0.1);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 128, 0, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Coaches Section */
.coach-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Schedule */
.schedule-table th {
    background-color: rgba(0, 128, 0, 0.1);
}

.bg-light-green {
    background-color: rgba(0, 128, 0, 0.1);
}

.bg-light-blue {
    background-color: rgba(0, 128, 255, 0.1);
}

.bg-light-orange {
    background-color: rgba(255, 128, 0, 0.1);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed rgba(0, 128, 0, 0.3);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 128, 0, 0.25);
    border-color: var(--primary);
}

/* News Section */
.news-date {
    color: var(--primary);
    font-weight: 600;
}

/* Classes Section */
.class-badge {
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

/* Video Section */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Tab Navigation */
.nav-pills .nav-link {
    color: var(--dark);
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s;
}

.nav-pills .nav-link:hover {
    background-color: rgba(0, 128, 0, 0.1);
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: white;
}

/* Thank You Page */
.thank-you-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .coach-img {
        width: 150px;
        height: 150px;
    }
    
    .nav-pills .nav-link {
        margin-bottom: 10px;
    }

    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
}
