@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #e8063c;
    --secondary-yellow: #ffd600;
    --accent-yellow: #fec624;
    --trust-blue: #2756a1;
    --heading-color: #000000;
    --body-text: #444444;
    --light-bg: #F0F6FA;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--heading-color);
    font-weight: 600;
}

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

section {
    padding: 60px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header & Navigation --- */
.top-header {
    background-color: #CDE9F7;
    padding: 15px 0;
}

.top-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bubbles-logo img {
    height: 60px;
    width: auto;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.icon-circle.yellow {
    width: 35px;
    height: 35px;
    background-color: #FFD400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-bubbles-outline {
    padding: 10px 25px;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red);
    font-weight: 700;
    background: #fff;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
}

.btn-bubbles-solid {
    padding: 12px 30px;
    background-color: var(--primary-red);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
}

/* Bottom Nav Pill */
.main-nav {

    padding: 4px 0px;
}

.nav-pill-container {
    background-color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.nav-logo img {
    height: 60px;
    display: block;
    width: 150px;
    object-fit: inherit;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    /* Center the links if space allows */
}

.nav-links li {
    padding: 0 12px;
}

.nav-links li a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-red);
}

.nav-links .separator {
    color: #eee;
    padding: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
}

/* --- Buttons --- */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 6, 60, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 6, 60, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-yellow);
    color: var(--heading-color);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background-color: var(--accent-yellow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* --- Hero Section --- */
.hero-bubble-girl {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    /* Adjust size as needed */
    height: auto;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-10deg) scaleX(-1);
    /* Mirror and tilt */
    animation: float-girl-hero 7s ease-in-out infinite;
}

@keyframes float-girl-hero {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg) scaleX(-1);
    }

    50% {
        transform: translateY(-15px) rotate(-8deg) scaleX(-1);
    }
}

@media (max-width: 768px) {
    .hero-bubble-girl {
        width: 120px;
        bottom: 10px;
        right: 10px;
        opacity: 0.8;
    }
}

.hero {
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #fff9e6, var(--white));
    position: relative;
    overflow: hidden;
    padding: 0px 0 20px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    z-index: 10;
}

/* Hero Image Container with Morphing Shape */
.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-slider-wrapper {
    width: 90%;
    max-width: 500px;
    aspect-ratio: 1/1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    animation: morph 8s ease-in-out infinite;
    overflow: hidden;
    /* Clips the slider to the blob shape */
    z-index: 2;
    background: #fff;
    /* Fallback */
}

.hero-slider-container {
    display: flex;
    width: 400%;
    /* 4 images * 100% */
    height: 100%;
    animation: heroSlide 12s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.hero-slide {
    width: 25%;
    /* 100% / 4 images */
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Animation */
@keyframes heroSlide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-25%);
    }

    50%,
    70% {
        transform: translateX(-50%);
    }

    75%,
    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }

    /* Snap back to start - for smooth loop, usually requires duplicate first slide, but simple reset is okay for now or use alternate */
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* --- Shapes --- */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    color: var(--secondary-yellow);
    opacity: 0.2;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    color: var(--trust-blue);
    opacity: 0.1;
}

/* --- Section Titles --- */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--secondary-yellow);
    border-radius: 10px;
}

/* --- About Simple Section --- */
.about-simple-section {
    position: relative;
    padding: 60px 0px;
    background-color: #f1fff1;
    /* Slightly more saturated Light Blue */
    overflow: hidden;
}

/* --- Principal Profile Section --- */
.principal-profile-section {
    background: #fdfaf5;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.principal-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.principal-image-container {
    flex: 1;
    position: relative;
}

.principal-img-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    background: #fff;
    border: 8px solid #fff;
}

.principal-img-wrapper img {
    width: 100%;
    height: auto;
    min-height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.principal-img-wrapper:hover img {
    transform: scale(1.08);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--primary-red);
    color: #fff;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(232, 6, 60, 0.4);
    z-index: 10;
    animation: bounce-slow 4s infinite ease-in-out;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.experience-badge .years {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Fredoka', sans-serif;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.quote-highlight {
    margin-top: 50px;
    padding: 35px;
    background: #fff;
    border-left: 8px solid var(--accent-yellow);
    border-radius: 0 30px 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-highlight::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 3rem;
    color: var(--accent-yellow);
    opacity: 0.2;
}

.quote-highlight p {
    font-style: italic;
    font-size: 1.25rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.principal-content {
    flex: 1.4;
}

.principal-header .subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.principal-header h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.principal-image-container .principal-header {
    margin-bottom: 30px;
}

.principal-name {
    font-size: 2.2rem;
    color: var(--trust-blue);
    margin-bottom: 2px;
    line-height: 1.2;
    font-family: 'Fredoka', sans-serif;
}

.principal-title {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.educational-summary {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.educational-summary h4,
.leadership-impact h4,
.awards-recognition h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 12px;
}

.educational-summary h4::after,
.leadership-impact h4::after,
.awards-recognition h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 10px;
}

.educational-summary ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.educational-summary ul li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: .8rem;
}

.educational-summary ul li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.profile-details p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.impact-item {
    display: flex;
    gap: 15px;
    align-items: center;


    border-radius: 20px;

    transition: var(--transition);

}



.impact-item i {
    color: var(--trust-blue);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.impact-item p {
    font-weight: 600;
    font-size: .8rem;
    margin: 0;
    color: #444;
    transition: color 0.3s ease;
}

.awards-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Keep it responsive but favor single row on desktop */
    align-items: flex-start;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: var(--transition);
}

.award-badge:hover {
    transform: scale(1.02);
}

.award-badge i {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 4px 8px rgba(254, 198, 36, 0.3));
}

.award-info strong {
    display: block;
    color: #333;
    font-size: .9rem;
}

.award-info span {
    font-size: 0.65rem;
    color: #777;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .principal-header h2 {
        font-size: 3rem;
    }

    .educational-summary ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .principal-profile-section {
        padding: 80px 0;
    }

    .principal-flex {
        flex-direction: column;
        gap: 40px;
    }

    .principal-image-container {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
    }

    .principal-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .principal-header h2 {
        font-size: 2.5rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* --- Leadership Team Section --- */
.leadership-team-section {
    background-color: #ffffff;
    /* Soft pastel background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.leadership-team-section .container {
    position: relative;
    z-index: 2;
}

.leadership-team-section .bubble-container {
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.team-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 25px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 3px solid var(--accent-yellow);
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.team-card .designation {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.team-meta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-pill {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.meta-pill i {
    color: var(--accent-yellow);
}

.team-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
    }
}

/* --- About Simple Section --- */
.about-simple-section {
    position: relative;
    padding: 60px 0px;
    background-color: #f1fff1;
    /* Slightly more saturated Light Blue */
    overflow: hidden;
}

.bubble-girl-decoration {
    position: absolute;
    top: 18px;
    left: 0px;
    width: 200px;
    /* Adjust size as needed */
    height: auto;
    z-index: 1;
    /* Ensure it's above/below content appropriately */
    opacity: 0.9;
    transform: rotate(10deg);
    /* Slight tilt for playful look */
    animation: float-girl 6s ease-in-out infinite;
}

@keyframes float-girl {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-10px) rotate(12deg);
    }
}

@media (max-width: 768px) {
    .bubble-girl-decoration {
        width: 120px;
        top: -10px;
        left: -10px;
        opacity: 0.8;
    }
}

/* Abstract Shape Styling */
.abs-shape {
    position: absolute;
    font-size: 3rem;
    opacity: 0.25;
    z-index: 0;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite alternate;
}

.shape-tl {
    top: 10%;
    left: 5%;
    color: var(--primary-red);
    transform: rotate(-15deg);
}

.shape-tr {
    top: 15%;
    right: 5%;
    color: var(--secondary-yellow);
    transform: rotate(20deg);
}

.shape-bl {
    bottom: 15%;
    left: 8%;
    color: var(--trust-blue);
    transform: rotate(10deg);
}

.shape-br {
    bottom: 10%;
    right: 8%;
    color: #9333EA;
    transform: rotate(-25deg);
}

@keyframes float {
    from {
        transform: translateY(0) rotate(0);
    }

    to {
        transform: translateY(-15px) rotate(10deg);
    }
}

.about-simple-section .container {
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Removed leftover styles */

.triple-dot-icon {
    display: flex;
    justify-content: center;
    gap: 8px;

}

.triple-dot-icon .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.dot.yellow {
    background-color: #FFD400;
}

.dot.blue {
    background-color: #2756A1;
}

.dot.red {
    background-color: #E8063C;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.about-title span {
    color: #E8063C;
}

.about-description {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    padding: 0 20px;
}

/* Global h2 span styling for all sections */
h2 span {
    color: #E8063C;
}

/* --- Enroll Session Section --- */
.enroll-session {
    padding: 60px 0;
    background-color: #E8F6FF;
    position: relative;
    overflow: hidden;
}

/* Floating Background Icons */
.enroll-bg-icon {
    position: absolute;
    font-size: 3.5rem;
    color: var(--trust-blue);
    opacity: 0.1;
    z-index: 0;
    animation: float-icon 8s ease-in-out infinite alternate;
}

.enroll-bg-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.enroll-bg-icon.icon-2 {
    top: 15%;
    right: 7%;
    animation-delay: 2s;
}

.enroll-bg-icon.icon-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

.enroll-bg-icon.icon-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float-icon {
    from {
        transform: translateY(0) rotate(0);
    }

    to {
        transform: translateY(-30px) rotate(15deg);
    }
}

.session-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.session-title span {
    color: #E8063C;
}

.session-subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.session-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.session-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.session-card .card-img {
    height: 260px;
    overflow: hidden;
}

.session-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.session-card:hover .card-img img {
    transform: scale(1.1);
}

.session-card .card-content {
    padding: 30px 25px 45px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}

/* Card Icons with a refined touch */
.card-icon-wrapper {
    margin-top: -50px;
    margin-bottom: 20px;
    z-index: 5;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    transition: var(--transition);
}

.session-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.session-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;

}

.session-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

/* Specific Card Colors */
.session-card.education .card-content {
    background: linear-gradient(135deg, #8BC34A, #689F38);
}

.session-card.education .card-icon {
    color: #7CB342;
}

.session-card.creative .card-content {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
}

.session-card.creative .card-icon {
    color: #00BCD4;
}

.session-card.facility .card-content {
    background: linear-gradient(135deg, #6A1B9A, #4A148C);
}

.session-card.facility .card-icon {
    color: #6A1B9A;
}

.session-card.global .card-content {
    background: linear-gradient(135deg, #FF7043, #F4511E);
}

.session-card.global .card-icon {
    color: #F4511E;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .session-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .session-grid {
        grid-template-columns: 1fr;
    }

    .session-title {
        font-size: 2.2rem;
    }
}

/* --- Impactful Gallery --- */
.campus-moments {
    padding: 60px 0;
    background-color: #fff;
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.moment-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.moment-item.hidden {
    display: none;
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.moment-item:hover img {
    transform: scale(1.1);
}

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 86, 161, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.moment-item:hover .moment-overlay {
    opacity: 1;
}

.moment-overlay i {
    color: #fff;
    font-size: 2rem;
}

#load-more-gallery {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .gallery-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid-main {
        grid-template-columns: 1fr;
    }
}

/* --- Admission Form Section --- */
.admission-section {
    padding: 60px 0;
    background-color: #F0F6FA;
    position: relative;
    overflow: hidden;
}

.admission-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

/* Left Side: Tilted Images */
.admission-images {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tilted-img {
    position: absolute;
    width: 320px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.tilted-img img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

.img-1 {
    transform: rotate(-10deg);
    top: 50px;
    left: 20px;
    z-index: 2;
}

.img-2 {
    transform: rotate(5deg);
    bottom: 50px;
    right: 20px;
    z-index: 1;
}

.tilted-img:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}

/* Right Side: Form */
.admission-form-container {
    flex: 1.2;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.07);
    /* Ultra-soft premium shadow */
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.admission-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

/* Premium Top Accent Bar */
.admission-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #2756A1, #E8063C, #FDBE34);
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;

    color: #000;
}

/* Removed unused styles */

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

.admission-form .form-group {
    flex: 1;
    margin-bottom: 15px;
    /* Reduced margin */
    text-align: left;
}

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

.admission-form label span {
    color: #E8063C;
    font-weight: 400;
    font-size: 0.8rem;
}

.admission-form input,
.admission-form textarea {
    width: 100%;
    padding: 10px 18px;
    /* Reduced height */
    border: 1.5px solid #e1e8ef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #f9fbfe;
    /* Subtle light background */
    transition: var(--transition);
}

.admission-form input::placeholder,
.admission-form textarea::placeholder {
    color: #aab8c2;
    font-size: 0.9rem;
}

.admission-form input:focus,
.admission-form textarea:focus {
    border-color: #2756A1;
    outline: none;
    box-shadow: 0 0 10px rgba(39, 86, 161, 0.1);
}

.captcha-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
}

.captcha-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: #333;
}

.apply-btn {
    background-color: #E8063C;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
    margin-top: 10px;
}

.apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 6, 60, 0.3);
    background-color: #c40533;
}

@media (max-width: 992px) {
    .admission-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .admission-images {
        display: none;
    }

    .admission-form-container {
        width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {

    .admission-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

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

    .apply-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- Infrastructure --- */
#infrastructure {
    padding: 60px 0;
    background-color: #f1fff1;
}


.info-card i {
    font-size: 2.5rem;
    color: var(--trust-blue);
    margin-bottom: 20px;
}

/* --- Programs --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card.bees {
    background-color: #FFF9E6;
    border-bottom: 8px solid var(--secondary-yellow);
}

.program-card.flamingos {
    background-color: #FEF0F2;
    border-bottom: 8px solid var(--primary-red);
}

.program-card.dolphins {
    background-color: #EFF6FF;
    border-bottom: 8px solid var(--trust-blue);
}

.program-card i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.program-card .age {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Activities --- */
#activities {
    background-color: #f1fff1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.activity-item {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.activity-item:hover {
    transform: scale(1.02);
}

.activity-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.activity-item.pink .icon {
    background: #FEF0F2;
    color: #E11D48;
}

.activity-item.yellow .icon {
    background: #FFF9E6;
    color: #D97706;
}

.activity-item.blue .icon {
    background: #EFF6FF;
    color: #2563EB;
}

.activity-item.purple .icon {
    background: #FAF5FF;
    color: #9333EA;
}

.activity-item.green .icon {
    background: #F0FDF4;
    color: #16A34A;
}

/* --- Environment & Faculty --- */
.bg-blue {
    background-color: var(--trust-blue);
    color: var(--white);
}

.bg-blue h2,
.bg-blue p,
.bg-blue h3 {
    color: var(--white);
}

.env-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.testimonial-header .title-area {
    text-align: left;
}

.testimonial-header .subtitle {
    color: #E8063C;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.testimonial-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: #E8063C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: #c40533;
    transform: scale(1.1);
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px;
    /* Space for shadows and bubble pointer */
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    /* Exactly 2 cards per view */
    background-color: #2756A1;
    /* Deep Blue */
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    color: #fff;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Speech bubble pointer */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #2756A1 transparent transparent transparent;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
    opacity: 0.95;
    text-align: left;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-circle {
    width: 45px;
    height: 45px;
    background-color: #E8063C;
    /* Red Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.parent-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
}

.stars {
    color: #FDBE34;
    /* Yellow Stars */
    font-size: 0.85rem;
    text-align: left;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-header h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Testimonials / Why Choose Us --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.reason-item i {
    font-size: 2rem;
    color: var(--primary-red);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), #c10532);
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    padding: 80px 40px;
    margin: 0 20px 100px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-contact {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact span {
    font-weight: 600;
}

.cta-contact i {
    margin-right: 10px;
}

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.call-btn {
    background: #007bff;
    /* Standard Blue call color */
}

.call-btn:hover {
    background: #0056b3;
}

/* Flip the phone icon */
.call-btn i {
    transform: scaleX(-1);
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Brand Color */
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Optional Ripple/Wave animation */
.float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.float-btn:hover::before {
    width: 200%;
    height: 200%;
}

/* Responsive Position */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* --- Modern Centered Footer --- */
.modern-centered-footer {
    background: #f1fff1;
    color: #333;
    padding: 20px 0;
}

.footer-logo-centered {
    display: flex;
    justify-content: center;
}

.footer-logo-centered img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-social-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social-circles a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-circles a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom-text {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    color: #555;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero {
        padding-top: 0px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid,
    .programs-grid,
    .env-grid,
    .faculty-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .blob-slider-wrapper {
        width: 75%;
        margin-top: 40px;
    }

    .hero-slide img {
        width: 100%;
        margin-top: 0;
    }

    .cta-section {
        padding: 50px 30px;
        margin-bottom: 60px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .footer-nav {
        gap: 15px;
    }

    .footer-nav li {
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px 0;
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        z-index: 999;
    }

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

    .nav-links li {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links .separator {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        /* Show mobile button */
    }

    .nav-pill-container {
        padding: 10px 25px;
        border-radius: 30px;
        box-shadow: none;
    }

    .nav-logo img {
        height: 50px;
        width: 130px;
        object-fit: contain;
    }

    .cta-contact {
        flex-direction: column;
        gap: 20px;
    }

    .cta-section {
        border-radius: 30px;
        margin: 0 15px 60px;
    }

    section {
        padding: 60px 0 !important;
    }
}

/* --- Vector Abstract Decorative Elements --- */
.vector-abstract {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    animation: float-abs 6s ease-in-out infinite;
    filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.05));
    /* Sticker feel */
}

.vector-abstract i {
    font-size: 3rem;
}

.vector-abstract.red {
    color: #E8063C;
}

.vector-abstract.blue {
    color: #2756A1;
}

.vector-abstract.yellow {
    color: #FDBE34;
}

.vector-abstract.purple {
    color: #9333EA;
}

.va-1 {
    top: 10%;
    left: 5%;
}

.va-2 {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
}

.va-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.va-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3.5s;
}

@keyframes float-abs {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Ensure sections are relative for positioning */
#programs,
.campus-moments,
.testimonials-section,
.why-parents-love-us {
    position: relative;
    overflow: hidden;
}

/* Subtle Grid/Dot Pattern for the whole layout */
body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    animation: zoomIn 0.3s;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* --- Admission Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2001;
    /* Higher than lightbox */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s;
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #E8063C;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
}