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

:root {
    --primary-color: #e6995a;
    --primary-light: #f4ab6a;
    --secondary-color: #6ca1a6;
    --accent-color: #ebf3f5;
    --text-main: #2e4356;
    --text-light: #7e8f9e;
    --bg-main: #ffffff;
    --bg-light: #f3eee6;
    --font-family: 'Nunito', sans-serif;
    --font-heading: 'Fredoka', sans-serif;
    --transition: all 0.3s ease;
    --error-color: #EF4444;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-light);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-heading); font-weight: 800; color: var(--text-main); }
h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; margin-bottom: 40px; text-align: center; }
.section-title { text-align: center; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(230, 153, 90, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 20px rgba(230, 153, 90, 0.4);
    background: var(--primary-light);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(108, 161, 166, 0.3);
}

.secondary-btn:hover {
    background-color: #5b8c91;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 20px rgba(108, 161, 166, 0.4);
}

.large-btn {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* Notice Board */
.notice-board-section {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
}
.notice-wrapper {
    display: flex;
    align-items: center;
}
.notice-label {
    font-weight: 800;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 20px;
    white-space: nowrap;
}
.notice-content {
    flex-grow: 1;
    font-weight: 600;
}

/* Header */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 5px 0;
    transition: var(--transition);
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }
.logo-icon { color: var(--secondary-color); background: var(--primary-color); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: var(--transition); }
.nav-links a:hover { color: var(--primary-light); }

/* Hero */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: flex-start;
    padding-top: 5vh;
    background-image: url('./images/hero_preschool_1778418644967.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.booba-badge { display: inline-block; background: var(--bg-light); color: var(--secondary-color); padding: 8px 25px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-heading); letter-spacing: 2px; }
.hero-title { font-size: 5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 700; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.4rem; margin-bottom: 35px; font-weight: 600; color: var(--text-main); }
.hero-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

/* SVG Wave Divider */
.custom-shape-divider-bottom-1715935000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom-1715935000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.custom-shape-divider-bottom-1715935000 .shape-fill {
    fill: var(--bg-light);
}

/* Animations */
.animate-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cartoon-float {
    animation: cartoonFloat 4s ease-in-out infinite;
}

@keyframes cartoonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sections */
.section { padding: 100px 0; }
#programs { 
    background: var(--bg-light);
}
.bg-light { background-color: var(--bg-light); }

/* Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.program-card {
    border: none;
    padding: 50px 30px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
/* Card 1: Play Home */
.program-card:nth-child(1) {
    background: #ffffff;
    border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px;
}
/* Card 2: Nursery */
.program-card:nth-child(2) {
    background: #fdf6ec;
    border-radius: 100px 40px 100px 40px / 40px 100px 40px 100px;
}
/* Card 3: LKG */
.program-card:nth-child(3) {
    background: #fdfaf0; /* Light cream */
    border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px;
}
/* Card 4: UKG */
.program-card:nth-child(4) {
    background: #eff5f7;
    border-radius: 100px 40px 100px 40px / 40px 100px 40px 100px;
}
.program-card::after {
    content: "Click to Apply →";
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.program-card:hover::after { opacity: 1; transform: translateY(0); }
.program-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 15px; }
.program-card h3 { font-size: 2rem; margin-bottom: 5px; color: var(--text-main); }
.age-group { color: var(--text-light); font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }
.program-features { list-style: none; margin-bottom: 20px; }
.program-features li { margin-bottom: 8px; font-weight: 600; color: var(--text-main); display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.program-features i { color: var(--primary-color); font-size: 1.2rem; }
.card-dino { position: absolute; bottom: -20px; right: -20px; width: 140px; opacity: 0.9; z-index: 1; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1)); }
.program-card:hover .card-dino { transform: translateY(-10px) rotate(-5deg) scale(1.1); }
.fee-info { font-weight: 800; font-size: 1.2rem; color: var(--primary-color); position: relative; z-index: 2; }

/* Gallery Section (Premium) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px;
    overflow: hidden;
    height: 250px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 161, 166, 0.2);
    z-index: 10;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(108, 161, 166, 0.9));
    padding: 20px;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Educators */
.educator-container { display: flex; align-items: center; gap: 50px; background: white; border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.5s ease; }
.educator-container:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(108, 161, 166, 0.15); }
.educator-img-wrapper { flex: 1; }
.educator-img { width: 100%; border-radius: 100px 40px 100px 40px / 40px 100px 40px 100px; }
.educator-info { flex: 1; }
.designation { color: var(--primary-color); font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
.bio { font-style: italic; color: var(--text-light); margin-bottom: 20px; font-size: 1.1rem; }
.qualifications { list-style: none; }
.qualifications li { margin-bottom: 10px; font-weight: 600; }
.qualifications i { color: var(--secondary-color); margin-right: 10px; }

/* Premium Section */
.premium-section {
    background: var(--secondary-color);
    padding: 100px 0;
}
.text-white { color: white; }
.premium-actions { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show { display: flex; opacity: 1; }
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 20px 40px rgba(185, 28, 28, 0.2);
}
.modal.show .modal-content { transform: scale(1) translateY(0); }
.close-btn { position: absolute; top: 20px; right: 25px; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }

/* Forms & Errors */
.error-text {
    color: var(--error-color);
    background: #FEF2F2;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 4px solid var(--error-color);
}
.invalid-input {
    border-color: var(--error-color) !important;
    background-color: #FEF2F2;
}
.interactive-form { margin-top: 15px; }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }
label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
input, select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}
input:focus, select:focus { outline: none; border-color: var(--primary-light); }
.submit-btn { width: 100%; justify-content: center; padding: 15px; margin-top: 10px; }

/* PTM & Fee specifics */
.time-slots { display: flex; gap: 10px; }
.slot { padding: 8px 12px; border: 2px solid #E2E8F0; border-radius: 8px; cursor: pointer; font-weight: 600; transition: var(--transition); }
.slot.selected { border-color: var(--primary-color); background: var(--bg-light); color: var(--primary-color); }
.fee-summary { background: var(--bg-light); padding: 15px; border-radius: 10px; margin: 20px 0; text-align: center; }
.fee-summary h3 { margin-bottom: 5px; }
.payment-methods, .payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-options { flex-direction: row; }
.pay-method { display: flex; align-items: center; gap: 10px; padding: 12px; border: 2px solid #E2E8F0; border-radius: 10px; cursor: pointer; flex: 1; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .educator-container { flex-direction: column; }
    .form-row { flex-direction: column; }
    .payment-options { flex-direction: column; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    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: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    right: 30px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.program-card:hover::after { opacity: 1; transform: translateY(0); }
.program-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 15px; }
.program-card h3 { font-size: 2rem; margin-bottom: 5px; color: #000000; }
.age-group { color: #000000; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }
.program-features { list-style: none; margin-bottom: 20px; }
.program-features li { margin-bottom: 8px; font-weight: 600; color: #000000; display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.program-features i { color: var(--primary-color); font-size: 1.2rem; }
.card-dino { position: absolute; bottom: -20px; right: -20px; width: 140px; opacity: 0.9; z-index: 1; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1)); }
.program-card:hover .card-dino { transform: translateY(-10px) rotate(-5deg) scale(1.1); }
.fee-info { font-weight: 800; font-size: 1.2rem; color: var(--primary-color); position: relative; z-index: 2; }

/* Gallery Slider (Continuous Left-to-Right) */
.gallery-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
}
.gallery-track {
    display: inline-block;
    animation: scrollGallery 40s linear infinite;
}
.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}
@keyframes scrollGallery {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    display: inline-block;
    width: 300px;
    margin: 0 10px;
    position: relative;
    border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px;
    overflow: hidden;
    height: 250px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 161, 166, 0.2);
    z-index: 10;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(108, 161, 166, 0.9));
    padding: 20px;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Educators */
.educator-container { display: flex; align-items: center; gap: 50px; background: white; border-radius: 40px 100px 40px 100px / 100px 40px 100px 40px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.5s ease; }
.educator-container:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(108, 161, 166, 0.15); }
.educator-img-wrapper { flex: 1; }
.educator-img { width: 100%; border-radius: 100px 40px 100px 40px / 40px 100px 40px 100px; }
.educator-info { flex: 1; }
.designation { color: var(--primary-color); font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
.bio { font-style: italic; color: var(--text-light); margin-bottom: 20px; font-size: 1.1rem; }
.qualifications { list-style: none; }
.qualifications li { margin-bottom: 10px; font-weight: 600; }
.qualifications i { color: var(--secondary-color); margin-right: 10px; }

/* Premium Section */
.premium-section {
    background: var(--secondary-color);
    padding: 100px 0;
}
.text-white { color: white; }
.premium-actions { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show { display: flex; opacity: 1; }
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 20px 40px rgba(185, 28, 28, 0.2);
}
.modal.show .modal-content { transform: scale(1) translateY(0); }
.close-btn { position: absolute; top: 20px; right: 25px; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }

/* Lightbox Specific Styles */
#lightboxModal {
    background: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
    transition: transform 0.3s ease;
}
#lightboxModal.show .lightbox-content {
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Forms & Errors */
.error-text {
    color: var(--error-color);
    background: #FEF2F2;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 4px solid var(--error-color);
}
.invalid-input {
    border-color: var(--error-color) !important;
    background-color: #FEF2F2;
}
.interactive-form { margin-top: 15px; }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }
label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
input, select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}
input:focus, select:focus { outline: none; border-color: var(--primary-light); }
.submit-btn { width: 100%; justify-content: center; padding: 15px; margin-top: 10px; }

/* PTM & Fee specifics */
.time-slots { display: flex; gap: 10px; }
.slot { padding: 8px 12px; border: 2px solid #E2E8F0; border-radius: 8px; cursor: pointer; font-weight: 600; transition: var(--transition); }
.slot.selected { border-color: var(--primary-color); background: var(--bg-light); color: var(--primary-color); }
.fee-summary { background: var(--bg-light); padding: 15px; border-radius: 10px; margin: 20px 0; text-align: center; }
.fee-summary h3 { margin-bottom: 5px; }
.payment-methods, .payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-options { flex-direction: row; }
.pay-method { display: flex; align-items: center; gap: 10px; padding: 12px; border: 2px solid #E2E8F0; border-radius: 10px; cursor: pointer; flex: 1; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .educator-container { flex-direction: column; }
    .form-row { flex-direction: column; }
    .payment-options { flex-direction: column; }
    .mobile-small { 
        width: 90px !important; 
        opacity: 0.3 !important; 
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    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: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}
.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    animation: none;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Newsletter Section (Booba Style) */
.newsletter-section { padding: 80px 0; background: var(--bg-light); overflow: hidden; }
.newsletter-container {
    background: #fdf6ec; 
    border-radius: 80px 150px 100px 200px / 120px 80px 200px 100px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.newsletter-form {
    background: #ffffff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 30px auto;
}
.newsletter-input {
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    flex: 1;
    border-radius: 50px;
    background: transparent;
}
.newsletter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
}
.social-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.social-follow span {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.3rem;
}
h1, h2, h3, h4, .booba-badge {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-main);
}

.brand-aarohana {
    font-family: 'Chewy', cursive;
    letter-spacing: -3px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 400;
}
.brand-aarohana span {
    display: inline-block;
    position: relative;
    -webkit-text-stroke: 1px rgba(0,0,0,0.15);
    text-shadow: 
        0px 3px 0px rgba(0,0,0,0.2), 
        -1px -1px 0px rgba(255,255,255,0.4);
    transition: filter 0.3s ease;
}
.brand-aarohana span:hover {
    filter: brightness(1.2);
}

.social-follow a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-follow a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Floating Cartoons */
.floating-cartoon {
    position: absolute;
    z-index: 10;
    mix-blend-mode: multiply;
    opacity: 0.9;
}
.tom-cartoon {
    top: -60px;
    left: -40px;
    width: 150px;
    animation: floatAnim 6s ease-in-out infinite;
}
.jerry-cartoon {
    bottom: -20px;
    right: -20px;
    width: 120px;
    animation: floatAnimFlipped 5s ease-in-out infinite reverse;
}
@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatAnimFlipped {
    0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
    50% { transform: scaleX(-1) translateY(-20px) rotate(-5deg); }
}

/* About Layout Responsive */
.about-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-text {
    flex: 1.9;
}
.about-image-container {
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        text-align: center;
    }
    .about-text h2.section-title {
        text-align: center !important;
    }
    .hero-section {
        background-attachment: scroll !important; /* Fixes iOS Safari bug where background disappears */
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
}
@media (max-width: 768px) {
    .header-actions .primary-btn {
        display: none; /* Hide Admissions button on mobile to prevent congestion */
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--bg-light);
        border-radius: 50%;
        color: var(--primary-color) !important;
        font-size: 1.5rem !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .header-container {
        position: relative;
    }
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 15px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex !important;
    }
}
