 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f7c948;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

header .navbar a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}

header .navbar a:hover {
    color: #333;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo img {
    height: 55px; 
    width: auto;
    border-radius: 50%;
    background: #fff8f0;
    padding: 5px;
}


.search-bar {
    display: flex;
    align-items: center;
    margin-left: 2rem; 
}

.search-bar form {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input {
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #333;
    width: 180px; 
}

.search-bar button {
    background: #f7c948;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #333;
}




#menu-bars {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


section {
    padding: 100px 5%;
    min-height: 100vh;
}

section h1.heading,
section h3.title {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

section p {
    margin-bottom: 1rem;
}


.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
       background: #ffefd5 url('kalea.png') no-repeat center center/cover;
    padding-top: 150px;
}

.home .content {
    flex: 1 1 450px;
}

.home .content h1 {
    font-size: 3rem;
    color: #f7c948;
}

.home .content h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.home .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.home .btn {
    display: inline-block;
    background: #f7c948;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.home .btn:hover {
    background: #333;
    color: #fff;
}

.home .image {
    flex: 1 1 400px;
    text-align: center;
}

.home .image img {
    max-width: 100%;
}




.features .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.features .box {
    flex: 1 1 250px;
    background: #fff3e0;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.enrollment .box:hover {
    transform: translateY(-10px);
}

.enrollment .box img {
    width: 60px;
    margin-bottom: 1rem;
}

.enrollment.box h3 {
    margin-bottom: 0.5rem;
}


/* --- Payment Section Styling (About Section) --- */
.about.background {
    background: #fff8f0;
    padding: 100px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.about.background .image {
    flex: 1 1 350px;
    text-align: center;
}

.about.background .image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about.background .content {
    flex: 1 1 450px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.about.background .content h3 {
    color: #f7c948;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.about.background .content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.about.background .content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.about.background .content ul li {
    background: #fff8f0;
    border-left: 5px solid #f7c948;
    padding: 0.7rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #444;
    transition: transform 0.3s;
}

.about.background .content ul li:hover {
    transform: translateX(5px);
}

.about.background .btn {
    display: inline-block;
    background: #f7c948;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about.background .btn:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .about.background {
        flex-direction: column;
        text-align: center;
        padding: 80px 5%;
    }

    .about.background .content {
        text-align: left;
    }

    .about.background .image img {
        max-width: 300px;
    }
}

  
	

}


.services .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.services .box {
    flex: 1 1 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.services .box:hover {
    transform: translateY(-10px);
}

.services .box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.parent .testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.parent .testimonial:hover {
    transform: translateY(-5px);
}

.parent .quote {
    font-style: italic;
    color: #555;
}

.parent .meta {
    margin-top: 1rem;
    color: #333;
    font-weight: 600;
	
	
}

.stars {
    color: gold;
}


/* --- Compact Vision & Mission (Left to Right) --- */
/* --- Vision & Mission Section (Aligned Boxes) --- */
.vision-mission {
    background: #fff3e0;
    padding: 60px 5%;
    text-align: center;
}

.vision-mission .heading {
    color: #f7c948;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-transform: capitalize;
}

.vm-row {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 2rem;
    flex-wrap: wrap;
}


.vm-box {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    flex: 1 1 450px;
    max-width: 500px;
    min-height: 220px; 
    transition: transform 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-5px);
}

/* Icons */
.vm-box img {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    border-radius: 50%;
    background: #fff3e0;
    padding: 0.3rem;
    flex-shrink: 0;
}

/* Content inside each box */
.vm-content {
    text-align: left;
}

.vm-content h3 {
    color: #f7c948;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.vm-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .vm-row {
        flex-direction: column;
        align-items: center;
    }

    .vm-box {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .vm-box img {
        margin: 0 0 1rem 0;
    }

    .vm-content {
        text-align: center;
    }
}

.vm-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    flex: 1 1 450px;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-5px);
}

.vm-box img {
    width: 70px;
    height: 70px;
    margin-right: 1rem;
    border-radius: 50%;
    background: #fff3e0;
    padding: 0.3rem;
}

.vm-content h3 {
    color: #f7c948;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.vm-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

/* Responsive (for mobile) */
@media (max-width: 768px) {
    .vm-row {
        flex-direction: column;
        align-items: center;
    }

    .vm-box {
        flex-direction: column;
        text-align: center;
    }

    .vm-box img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .vm-content h3, .vm-content p {
        text-align: center;
    }
}



.contact {
    padding: 80px 5%;
    background: #fff8f0;
}

.contact .heading {
    text-align: center;
    color: #f7c948;
    font-size: 2rem;
    margin-bottom: 3rem;
}


.contact {
    padding: 100px 5%;
    background: #fff8f0;
}

.contact .heading {
    text-align: center;
    color: #f7c948;
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Layout for info + form */
.contact .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}


.contact-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info .info-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info .info-box:hover {
    transform: translateY(-5px);
}

.contact-info .info-box i {
    font-size: 2rem;
    color: #f7c948;
    margin-right: 1rem;
}

.contact-info .info-box div {
    display: flex;
    flex-direction: column;
}

.contact-info .info-box h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-info .info-box p {
    margin-top: 0.3rem;
    font-size: 0.95rem;
    color: #555;
}

.contact-form {
    flex: 1 1 400px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form .box {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form .box:focus {
    border-color: #f7c948;
    box-shadow: 0 0 5px rgba(247,201,72,0.5);
    outline: none;
}

.contact-form textarea.box {
    height: 120px;
    resize: none;
}

.contact-form .btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    background: #f7c948;
    color: #fff;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
    background: #333;
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .contact .row {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
    }

    .contact-info .info-box {
        justify-content: center;
        text-align: center;
    }

    .contact-info .info-box i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}


/* --- Gallery Section Background --- */
.services.up-and-down {
    background: #fff3e0;
    padding: 100px 5%;
}

/* --- Testimonials Section Background --- */
.parent.background {
    background: #fff3e0;
    padding: 100px 5%;
}



 

 