* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Baloo 2", sans-serif;
    font-weight: 300;

}

body {
    /* font-family: 'Baloo 2'; */
    /* background-color: #ffffff;
      color: #333; */
}

/* .hero-wrapper {
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #111010;
    height: 80vh;
    text-align: center;
} */
.hero-wrapper {
    background-image: url('Images/hero-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #111010;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 2%;
    /* flex-wrap: wrap; */
}

/* .hero-content {
    margin-left: 550px;
    max-width: 600px;
} */

.hero-content h1 {
    font-size: 35px;

    color: red;
    -webkit-text-stroke: 1.5px rgb(209, 27, 27);
    font-weight: 1900;

}

.hero-content h2 {
    font-size: 36px;
    font-weight: 1900;
    color: red;
    -webkit-text-stroke: 1.5px rgb(209, 27, 27);
}

.hero-content p {
    font-size: 26px;
    color: #2196f3;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background-color: #1c71e0;
    color: #f8f7f7;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    top: -20px;
}

.cta-button:hover {
    background-color: #e6c200;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: -380px;
    float: right;
    margin-right: 60px;
}


.about-us-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #1c71e0;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Left Image Container */
.about-left-image {
    flex: 0 0 20%;
    text-align: center;
}

.about-left-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}

/* Text Container */
.about-text-content {
    flex: 1 1 50%;
    padding: 0 20px;
    text-align: justify;

}


.about-text-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
    background-color: #faf8f8;
    color: #1c75e9;
    border-radius: 15px;
}

.about-text-content p {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    color: #faf8f8;
}

/* Right Image Container */
.about-right-image {
    flex: 1 1 10%;
    text-align: center;
}

.about-right-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}


.programs-wrapper {
    padding: 70px 2%;
    background: #f9f9f9 url('Images/aboutbg.webp') no-repeat center center;
    background-size: cover;
    /* Ensures the image covers the section */
    text-align: center;
}

.programs-wrapper h2 {
    font-size: 35px;
    margin-bottom: 40px;
    margin-left: 250px;
    margin-right: 250px;
    background: dodgerblue;
    color: #f1efef;
    border-radius: 15px;
}

.programs-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 20px;
}

.program-card {
    flex: 1 1 calc(25% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.program-card img.card-image {
    width: 190px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;

    margin-top: 5px;
}

.program-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 15px;
}

/* Unique Color Themes */
.program-card.theme-red {
    background-color: #f44336;
}

.program-card.theme-blue {
    background-color: #2196f3;
}

.program-card.theme-yellow {
    background-color: #ffeb3b;
    color: #333;
}

.program-card.theme-green {
    background-color: #4caf50;
}

.programs-bottom {
    margin-top: 20px;
}

.large-box {
    display: flex;
    align-items: center;
    background: rgb(233, 41, 41);

    padding: 20px;


}

/* Image Styling */
.large-box img {
    width: 25%;
    height: 250px;
    padding: 15px;
}

/* Content Box */
.large-box .content {
    padding: 20px;
    width: 75%;
    text-align: justify;
}

.large-box .content h3 {

    font-size: 25px;
    padding-bottom: 15px;
    font-weight: bold;
    color: rgb(255, 250, 250);
}

.large-box .content p {

    font-size: 20px;
    line-height: 1.6;
    color: #f8f6f6;
    margin-bottom: 15px;
}

.special-img {
    width: 300px;
    /* or use % for responsiveness */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}


.testimonial-slider-section {
    padding: 80px 10%;
    background: url('Images/aboutbg.webp') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    text-align: center;
    position: relative;
}

.testimonial-slider-heading {
    font-size: 35px;
    font-weight: bold;
    margin-left: 250px;
    margin-right: 250px;
    border-radius: 15px;

    color: #ffffff;
    background-color: #4caf50;
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    height: 250px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: #4caf50;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    z-index: 0;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.testimonial-rating {
    font-size: 20px;
    color: gold;
    margin: 10px 0;
}

.testimonial-decor {
    position: absolute;
    top: -48px;
    left: -106px;
    width: 200px;
    height: auto;
    z-index: 2;
}

.testimonial-slider-text {
    font-size: 22px;
    color: #fdfbfb;
    margin-bottom: 15px;
    margin-top: 20px;
}

.testimonial-slider-author {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-image img {
        width: 60%;
        margin-top: -150px;
        max-width: 170px;
        height: auto;
        align-items: flex-end;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .hero-content {
        margin-left: 0px;
        margin-top: 250px;

    }

    .about-right-image img {
        width: 70%;

    }

    .programs-wrapper h2 {
        font-size: 26px;
        margin-bottom: 40px;
        margin-left: 50px;
        margin-right: 50px;
        background: dodgerblue;
        color: #f7f4f4;
    }



    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-us-wrapper {
        flex-direction: column;
        text-align: center;
    }


    .about-text-content,
    .about-right-image {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .about-left-image {
        display: none;
    }

    .about-text-content {
        padding: 0;
    }

    .program-card {
        flex: 1 1 calc(50% - 20px);
        /* 2 cards per row on smaller screens */
    }

    .testimonial-slider-section {
        padding: 60px 5%;
    }

    .testimonial-slider-heading {
        font-size: 26px;
        font-weight: bold;
        margin-left: 50px;
        margin-right: 50px;
        color: #ffffff;
        background-color: #4caf50;
        margin-bottom: 40px;
    }

    .large-box img {
        width: 70%;
        height: auto;
        border-radius: 20px;
    }

    .about-text-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
        margin-left: 50px;
        margin-right: 50px;
        background-color: #faf8f8;
        color: #1c75e9;
    }

    .testimonial-slide {
        padding: 20px;
    }

    .testimonial-decor {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .program-card {
        flex: 1 1 100%;
        /* 1 card per row on very small screens */
    }

    .hero-wrapper {
        height: 56vh;
    }

}

@media (max-width: 1000px) {
    .programs-top {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* .program-box {
      max-width: 45%;
  } */
    .large-box {
        flex-direction: column;
        text-align: center;
    }

    .large-box img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        /* Keeps a soft rounded look for smaller screens */
    }

    .large-box .content {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .program-box {
        max-width: 100%;
    }
}

@media (max-width: 700px) {


    .hero-wrapper {
        height: 90vh;
    }
}







header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* padding: 1rem 0; */
}

.navbar {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 80px;
    width: 140px;
}

.tagline {
    font-size: 0.75rem;
    color: #fff;
}

nav {
    display: flex;
    gap: 2rem;
    font-family: 'Baloo 2';
}

nav a {
    text-decoration: none;
    font-size: 1rem;
    color: #00aaff;
    transition: color 0.3s;
}

nav a:hover {
    color: #0077b6;
}

nav a.contact {
    color: #ffca28;
}

.hamburger {
    font-size: 2rem;
    color: #00aaff;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.mobile-menu a {
    padding: 0.5rem 1rem;
    color: #009be0;
    text-decoration: none;
}

.mobile-menu a.contact {
    color: #ffca28;
}





/* Hero */
.hero {
    background: url(Images/hero-2.webp) repeat-x bottom;
    height: 680px;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: block;
        margin-right: 30px;
    }

    .mobile-menu.show {
        display: flex;
        margin-top: 50px;
    }

    .tagline {
        color: #333;
    }
}

.cards-container p {
    font-size: 20px;

}


/* Hero */
.hero {
    background: url('Images/hero-2.webp') repeat-x bottom;
    height: 700px;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
        margin-top: 50px;
    }

    .tagline {
        color: #333;
    }
}







/* .content a {
    background-color: white;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px;
} */

.content a {
    background-color: #ffffff;
    color: #e53935;
    /* Bright red to contrast well */
    border: 2px solid #e53935;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content a:hover {
    background-color: #e53935;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}