    :root {
        --primary: #3b82f6;
        --primary-dark: #1d4ed8;
        --accent: #fbbf24;
        --bg-soft: #f9fafb;
        --bg-testimonial: #d1d1d131;
        --text-main: #111827;
        --text-muted: #6b7280;
        --white: #ffffff;
        --radius-lg: 16px;
        --radius-xl: 24px;
        --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
    }

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

    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
            sans-serif;
        color: var(--text-main);
        background: var(--white);
        line-height: 1.5;
        scroll-behavior: smooth;
    }

    html {
        scroll-behavior: smooth;
    }

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

    a {
        text-decoration: none;
        color: inherit;
    }

    .page {
        max-width: 1120px;
        margin: 0 auto;
        padding: 40px 20px 60px;
    }


    /* HERO */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 80px 5%;
        margin-bottom: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(175, 216, 29, 0.85) 0%, rgba(59, 130, 246, 0.75) 50%, rgba(251, 191, 36, 0.3) 100%);
        z-index: 1;
    }

    /* Dark base overlay for better text visibility */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1;
    }

    /* Manikonda Page - Light Blue-Purple Gradient with Darker Overlay for Text Visibility */
    .manikonda-page .hero::before {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.75) 0%, rgba(59, 130, 246, 0.70) 40%, rgba(139, 92, 246, 0.65) 70%, rgba(251, 191, 36, 0.40) 100%);
    }

    /* Bachupally Page - Warm Coral-Peach Gradient with Darker Overlay for Text Visibility */
    .bachupally-page .hero::before {
        background: linear-gradient(135deg, rgba(251, 113, 133, 0.75) 0%, rgba(253, 164, 175, 0.70) 40%, rgba(254, 202, 202, 0.65) 70%, rgba(251, 191, 36, 0.40) 100%);
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        animation: slideInLeft 0.8s ease-out;
    }

    .hero-left {
        position: relative;
        z-index: 2;
    }

    .hero-right {
        position: relative;
        z-index: 2;
        animation: slideInRight 0.8s ease-out 0.2s both;
    }

    .hero-form {
        background: rgb(255 255 255 / 50%);
        ;
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 100%;
    }

    .hero-form h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 6px;
    }

    .hero-form p {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 16px;
    }

    .hero-left h1 {
        font-size: clamp(2.2rem, 5vw, 2.7rem);
        line-height: 1.1;
        margin-bottom: 20px;
        color: var(--white);
        font-weight: 800;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-left h1 span {
        color: var(--accent);
        display: block;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 24px;
        max-width: 580px;
        line-height: 1.6;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }

    .badge {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        color: var(--white);
        border-radius: 999px;
        padding: 6px 12px;
        font-size: 0.8rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .badge:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: scale(1.05);
    }

    .badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--accent);
    }

    .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-bottom: 16px;
        animation: slideInLeft 0.8s ease-out 0.3s both;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--white);
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        font-size: 0.95rem;
        box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
        transition: transform 0.1s ease, box-shadow 0.1s ease,
            filter 0.1s ease;
    }

    .btn-primary:hover {
        filter: brightness(1.03);
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(37, 99, 235, 0.45);
    }

    .btn-ghost {
        border-radius: 999px;
        border: 2px solid rgba(255, 255, 255, 0.9);
        padding: 10px 18px;
        font-size: 0.9rem;
        color: var(--white);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    .btn-ghost:hover {
        border-color: var(--white);
        color: var(--white);
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }

    .hero-note {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero-right {
        position: relative;
    }

    .hero-card {
        background: var(--white);
        border-radius: 24px;
        padding: 16px 16px 12px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
        position: relative;
        overflow: hidden;
    }

    .hero-card-tag {
        position: absolute;
        top: 12px;
        right: 16px;
        background: var(--accent);
        color: #7c2d12;
        padding: 4px 10px;
        font-size: 0.75rem;
        border-radius: 999px;
        font-weight: 600;
    }

    .hero-illus {
        height: 180px;
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 14px;
        background: linear-gradient(120deg, #93c5fd, #f9a8d4, #facc15);
        position: relative;
    }

    @media (max-width: 840px) {
        .hero-illus {
            height: 160px;
        }
    }

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


    .hero-card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-top: 4px;
    }

    .meta-item {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .meta-item strong {
        display: block;
        color: var(--text-main);
        font-size: 0.9rem;
    }

    /* SECTION WRAPPER / HEADINGS */
    section {
        margin-bottom: 80px;
        background: transparent;
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

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

    @keyframes float {

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

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

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

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

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

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

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

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

    .section-kicker {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--primary-dark);
        font-weight: 600;
        margin-bottom: 2px;
    }

    .section-sub {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    /* FEATURES / WHY US */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .feature-card {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        box-shadow: 0 9px 20px rgba(15, 23, 42, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(59, 130, 246, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 12px;
        flex-shrink: 0;
    }

    .feature-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 12px;
        transition: transform 0.4s ease, filter 0.3s ease;
        cursor: pointer;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
    }

    .feature-card:hover .feature-image {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

    .feature-image:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

    .feature-title {
        font-weight: 600;
        margin-bottom: 4px;
        font-size: 0.98rem;
    }

    .feature-body {
        font-size: 0.88rem;
        color: var(--text-muted);
    }

    /* PROGRAM / DAY SCHEDULE */
    .two-col {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 32px;
        align-items: start;
    }

    .pill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .pill {
        background: rgba(15, 23, 42, 0.04);
        border-radius: 999px;
        padding: 4px 10px;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .schedule {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 20px;
        box-shadow: 0 9px 20px rgba(15, 23, 42, 0.08);
        font-size: 0.86rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .schedule:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    }

    .schedule-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 9px 0;
        border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
    }

    .schedule-row:last-child {
        border-bottom: none;
    }

    .schedule-time {
        font-weight: 600;
        white-space: nowrap;
    }

    .time-color-mani {
        color: rgb(255, 0, 0);
    }

    .time-color-bachu {
        color: rgb(0, 0, 255);
    }

    .schedule-activity {
        color: var(--text-muted);
    }

    /* VIDEO SECTION */
    .video-section {
        margin-bottom: 80px;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 32px auto 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
        background: #000;
        aspect-ratio: 16 / 9;
    }

    .school-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        border: none;
        outline: none;
        background: #000;
    }

    /* Fullscreen video styling - ensures proper display in portrait or landscape */
    .school-video:-webkit-full-screen {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        object-fit: contain !important;
        background: #000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 999999 !important;
    }

    .school-video:-moz-full-screen {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        object-fit: contain !important;
        background: #000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 999999 !important;
    }

    .school-video:-ms-fullscreen {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        object-fit: contain !important;
        background: #000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 999999 !important;
    }

    .school-video:fullscreen {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        object-fit: contain !important;
        background: #000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 999999 !important;
    }

    /* GALLERY SECTION */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 32px;
    }

    .gallery-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .gallery-item img {
        cursor: pointer;
    }

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

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    }

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

    .gallery-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

    /* GALLERY LIGHTBOX / MODAL */
    .gallery-lightbox {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .gallery-lightbox.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .lightbox-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 80px;
    }

    .lightbox-image-wrapper {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-image {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-main);
        transition: all 0.3s ease;
        z-index: 10001;
        font-weight: 300;
    }

    .lightbox-close:hover {
        background: var(--white);
        transform: scale(1.1);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-main);
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .lightbox-nav:hover {
        background: var(--white);
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav.prev {
        left: 30px;
    }

    .lightbox-nav.next {
        right: 30px;
    }

    .lightbox-counter {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        z-index: 10001;
    }

    @media (max-width: 768px) {
        .lightbox-content {
            padding: 40px 20px;
        }

        .lightbox-close {
            top: 10px;
            right: 15px;
            width: 36px;
            height: 36px;
            font-size: 20px;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .lightbox-nav.prev {
            left: 10px;
        }

        .lightbox-nav.next {
            right: 10px;
        }

        .lightbox-counter {
            bottom: 15px;
            font-size: 0.8rem;
            padding: 6px 12px;
        }
    }

    /* TESTIMONIALS */
    .testimonials-carousel-container {
        position: relative;
        margin-top: 32px;
        width: 100%;
        overflow: hidden;
    }

    .testimonials-carousel {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .testimonials-carousel::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .testimonial-card {
        background: var(--bg-testimonial);
        border-radius: var(--radius-lg);
        padding: 20px;
        /* box-shadow: 0 0px 20px rgba(15, 23, 42, 0.08); */
        position: relative;
        transition: all 0.3s ease;
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        scroll-snap-align: start;
        display: flex;
        flex-direction: row;
        gap: 16px;
        height: auto;
        box-sizing: border-box;
        align-items: flex-start;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        /* box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12); */
    }

    .testimonial-left {
        flex: 0 0 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        transition: transform 0.3s ease;
        margin-bottom: 8px;
    }

    .testimonial-card:hover .profile-icon {
        transform: scale(1.1);
    }

    .testimonial-name {
        font-size: 0.75rem;
        color: var(--text-muted);
        font-weight: 600;
        margin: 0;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .testimonial-right {
        flex: 0 0 80%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .quote-mark {
        position: absolute;
        font-size: 2.5rem;
        opacity: 0.08;
        top: -8px;
        right: 8px;
        color: var(--primary);
        line-height: 1;
    }

    .testimonial-content {
        display: flex;
        flex-direction: column;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        color: var(--text-main);
        margin: 0;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        overflow: hidden;
    }

    .testimonial-quote.truncated {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .show-more-btn {
        background: none;
        border: none;
        color: var(--primary);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        padding: 8px 0;
        margin-top: 8px;
        text-align: left;
        align-self: flex-start;
        transition: color 0.3s ease;
    }

    .show-more-btn:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    .testimonial-meta {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 600;
        text-align: center;
        margin-top: auto;
    }

    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }

    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid rgba(59, 130, 246, 0.2);
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 300;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    }

    .testimonial-nav-btn:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .testimonial-nav-btn:active {
        transform: scale(0.95);
    }

    .testimonials-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(59, 130, 246, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .testimonial-dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 5px;
    }

    .testimonial-dot:hover {
        background: var(--primary);
        transform: scale(1.2);
    }

    /* SUMMER CAMP SECTION */
    .summer-camp-content {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(251, 191, 36, 0.05));
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
        margin-top: 24px;
    }

    .summer-camp-intro {
        margin-bottom: 32px;
    }

    .summer-camp-activities {
        margin-top: 32px;
    }

    .activities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 24px;
    }

    .activity-item {
        background: var(--white);
        border-radius: 16px;
        padding: 24px 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .activity-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .activity-item:hover::before {
        transform: scaleX(1);
    }

    .activity-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
        border-color: var(--primary);
    }

    .activity-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
        display: block;
        transition: transform 0.3s ease;
    }

    .activity-item:hover .activity-icon {
        transform: scale(1.15) rotate(5deg);
    }

    .activity-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-main);
        line-height: 1.4;
    }

    /* Manikonda Page - Summer Camp Gradient */
    .manikonda-page .summer-camp-content {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    }

    /* Bachupally Page - Summer Camp Gradient */
    .bachupally-page .summer-camp-content {
        background: linear-gradient(135deg, rgba(251, 113, 133, 0.05), rgba(253, 164, 175, 0.05));
    }

    /* FAQ */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 16px;
    }

    .faq-item {
        background: var(--white);
        border-radius: 12px;
        padding: 16px;
        border: 1px solid rgba(148, 163, 184, 0.2);
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
        transform: translateY(-2px);
        border-color: var(--primary);
    }

    .faq-q {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-main);
    }

    .faq-a {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* LOCATIONS SECTION */
    .locations-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        margin-top: 32px;
    }

    .location-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: 0 9px 20px rgba(15, 23, 42, 0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        gap: 32px;
        align-items: start;
    }

    .location-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .location-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
    }

    .location-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .location-name::before {
        content: '📍';
        font-size: 1.2rem;
    }

    .location-address {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .location-phone {
        font-size: 0.9rem;
        color: var(--text-main);
        margin-bottom: 20px;
        padding: 8px 0;
    }

    .location-info {
        display: flex;
        flex-direction: column;
    }

    .location-map {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
        height: 100%;
        min-height: 400px;
        position: sticky;
        top: 100px;
    }

    .location-map iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
        border: none;
        display: block;
    }

    .location-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 8px;
        background: rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .location-link:hover {
        background: rgba(59, 130, 246, 0.2);
        transform: translateX(4px);
    }

    .location-link::after {
        content: '→';
        transition: transform 0.3s ease;
    }

    .location-link:hover::after {
        transform: translateX(4px);
    }

    /* CONTACT / FORM */
    .contact-section {
        background: linear-gradient(120deg, #dbeafe, #fef9c3);
        border-radius: 24px;
        padding: 40px 32px;
        box-shadow: var(--shadow-soft);
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 32px;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
    }

    /* Manikonda Page - Contact Section Gradient */
    .manikonda-page .contact-section {
        background: linear-gradient(120deg, #eff6ff, #f3e8ff, #e0e7ff);
    }

    /* Bachupally Page - Contact Section Gradient */
    .bachupally-page .contact-section {
        background: linear-gradient(120deg, #fef2f2, #fce7f3, #fef3c7);
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 6s ease-in-out infinite;
    }

    /* Manikonda Page - Contact Section Radial Gradient */
    .manikonda-page .contact-section::before {
        background: radial-gradient(circle, rgba(147, 197, 253, 0.20) 0%, rgba(196, 181, 253, 0.12) 50%, transparent 70%);
    }

    /* Bachupally Page - Contact Section Radial Gradient */
    .bachupally-page .contact-section::before {
        background: radial-gradient(circle, rgba(251, 113, 133, 0.20) 0%, rgba(253, 164, 175, 0.12) 50%, transparent 70%);
    }

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

    .contact-image-wrapper {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
        margin-bottom: 8px;
    }

    .contact-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .contact-image-wrapper:hover img {
        transform: scale(1.02);
    }

    .contact-tagline {
        font-size: 1.1rem;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .contact-text {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 12px;
    }

    .contact-meta {
        font-size: 0.85rem;
        color: #1e293b;
        margin-top: 10px;
    }

    .contact-meta strong {
        color: var(--primary-dark);
    }

    form {
        background: rgb(255 255 255 / 50%);
        ;
        padding: 16px;
        border-radius: 18px;
        box-shadow: 0 9px 20px rgba(15, 23, 42, 0.12);
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .form-row {
        margin-bottom: 8px;
    }

    .form-row.full-width {
        grid-column: 1 / -1;
    }

    label {
        display: block;
        font-size: 0.7rem;
        margin-bottom: 2px;
        color: var(--text-muted);
        font-weight: 500;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 5px 8px;
        border-radius: 8px;
        border: 1px solid rgba(148, 163, 184, 0.8);
        font-size: 0.75rem;
        font-family: inherit;
        outline: none;
        background: rgb(255 255 255 / 10%);
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
    }

    textarea {
        resize: vertical;
        min-height: 50px;
    }

    .form-footnote {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-top: 6px;
    }

    /* FOOTER */
    footer {
        font-size: 0.78rem;
        color: var(--text-muted);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        border-top: 1px solid rgba(148, 163, 184, 0.35);
        padding-top: 12px;
    }

    footer span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* Social Media Icons */
    .social-media-icons {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* RESPONSIVE */
    @media (max-width: 840px) {

        .two-col,
        .contact-section {
            grid-template-columns: minmax(0, 1fr);
        }

        .hero {
            min-height: 100vh;
            padding: 60px 5%;
            margin-bottom: 0;
        }

        .hero-content {
            grid-template-columns: minmax(0, 1fr);
            gap: 40px;
        }

        .hero-form {
            padding: 20px;
        }

        .form-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .features-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .video-container {
            margin-top: 24px;
            border-radius: 12px;
        }

        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .activities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .testimonial-card {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            flex-direction: column;
            gap: 12px;
        }

        .testimonial-left {
            flex: 0 0 auto;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            gap: 12px;
            width: 100%;
        }

        .testimonial-right {
            flex: 1;
            width: 100%;
        }

        .testimonial-name {
            font-size: 0.8rem;
            text-align: left;
        }

        .profile-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            margin-bottom: 0;
        }

        .faq-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 12px;
        }

        .locations-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 20px;
        }

        .contact-left {
            gap: 16px;
        }

        .contact-image-wrapper {
            margin-bottom: 0;
        }

        .contact-section {
            padding: 32px 20px;
        }

        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
        }

        .section-sub {
            margin-top: 8px;
        }

        .pill-list {
            gap: 6px;
        }

        .pill {
            font-size: 0.75rem;
            padding: 4px 8px;
        }

        section {
            margin-bottom: 60px;
        }
    }

    @media (max-width: 640px) {
        .page {
            padding: 24px 12px 40px;
        }

        .hero {
            min-height: 100vh;
            padding: 80px 5% 40px;
            margin-bottom: 0;
        }

        .hero-content {
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
        }

        .hero-form {
            padding: 18px;
        }

        .hero-form h3 {
            font-size: 1.1rem;
        }

        .form-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .hero-left h1 {
            font-size: clamp(2rem, 6vw, 2.8rem);
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .hero-badges {
            margin-bottom: 20px;
            gap: 6px;
            flex-wrap: wrap;
        }

        .badge {
            font-size: 0.75rem;
            padding: 5px 10px;
        }

        .hero-ctas {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
            margin-bottom: 16px;
        }

        .btn-primary,
        .btn-ghost {
            text-align: center;
            width: 100%;
            justify-content: center;
            display: inline-flex;
            padding: 12px 20px;
        }

        .hero-note {
            font-size: 0.8rem;
        }

        .features-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 16px;
        }

        .feature-card {
            padding: 16px;
        }

        .feature-image {
            height: 180px;
            margin-bottom: 10px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .video-container {
            margin-top: 20px;
            border-radius: 12px;
        }

        .gallery-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 12px;
        }

        .gallery-item {
            aspect-ratio: 4/3;
        }

        .two-col {
            grid-template-columns: minmax(0, 1fr);
            gap: 20px;
        }

        .schedule {
            padding: 16px;
        }

        .schedule-row {
            flex-direction: column;
            gap: 4px;
            padding: 8px 0;
        }

        .schedule-time {
            font-size: 0.85rem;
        }

        .testimonial-card {
            padding: 18px;
        }

        .profile-icon {
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
        }

        .testimonial-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }

        .summer-camp-content {
            padding: 20px 16px;
        }

        .summer-camp-intro p {
            font-size: 0.9rem;
        }

        .activities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .activity-item {
            padding: 18px 12px;
        }

        .activity-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .activity-name {
            font-size: 0.85rem;
        }

        .faq-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 12px;
        }

        .faq-item {
            padding: 14px;
        }

        .contact-section {
            padding: 24px 16px;
            border-radius: 20px;
            gap: 24px;
        }

        .contact-tagline {
            font-size: 1rem;
        }

        .contact-text {
            font-size: 0.85rem;
        }

        .contact-meta {
            font-size: 0.8rem;
        }

        .contact-image-wrapper {
            border-radius: 12px;
        }

        .locations-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 20px;
        }

        .location-card {
            padding: 20px;
            grid-template-columns: minmax(0, 1fr);
            gap: 24px;
        }

        .location-map {
            min-height: 300px;
            position: relative;
            top: 0;
        }

        .location-map iframe {
            min-height: 300px;
            height: 300px;
        }

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

        .section-kicker {
            font-size: 0.75rem;
        }

        .section-sub {
            font-size: 0.85rem;
        }

        form {
            padding: 16px;
        }

        .form-grid {
            grid-template-columns: minmax(0, 1fr);
            gap: 8px;
        }

        .form-row {
            margin-bottom: 10px;
        }

        label {
            font-size: 0.8rem;
        }

        input,
        select,
        textarea {
            padding: 10px 12px;
            font-size: 0.9rem;
        }

        footer {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }

        .social-media-icons {
            justify-content: center;
        }
    }


    /* ============================
   TOP NAVIGATION / LOGO BAR
============================ */
    .topnav {
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .topnav.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
    }

    .nav-container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

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

    .nav-logo img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        display: block;
    }

    .nav-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1d4ed8;
        /* Blue to match theme */
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.9rem;
        color: #374151;
        transition: 0.2s;
    }

    .nav-links a:hover {
        color: #1d4ed8;
    }

    .nav-cta {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white !important;
        padding: 8px 18px;
        border-radius: 999px;
        font-weight: 600;
    }

    /* MOBILE NAVIGATION */
    @media (max-width: 720px) {
        .nav-links {
            display: none;
            /* Hide links for simple version */
        }

        .nav-title {
            font-size: 0.95rem;
        }

        .nav-logo img {
            width: 48px;
            height: 48px;
        }

        .nav-container {
            padding: 8px 12px;
        }
    }

    /* ============================
   CALL FLOATING BUTTON
============================ */
    .call-float {
        position: fixed;
        bottom: 24px;
        left: 24px;
        width: 60px;
        height: 60px;
        background: #3b82f6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
        z-index: 9999;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        text-decoration: none;
    }

    .call-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
        background: #2563eb;
    }

    .call-float:active {
        transform: scale(0.95);
    }

    .call-float svg {
        width: 32px;
        height: 32px;
    }

    /* Pulse animation on hover */
    .call-float::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #3b82f6;
        opacity: 0;
        animation: pulse-ring-call 2s ease-out infinite;
    }

    @keyframes pulse-ring-call {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* Mobile responsive */
    @media (max-width: 640px) {
        .call-float {
            width: 56px;
            height: 56px;
            bottom: 20px;
            left: 20px;
        }

        .call-float svg {
            width: 28px;
            height: 28px;
        }
    }

    /* ============================
   WHATSAPP FLOATING BUTTON
============================ */
    .whatsapp-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
        z-index: 9999;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
        background: #20BA5A;
    }

    .whatsapp-float:active {
        transform: scale(0.95);
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    /* Pulse animation on hover */
    .whatsapp-float::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25D366;
        opacity: 0;
        animation: pulse-ring 2s ease-out infinite;
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* Mobile responsive */
    @media (max-width: 640px) {
        .whatsapp-float {
            width: 56px;
            height: 56px;
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
        }
    }