:root {
    /* Color Palette - Premium Soft Pastels */
    --primary: #95c8d8;
    /* Soft Pastel Blue */
    --primary-light: #bce2ee;
    --secondary: #ffb7b2;
    /* Soft Pastel Pink */
    --secondary-light: #ffd9d6;

    --bg-color: #fdf2f8;
    /* Soft Pastel Pink/Lavender */
    --bg-alt: #eef6fc;
    /* Soft Pastel Sky Blue */
    --text-main: #4a4a4a;
    --text-muted: #7a7a7a;

    --accent-pink: #ffeef0;
    --accent-blue: #e8f4f8;
    --accent-yellow: #fff8e7;
    --accent-green: #e9f5e9;

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* Effects */
    --shadow-sm: 0 8px 24px rgba(149, 200, 216, 0.1);
    --shadow-md: 0 15px 35px rgba(149, 200, 216, 0.15);
    --shadow-lg: 0 25px 50px rgba(149, 200, 216, 0.25);
    --radius-sm: 20px;
    --radius-md: 30px;
    --radius-lg: 50px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html.custom-cursor-enabled {
    cursor: none;
}

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

/* Background Soft Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.6;
    pointer-events: none;
}

body::before {
    top: -10vw;
    left: -10vw;
    background: var(--accent-pink);
}

body::after {
    bottom: -10vw;
    right: -10vw;
    background: var(--accent-blue);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower.hover-active {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 182, 193, 0.2);
    border-color: transparent;
}

/* Floating Icons - Glassmorphism */
.floating-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.icon-sun {
    top: 15%;
    left: 10%;
    font-size: 3rem;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.icon-cloud-1 {
    top: 20%;
    right: 15%;
    font-size: 2.5rem;
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.icon-cloud-2 {
    top: 60%;
    left: 5%;
    font-size: 2.5rem;
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

.icon-rainbow {
    top: 40%;
    right: 10%;
    font-size: 3.5rem;
    width: 110px;
    height: 110px;
    animation-delay: 0.5s;
}

@keyframes float {

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

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

/* Canvas Background */
#raindrop-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(149, 200, 216, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(149, 200, 216, 0.6);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 138, 155, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(230, 138, 155, 0.4);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
    color: var(--primary);
}

.logo-text p {
    font-size: 0.7rem;
    margin: 0;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    /* Offset for nav */
    background: radial-gradient(circle at top right, var(--accent-pink) 0%, transparent 40%),
        radial-gradient(circle at bottom left, var(--accent-blue) 0%, transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-pink);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--secondary-light);
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
    transform: rotate(-2deg);
}

.hero-tagline {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-shape {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background-color: var(--primary-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.blob-shape.fallback-blob {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

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

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

/* About Section */
.about {
    background-color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.image-frame.fallback-shefali {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
    font-family: var(--font-heading);
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

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

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 18px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}

.feature-item .icon {
    font-size: 1.5rem;
}

/* Support Section */
.support-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.support-card {
    flex: 1 1 250px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-card:hover .card-icon {
    transform: scale(1.2) rotate(-10deg);
}

.bg-pink {
    background-color: var(--accent-pink);
}

.bg-blue {
    background-color: var(--accent-blue);
}

.bg-yellow {
    background-color: var(--accent-yellow);
}

.bg-green {
    background-color: var(--accent-green);
}

.support-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.support-card p {
    color: var(--text-muted);
}

/* Age Groups Section */
.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.age-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.age-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.age-card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}

.age-card-header h3 {
    margin-top: 15px;
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.age-icon {
    font-size: 3rem;
    line-height: 1;
}

.age-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 30px;
    margin: 0;
    flex-grow: 1;
}

.age-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
}

.age-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.age-list .list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
}

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

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

.fallback-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow));
}

.fallback-gallery .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.fallback-gallery p {
    font-weight: 600;
    color: var(--primary);
}

/* Testimonials Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--accent-pink);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.reviewer .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Approach Section - Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
    border-radius: 4px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px var(--bg-color);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 60px);
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.2) rotate(10deg);
    background-color: var(--secondary);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

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

.contact-info {
    margin-bottom: 40px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-yellow);
}

.contact-link:hover {
    color: white;
    transform: scale(1.05);
}

.cta-btn {
    background-color: var(--secondary);
    color: white;
}

.cta-btn:hover {
    background-color: white;
    color: var(--secondary);
}

.cta-decoration .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cta-decoration .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-decoration .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

.cta-decoration .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
}

/* Footer */
.footer {
    background-color: #2b5461;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo .logo-text p {
    color: var(--secondary-light);
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin: 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-image-wrapper {
        order: -1;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-number {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 90px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:hover .timeline-number {
        transform: translateX(-50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.6rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    html {
        cursor: auto;
    }

    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Review Form and Dynamic Rating Styles */
.user-reviews-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed var(--primary-light);
}

.review-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.review-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.review-form label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 15px;
    border: 2px solid var(--primary-light);
    background-color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    border-color: var(--secondary);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 183, 178, 0.3);
}

.rating-form-group {
    align-items: flex-start;
}

.star-rating-selector {
    display: flex;
    gap: 10px;
    font-size: 2.8rem;
    line-height: 1;
    margin-top: 5px;
}

.star-icon {
    cursor: pointer;
    color: #e2e8f0;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
    user-select: none;
}

.star-icon:hover {
    transform: scale(1.25);
}

.star-icon.hovered {
    color: #ffd166;
    text-shadow: 0 0 15px rgba(255, 209, 102, 0.6);
}

.star-icon.selected {
    color: var(--secondary);
    text-shadow: 0 0 15px rgba(255, 183, 178, 0.8);
}

.rating-label {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

/* Static Star Display in review cards */
.review-stars {
    display: flex;
    gap: 6px;
    color: #ffd166;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 209, 102, 0.3);
}

.review-stars .star-empty {
    color: #e2e8f0;
    text-shadow: none;
}

.dynamic-reviews-section {
    width: 100%;
}

.dynamic-reviews-section .reviews-grid {
    margin-top: 30px;
}

/* ==========================================================================
   Raindrop Interactive Hub
   ========================================================================== */
.interactive-hub {
    position: relative;
    background: radial-gradient(circle at bottom right, var(--accent-blue) 0%, transparent 50%),
                radial-gradient(circle at top left, var(--accent-pink) 0%, transparent 50%);
}

.hub-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.hub-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(149, 200, 216, 0.2);
    padding-bottom: 20px;
}

.hub-tab-btn {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.hub-tab-btn:hover {
    color: var(--primary);
    background-color: rgba(149, 200, 216, 0.1);
}

.hub-tab-btn.active {
    color: white;
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(149, 200, 216, 0.3);
}

.hub-pane {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.hub-pane.active {
    display: block;
}

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

/* --- Kids Emotion Corner --- */
.kids-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
}

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

.kids-left-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}

.kids-right-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* The Raindrop Buddy Droplet */
.buddy-container {
    height: 140px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.raindrop-buddy {
    width: 90px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50% 50% 50% 50% / 80% 80% 45% 45%;
    position: relative;
    box-shadow: 0 10px 25px rgba(149, 200, 216, 0.35);
    animation: buddy-float 5s ease-in-out infinite;
    transition: background 1s ease, box-shadow 1s ease, transform 0.3s ease;
}

.raindrop-buddy:hover {
    transform: scale(1.1) rotate(5deg);
}

.raindrop-buddy.happy {
    background: linear-gradient(135deg, #ffd166, #fff0ad);
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.5);
}

.raindrop-buddy.worried {
    background: linear-gradient(135deg, #83c5be, #c7f9cc);
    box-shadow: 0 10px 25px rgba(131, 197, 190, 0.5);
}

.raindrop-buddy.sad {
    background: linear-gradient(135deg, #a2d2ff, #bde0fe);
    box-shadow: 0 10px 25px rgba(162, 210, 255, 0.5);
}

.raindrop-buddy.angry {
    background: linear-gradient(135deg, #ffb7b2, #ffccd5);
    box-shadow: 0 10px 25px rgba(255, 183, 178, 0.5);
}

.raindrop-buddy.calm {
    background: linear-gradient(135deg, #b5e2fa, #c5dedd);
    box-shadow: 0 10px 25px rgba(181, 226, 250, 0.5);
}

.buddy-eye {
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #3e4c59;
    border-radius: 50%;
    top: 60px;
    transition: height 0.15s ease, border-radius 0.15s ease, top 0.15s ease;
}

.buddy-eye.left { left: 28px; }
.buddy-eye.right { right: 28px; }

.buddy-eye.wink {
    height: 2px;
    border-radius: 0;
    top: 64px;
}

.buddy-mouth {
    position: absolute;
    width: 16px;
    height: 8px;
    border: 3px solid #3e4c59;
    border-top: none;
    border-radius: 0 0 12px 12px;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    transition: height 0.2s ease, border-radius 0.2s ease;
}

.buddy-mouth.surprise {
    height: 12px;
    width: 12px;
    border: 3px solid #3e4c59;
    border-radius: 50%;
}

.buddy-mouth.sad {
    border: 3px solid #3e4c59;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    bottom: 24px;
    height: 8px;
}

.buddy-blush {
    position: absolute;
    width: 10px;
    height: 6px;
    background-color: rgba(255, 183, 178, 0.8);
    border-radius: 50%;
    top: 68px;
}

.buddy-blush.left { left: 18px; }
.buddy-blush.right { right: 18px; }

@keyframes buddy-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.buddy-message-bubble {
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 15px 20px;
    position: relative;
    max-width: 250px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    margin-top: 15px;
    display: inline-block;
}

.buddy-message-bubble::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.buddy-message-bubble::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent var(--primary-light) transparent;
    z-index: -1;
    margin-bottom: 1px;
}

/* Kids Emotion Selector */
.emotion-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.mood-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 12px 22px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mood-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mood-btn.active {
    transform: scale(1.05);
    color: white;
}

.mood-btn.mood-happy.active { background-color: #ffd166; border-color: #ffd166; box-shadow: 0 5px 15px rgba(255, 209, 102, 0.4); color: #4a4a4a; }
.mood-btn.mood-worried.active { background-color: #83c5be; border-color: #83c5be; box-shadow: 0 5px 15px rgba(131, 197, 190, 0.4); }
.mood-btn.mood-sad.active { background-color: #a2d2ff; border-color: #a2d2ff; box-shadow: 0 5px 15px rgba(162, 210, 255, 0.4); }
.mood-btn.mood-angry.active { background-color: #ffb7b2; border-color: #ffb7b2; box-shadow: 0 5px 15px rgba(255, 183, 178, 0.4); }
.mood-btn.mood-calm.active { background-color: #b5e2fa; border-color: #b5e2fa; box-shadow: 0 5px 15px rgba(181, 226, 250, 0.4); color: #4a4a4a; }

/* Interactive Breathing Box */
.breathing-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.breathing-instructions {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
    min-height: 35px;
}

.breathing-circle-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    position: relative;
}

.breathing-circle-outer {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    animation: breathing-rotate 20s linear infinite;
    opacity: 0.5;
}

.breathing-circle-inner {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(149, 200, 216, 0.4);
    z-index: 2;
    transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1), background 2s ease, box-shadow 2s ease;
}

.breathing-circle-inner.expand {
    transform: scale(1.6);
    background: radial-gradient(circle, var(--secondary-light), var(--secondary));
    box-shadow: 0 5px 30px rgba(255, 183, 178, 0.6);
}

.breathing-circle-inner.contract {
    transform: scale(1.0);
    background: radial-gradient(circle, var(--primary-light), var(--primary));
    box-shadow: 0 5px 20px rgba(149, 200, 216, 0.4);
}

@keyframes breathing-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.breathing-control-btn {
    margin-top: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.breathing-control-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.breathing-control-btn.active {
    background-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 183, 178, 0.4);
}

/* Drawing Canvas Section */
.sketchpad-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.sketchpad-header {
    text-align: center;
    margin-bottom: 15px;
}

.sketchpad-header h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.sketchpad-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.canvas-container {
    width: 100%;
    position: relative;
    background: white;
    border-radius: 20px;
    border: 3px solid var(--primary-light);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sketchpad-canvas {
    display: block;
    width: 100%;
    height: 250px;
    background: white;
    cursor: crosshair;
    touch-action: none;
}

.sketchpad-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
}

.palette-group {
    display: flex;
    gap: 8px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.color-swatch.active {
    transform: scale(1.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-color: #333;
}

.brush-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.brush-slider {
    width: 80px;
    accent-color: var(--primary);
}

.canvas-actions {
    display: flex;
    gap: 10px;
}

.canvas-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.canvas-btn-clear {
    background-color: rgba(255, 183, 178, 0.2);
    color: var(--secondary);
}

.canvas-btn-clear:hover {
    background-color: var(--secondary);
    color: white;
}

.canvas-btn-save {
    background-color: rgba(149, 200, 216, 0.2);
    color: var(--primary);
}

.canvas-btn-save:hover {
    background-color: var(--primary);
    color: white;
}


/* --- Parent Advisor Chatbot --- */
.chatbot-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 30px;
}

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

.chatbot-sidebar {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.chatbot-sidebar h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.chatbot-sidebar p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.sidebar-questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-suggest-btn {
    background: white;
    border: 1px solid var(--primary-light);
    border-radius: 15px;
    padding: 12px 15px;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(149, 200, 216, 0.05);
    color: var(--text-main);
}

.chatbot-suggest-btn:hover {
    background-color: var(--accent-blue);
    border-color: var(--primary);
    transform: translateX(5px);
}

.api-settings-toggle {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}

.api-config-panel {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--primary-light);
    animation: fadeInTab 0.3s ease;
}

.api-config-panel.active {
    display: flex;
}

.api-config-panel label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.api-config-panel input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--primary-light);
    font-size: 0.85rem;
    outline: none;
}

.api-config-panel input:focus {
    border-color: var(--secondary);
}

.api-config-panel button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.api-config-panel button:hover {
    background-color: var(--primary-light);
}

/* Chat Main Window */
.chat-window-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.chat-history {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Chat History Scrollbar Styling */
.chat-history::-webkit-scrollbar {
    width: 6px;
}
.chat-history::-webkit-scrollbar-track {
    background: transparent;
}
.chat-history::-webkit-scrollbar-thumb {
    background-color: rgba(149, 200, 216, 0.3);
    border-radius: 10px;
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    animation: messagePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes messagePop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-bubble.bot {
    align-self: flex-start;
    background-color: white;
    color: var(--text-main);
    border: 1px solid rgba(149, 200, 216, 0.2);
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.chat-bubble.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(149, 200, 216, 0.2);
}

.chat-bubble.typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 15px 20px;
}

.chat-bubble.typing span {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.chat-bubble.typing span:nth-child(1) { animation-delay: -0.32s; }
.chat-bubble.typing span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-input-container {
    display: flex;
    padding: 15px;
    background-color: white;
    border-top: 1px solid rgba(149, 200, 216, 0.2);
    gap: 10px;
    align-items: center;
}

.chat-input-field {
    flex-grow: 1;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.chat-input-field:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 8px rgba(255, 183, 178, 0.3);
}

.chat-send-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Additional Mobile Responsiveness
   ========================================================================== */

@media (max-width: 992px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .therapy-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .footer-brand, .footer-links, .footer-contact {
        width: 100%;
        align-items: center;
    }
    .interactive-hub-container {
        flex-direction: column;
    }
    .kids-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .floating-icon {
        transform: scale(0.6);
    }
    .therapy-cards {
        grid-template-columns: 1fr;
    }
    /* Convert long vertical stacks into horizontal swipeable carousels */
    .reviews-grid,
    .gallery-grid,
    .support-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar,
    .gallery-grid::-webkit-scrollbar,
    .support-grid::-webkit-scrollbar {
        display: none;
    }
    .review-card,
    .gallery-item,
    .support-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
    }
    .gallery-item img {
        max-height: 40vh;
        width: 100%;
        object-fit: cover;
    }
    .timeline::before {
        left: 30px;
    }
    .timeline-number {
        left: 30px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 90px;
    }
    .timeline-content {
        width: 100%;
    }
    .about-image .image-frame {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Interactive Hub specific for mobile */
    .hub-card {
        padding: 25px 15px;
    }
    .kids-left-panel, .kids-right-panel {
        padding: 15px;
        gap: 15px;
    }
    .buddy-message-bubble {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    .hub-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .hub-tab-btn {
        margin-bottom: 10px;
        text-align: center;
    }

    .raindrop-buddy {
        width: 70px;
        height: 90px;
    }
    .buddy-eye {
        width: 7px;
        height: 7px;
        top: 45px;
    }
    .buddy-eye.left { left: 20px; }
    .buddy-eye.right { right: 20px; }
    .buddy-mouth {
        width: 12px;
        height: 6px;
        bottom: 20px;
    }
    .buddy-blush {
        width: 8px;
        height: 4px;
        top: 50px;
    }
    .buddy-blush.left { left: 12px; }
    .buddy-blush.right { right: 12px; }
    
    .emotion-selector {
        flex-direction: column;
        align-items: stretch;
    }
    .mood-btn {
        width: 100%;
        justify-content: center;
    }
    .sketchpad-toolbar {
        flex-direction: column;
    }
    .palette-group {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    .sketchpad-canvas {
        height: 200px;
    }
    .chatbot-panel {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    .floating-icon {
        display: none;
    }
    .navbar .btn {
        display: none; /* Hide Contact button to save space */
    }
    .logo img {
        height: 60px !important;
        width: 60px !important;
    }
    .logo-text h1 {
        font-size: 1.5rem;
    }
    .logo-text p {
        font-size: 0.7rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .chatbot-suggestions {
        flex-direction: column;
    }
}

/* Premium Highlight Badge */
.premium-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 238, 240, 0.9), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(255, 183, 178, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 183, 178, 0.2);
    margin-top: 40px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: float-gentle 4s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 5;
}

.premium-highlight-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 183, 178, 0.3);
    border-color: rgba(255, 183, 178, 0.8);
}

.ph-icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.ph-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.ph-age {
    font-weight: 700;
    color: #e6739f; /* Darker pastel pink for pop */
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.ph-divider {
    color: #ffd166;
    font-weight: bold;
}

.ph-text {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.05rem;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .premium-highlight-badge {
        padding: 10px 16px;
    }
    .ph-content {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }
    .ph-divider {
        display: none;
    }
    .ph-age {
        font-size: 1rem;
    }
    .ph-text {
        font-size: 0.9rem;
    }
}

/* Feedback Image Cards Hover Effect */
.feedback-img-card:hover {
    transform: translateY(-8px) !important;
}
.feedback-img-card img:hover {
    transform: scale(1.03) !important;
}

/* Feedbacks Row Base Styles (Laptop view kept as is) */
.feedbacks-row {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.feedbacks-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.feedback-img-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feedback-img-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease;
}

/* Mobile View Pages - One image per swipe page */
@media (max-width: 768px) {
    .feedbacks-row {
        gap: 15px;
        padding: 0 10px 20px 10px;
    }
    .feedback-img-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .feedback-img-card img {
        max-height: 65vh;
        object-fit: contain;
    }
}

/* ==========================================================================
   App-Style Mobile Navigation
   ========================================================================== */

/* Hide by default on desktop */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Show bottom nav on mobile */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 8px 10px;
        justify-content: space-around;
        align-items: center;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-muted);
        padding: 5px 10px;
        border-radius: 12px;
        transition: all 0.3s ease;
        flex: 1;
    }

    .mobile-nav-item .icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
        filter: grayscale(100%) opacity(0.7);
        transition: all 0.3s ease;
    }

    .mobile-nav-item .text {
        font-size: 0.7rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-nav-item.active {
        color: var(--primary);
    }

    .mobile-nav-item.active .icon {
        filter: grayscale(0%) opacity(1);
        transform: translateY(-2px) scale(1.1);
    }

    .mobile-nav-item.active .text {
        color: var(--primary);
    }

    /* Add padding to body to prevent content from hiding behind nav */
    body {
        padding-bottom: 70px;
    }

    /* Page Visibility Logic */
    section[data-page] {
        display: none !important;
    }
    
    /* Default visible page before JS kicks in */
    body:not(.app-initialized) section[data-page="home"] {
        display: block !important;
    }
    
    /* Visible page after JS kicks in */
    body.app-initialized section.active-mobile-page {
        display: block !important;
        animation: fadeIn 0.4s ease forwards;
    }

    /* Hide the floating chatbot toggle to prevent cluttering bottom area */
    .chatbot-toggle {
        bottom: 80px; /* Move it up slightly above the nav bar */
        right: 15px;
        transform: scale(0.85);
    }

    /* Enhance background pastel orbs for mobile */
    body::before, body::after {
        width: 150vw;
        height: 150vw;
        filter: blur(80px);
        opacity: 0.7;
    }
}

/* Workshops Section */
.workshop-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #7db9cb 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.workshop-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.workshop-content {
    flex: 1;
    color: white;
    z-index: 1;
}

.workshop-content p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.7;
}

.workshop-graphics {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.glass-card .icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.glass-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    .workshop-banner {
        flex-direction: column;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .workshop-graphics {
        grid-template-columns: 1fr;
    }
}