/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d1f15e;
    --primary-hover: #bfe142;
    --dark-bg: #212121;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --light-bg: #f5f5f5;
    --border-color: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    text-decoration: none;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 22px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

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

/* Header */
header {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--light-text);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Core Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.module-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.module-card p {
    border-bottom: 1px solid #D1F562;
    padding-bottom: 20px;
}

.module-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.modules-note {
    text-align: center;
    margin-top: 2rem;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Why Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #D1F562;
    padding-bottom: 20px;
}


.why-section .btn-primary {
    display: block;
    margin: 0 auto;
    margin-top: 2rem;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.course-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-card h3 {
    font-size: 1.1rem;
    text-align: center;
}

.course-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.courses-section .btn-primary {
    display: block;
    margin: 0 auto;
}

/* Feedback Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial p {
    font-style: italic;
}

.feedback-section .btn-primary {
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.faq-items {
    margin: 2rem 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-section .btn-primary {
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-details {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 250px;
        height: 100vh;
        z-index: 10;
        transition: all 0.5s ease;
        padding: 2rem 1rem;
        border-left: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0 0 1.5rem 0;
    }
    
    .modules-grid,
    .benefits-grid,
    .courses-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}
h2{
    position: relative;
}
h2::after{

}

.logo a{
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.logo span {
    color: #bada55;
}