    @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Noto+Sans+Gujarati:wght@100..900&family=Nunito:wght@400;600;700&display=swap');

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --accent: #233f80;
        --accent-rgb: 35, 63, 128;
        --sub-accent: #3385d1;
        --sub-accent-rgb: 51, 133, 209;
        --color-1: #b22222;
        --color-2: #5ccde8;
        --color-2-rgb: 92, 205, 232;
        --color-3: #bebe2b;
        --color-3-rgb: 190, 190, 43;
    }

    html,
    body {
        width: 100%;
        height: 100%;
        overflow: hidden;
        font-family: 'Nunito', sans-serif;
    }

    .page-wrap {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        background: #f5f7fa;
    }

    /* ── Animated background layers ── */
    .bg-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, #f5f7fa 0%, #e7edf3 45%, #deeaf5 100%);
        z-index: 0;
    }

    /* Geometric grid pattern */
    .bg-grid {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(51, 133, 209, 0.12) 0%, rgba(51, 133, 209, 0.04) 35%, transparent 70%);
    }

    /* Floating circles */
    .circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.06;
        z-index: 2;
    }

    .c1 {
        width: 300px;
        height: 300px;
        background: rgba(var(--sub-accent-rgb), 0.6);
        top: -80px;
        right: -80px;
        animation: floatA 8s ease-in-out infinite;
    }

    .c2 {
        width: 180px;
        height: 180px;
        background: rgba(var(--color-2-rgb), 0.6);
        bottom: 80px;
        left: -50px;
        animation: floatB 10s ease-in-out infinite;
    }

    .c3 {
        width: 120px;
        height: 120px;
        background: rgba(var(--sub-accent-rgb), 0.6);
        top: 50%;
        left: 20px;
        animation: floatA 12s ease-in-out infinite reverse;
    }

    .c4 {
        width: 90px;
        height: 90px;
        background: rgba(var(--color-3-rgb), 0.6);
        top: 30%;
        right: 15px;
        animation: floatB 9s ease-in-out infinite;
    }

    @keyframes floatA {

        0%,
        100% {
            transform: translateY(0px) scale(1);
        }

        50% {
            transform: translateY(-20px) scale(1.05);
        }
    }

    @keyframes floatB {

        0%,
        100% {
            transform: translateY(0px) scale(1);
        }

        50% {
            transform: translateY(15px) scale(0.97);
        }
    }

    /* Animated stars/dots */
    .stars {
        position: absolute;
        inset: 0;
        z-index: 2;
        overflow: hidden;
    }

    .star {
        position: absolute;
        width: 3px;
        height: 3px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0;
        animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
    }

    @keyframes twinkle {

        0%,
        100% {
            opacity: 0;
            transform: scale(0.5);
        }

        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    /* Top arch decoration */
    .arch-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        opacity: 0.15;
    }

    /* Bottom wave */
    .wave-svg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        opacity: 0.12;
    }

    /* ── Content ── */
    .content {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 420px;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 100%;
    }

    /* Header container */
    .header-container {
        width: 100%;
        background: transparent;
        padding: 20px 24px;
        margin: 0;
        position: relative;
        z-index: 5;
    }

    /* Logo area */
    .logo-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 0;
        animation: fadeDown 0.8s ease both;
    }

    .logo-ring {
        width: 25vw;
        height: 25vw;
        max-width: 120px;
        max-height: 120px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(35, 63, 128, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
        position: relative;
        flex-shrink: 0;
        animation: slideInLeft 0.6s ease both;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .logo-ring img {
        width: 24vw;
        max-width: 116px;
        height: auto;
    }

    .school-name {
        font-family: 'Noto Sans Gujarati', sans-serif;
        font-size: 18px;
        font-weight: 900;
        color: var(--color-1);
        text-align: left;
        letter-spacing: -0.3px;
        line-height: 1.25;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        animation: slideInRight 0.6s ease both;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .divider {
        display: none;
    }

    /* Contact info */
    .info-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        animation: fadeUp 0.8s 0.3s ease both;
    }

    .info-card {
        background: rgba(51, 133, 209, 0.08);
        border: 1px solid rgba(51, 133, 209, 0.2);
        border-radius: 14px;
        padding: 12px 18px;
        width: 100%;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .info-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .info-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--color-1);
    }

    .info-text {
        font-size: 13px;
        color: var(--accent);
        font-weight: 600;
        line-height: 1.5;
        text-decoration: none;
    }

    a.info-text:hover {
        color: var(--sub-accent);
    }

    #address-el {
        font-family: 'Noto Sans Gujarati', sans-serif;
    }

    .phone-row {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }

    .phone-link {
        font-size: 13px;
        color: var(--accent);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }

    .phone-link:hover {
        color: var(--sub-accent);
    }

    .phone-sep {
        color: rgba(35, 63, 128, 0.25);
        font-size: 13px;
    }

    /* Quick link buttons */
    .buttons-section {
        width: 100%;
        padding-bottom: 28px;
        animation: fadeUp 0.8s 0.5s ease both;
    }

    .btn-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 14px 10px;
        border-radius: 14px;
        font-family: 'Nunito', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.2px;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        overflow: hidden;
    }

    .quick-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(35, 63, 128, 0);
        transition: background 0.15s ease;
        border-radius: inherit;
    }

    .quick-btn:active {
        transform: scale(0.95);
    }

    .quick-btn:active::after {
        background: rgba(35, 63, 128, 0.08);
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--color-1), var(--color-3));
        color: #ffffff;
        box-shadow: 0 4px 16px rgba(178, 34, 34, 0.2);
    }

    .btn-primary:hover {
        box-shadow: 0 6px 22px rgba(178, 34, 34, 0.3);
    }

    .btn-outline {
        background: rgba(51, 133, 209, 0.12);
        border: 1.5px solid var(--sub-accent);
        color: var(--sub-accent);
        box-shadow: 0 2px 8px rgba(51, 133, 209, 0.15);
    }

    .btn-outline:hover {
        background: rgba(51, 133, 209, 0.18);
    }

    .btn-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Animations */
    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    body {
        box-sizing: border-box;
    }