@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

body{
    font-family: 'Fredoka', sans-serif;
    overflow-x: hidden;
}

.custom-navbar{
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.hero-section{
    background: linear-gradient(135deg,#38bdf8,#6366f1,#f472b6);
    min-height: 100vh;
    position: relative;
}

.floating-img{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform: translateY(0px);}
    50%{transform: translateY(-20px);}
    100%{transform: translateY(0px);}
}

.section-title{
    font-size: 45px;
}

.feature-box{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-box i{
    width: 70px;
    height: 70px;
    background: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000;
}

.programs-section{
    background: linear-gradient(135deg,#8b5cf6,#ec4899);
}

.program-card{
    background: white;
    padding: 40px 25px;
    border-radius: 30px;
    transition: .4s;
    height: 100%;
}

.program-card:hover{
    transform: translateY(-10px);
}

.program-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i{
    font-size: 35px;
    color: white;
}

.gallery-img{
    width: 100%;
    border-radius: 25px;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.gallery-img:hover{
    transform: scale(1.05);
}

.admission-section{
    background: linear-gradient(135deg,#f59e0b,#ef4444);
}

.footer-section{
    background: #111827;
}

.cloud{
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: .4;
}

.cloud1{
    width: 180px;
    height: 60px;
    top: 120px;
    left: 100px;
}

.cloud2{
    width: 250px;
    height: 80px;
    bottom: 100px;
    right: 100px;
}

@media(max-width:768px){

    .section-title{
        font-size: 34px;
    }

    .hero-section{
        text-align: center;
        padding-top: 120px;
    }

}
.page-banner{
    background: linear-gradient(135deg,#8b5cf6,#ec4899);
    padding: 180px 0 100px;
}

.about-box{
    background: #fff7ed;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-box h3{
    font-size: 40px;
    font-weight: bold;
    color: #f59e0b;
}

.mission-card{
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .4s;
}

.mission-card:hover{
    transform: translateY(-10px);
}

.icon-circle{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-circle i{
    font-size: 32px;
    color: white;
}

.choose-card{
    background: white;
    padding: 35px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .4s;
}

.choose-card:hover{
    transform: translateY(-10px);
}

.choose-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.choose-icon i{
    color: white;
    font-size: 35px;
}

.director-section{
    background: linear-gradient(135deg,#0f172a,#1e293b);
}

.director-img{
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
}
.activity-card{
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .4s;
    height: 100%;
}

.activity-card:hover{
    transform: translateY(-10px);
}

.activity-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content{
    padding: 30px;
    text-align: center;
}

.activity-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
    position: relative;
    border: 6px solid white;
    margin-bottom: 20px;
}

.activity-icon i{
    color: white;
    font-size: 30px;
}

.activity-cta{
    background: linear-gradient(135deg,#ec4899,#8b5cf6);
}

.table{
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.table th,
.table td{
    padding: 18px;
}
.contact-info-box,
.contact-form-box{
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-item{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i{
    color: white;
    font-size: 28px;
}

.custom-input{
    border-radius: 20px;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    font-size: 16px;
}

.custom-input:focus{
    border-color: #8b5cf6;
    box-shadow: none;
}

.map-box{
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-cta{
    background: linear-gradient(135deg,#0ea5e9,#8b5cf6);
}

@media(max-width:768px){

    .contact-info-box,
    .contact-form-box{
        padding: 30px;
    }

}