/* Google Fonts */
/* Imported in HTML for performance */

:root {
    /* Color Palette */
    --primary: #FF6B8B;
    /* Playful Pink */
    --primary-dark: #FF476F;
    --secondary: #4ECDC4;
    /* Fresh Mint */
    --accent: #FFE66D;
    /* Sunny Yellow */
    --purple: #A55EEA;
    /* Creative Purple */
    --blue: #45AAF2;
    /* Sky Blue */
    --green: #26DE81;
    /* Grass Green */

    --text-main: #2D3436;
    --text-light: #636E72;
    --bg-body: #F7F9FC;
    --white: #FFFFFF;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.8);
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    --blob-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    /* Fallback/Main font */
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    /* Headings font */
    color: var(--text-main);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-none-mobile {
    display: block;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 139, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 139, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Badges & Titles */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(78, 205, 196, 0.15);
    color: var(--secondary);
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

header.sticky .top-bar {
    /* Optional: Hide top bar on scroll if desired, or keep it */
    /* display: none; */
    /* Let's keep it but maybe smaller padding */
    padding: 5px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-contact i {
    margin-right: 5px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    transition: transform 0.3s;
}

.top-social a:hover {
    transform: translateY(-2px);
    color: var(--accent);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    /* Moved padding here from header */
}

header.sticky .nav-container {
    padding: 10px 20px;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
#home {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, rgba(78, 205, 196, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(255, 230, 109, 0.5);
    /* Yellow highlight */
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #444;
}

.badge-pill {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--white);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btns .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-btns .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Shapes */
.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    border-radius: var(--blob-radius);
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    border-radius: 50%;
    bottom: 10%;
    right: 25%;
    animation: float 8s ease-in-out infinite reverse;
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    width: 45px;
    height: 45px;
    background-color: rgba(165, 94, 234, 0.1);
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.stat-item span {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    z-index: 2;
    position: relative;
    border: 5px solid var(--white);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: var(--blob-radius);
    z-index: 1;
    transform: rotate(-5deg) scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Programs Section */
#programs {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.program-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.program-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.program-highlights {
    text-align: left;
    background: rgba(0, 0, 0, 0.02);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.program-highlights li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.program-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Card Variants */
.card-blue .icon-circle {
    background-color: rgba(69, 170, 242, 0.1);
    color: var(--blue);
}

.card-blue:hover .icon-circle {
    background-color: var(--blue);
    color: var(--white);
}

.card-blue {
    border-bottom: 5px solid var(--blue);
}

.card-pink .icon-circle {
    background-color: rgba(255, 107, 139, 0.1);
    color: var(--primary);
}

.card-pink:hover .icon-circle {
    background-color: var(--primary);
    color: var(--white);
}

.card-pink {
    border-bottom: 5px solid var(--primary);
}

.card-purple .icon-circle {
    background-color: rgba(165, 94, 234, 0.1);
    color: var(--purple);
}

.card-purple:hover .icon-circle {
    background-color: var(--purple);
    color: var(--white);
}

.card-purple {
    border-bottom: 5px solid var(--purple);
}

.card-green .icon-circle {
    background-color: rgba(38, 222, 129, 0.1);
    color: var(--green);
}

.card-green:hover .icon-circle {
    background-color: var(--green);
    color: var(--white);
}

.card-green {
    border-bottom: 5px solid var(--green);
}


/* Admission Form Section */
#admissions {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    scroll-margin-top: 80px;
}

#admissions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-body), var(--white));
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    background: var(--bg-body);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-heading {
    color: var(--primary-dark);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Fredoka', sans-serif;
}

.form-heading i {
    margin-right: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid transparent;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
}

.form-actions {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-wrapper {
        padding: 25px;
    }
}


/* BlossomScape Section */
#blossomscape {
    padding: 100px 0;
    background-color: var(--white);
}

.blossom-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-box {
    background: var(--bg-body);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: scale(1.05);
}

.feature-box i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.1rem;
}

/* Contact / Footer */
#contact {
    background-color: #2b2b2b;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if generic, but here we have a colored gif. Might look okay or we assume it has bg. */
    /* Since it's a gif with potentially white bg, we might need a container. */
    background: white;
    padding: 5px;
    border-radius: 5px;
    filter: none;
}

.footer-brand p {
    color: #b2bec3;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.3rem;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: #b2bec3;
}

.contact-list i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b2bec3;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #636e72;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 1s ease forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 968px) {

    .about-row,
    .blossom-row {
        flex-direction: column;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .top-contact {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 100px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .d-none-mobile {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}