/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-green: #2c5f2d;
    --secondary-green: #97bc62;
    --accent-red: #e63946;
    --black: #000000;
}

body {
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
header {
    background: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 70px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-green);
}

/* Carousel Styles */
.carousel {
    position: relative;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.prev { left: 0; }
.next { right: 0; }

/* Courses Section */
.courses {
    padding: 4rem 0;
    background: #f8f9fa;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.course-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-column {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-column ul {
    list-style: none;
    margin-top: 1rem;
}

.service-column li {
    margin: 1rem 0;
}

.service-column a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.service-column a:hover {
    color: var(--accent-red);
}

.youtube-promo {
    background: var(--primary-green);
    color: white;
    text-align: center;
}

.youtube-promo .btn {
    background: white;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Blog Styles */
.blog {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* Contact Form Styles */
.contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button.btn {
    background: var(--primary-green);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button.btn:hover {
    background: var(--secondary-green);
}

/* Footer Styles */
footer {
    background: var(--primary-green);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }

    .carousel-item img {
        height: 300px;
    }
}
.youtube-video {
    text-align: center;
    margin-top: 20px;
}

.youtube-video iframe {
    max-width: 560px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.youtube-video .btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.youtube-video .btn:hover {
    background-color: #cc0000;
}
