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

body, html {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #222;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    width: 280px;
    max-height: 120px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffcb05;
}

.nav-links a.active {
    color: #ffcb05;
}

/* Hero Slider */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Slide Navigation Dots */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: #ffcb05;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #fff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #ffcb05;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #fff;
    color: #0077cc;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

/* Features */
.features {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: #fff;
    padding: 30px;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0077cc;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial h4 {
    font-weight: bold;
    color: #0077cc;
}

/* CTA */
.cta {
    background: #0077cc;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcb05;
}

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

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffcb05;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Consultation Form Styles */
.consultation-form {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.consultation-form .container {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-form h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0077cc;
}

.consultation-form p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

#consultationForm {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #ffcb05;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #e6b800;
}

/* Checkboxes */
.checkbox-group label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 28px;
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 119, 204, 0.8), rgba(0, 95, 163, 0.8)),
                url('../images/about-hero-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
}

.about-content {
    padding: 60px 0;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-statement {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0077cc;
    margin: 40px 0;
}

.founder-section {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.founder-photo {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Programs Page Styles */
.programs-hero {
    background: linear-gradient(rgba(0, 119, 204, 0.8), rgba(0, 95, 163, 0.8)),
                url('../images/programs-hero-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.programs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.programs-list {
    padding: 60px 20px;
}

.program-card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 2rem;
    color: #0077cc;
    margin-bottom: 15px;
}

.program-content h2 {
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 20px;
}

.thank-you h1 {
    color: #0077cc;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger i {
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #222;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-card {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links, .footer-social {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .navbar .logo img {
        width: 180px;
        max-height: 60px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Programs List with Background */
.programs-list {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates parallax effect */
    position: relative;
    padding: 80px 0;
}

/* Add overlay for better text readability */
.programs-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Light overlay */
    z-index: 1;
}

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

/* Alternative: Dark overlay for light text */
.programs-list.dark-overlay::before {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.programs-list.dark-overlay .program-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}
/* Programs List with Background */
.programs-list {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
}

/* Add overlay for better readability */
.programs-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

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

/* Program Cards */
.program-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .programs-list {
        padding: 60px 0;
        min-height: auto;
    }
}