@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {
    --primary-bg-gradient-transparent: linear-gradient(135deg, #fefefee0 0%, #ffffffe3 100%);
    --secondry-bg: #e95490;
    --msy-primary: #6C3FD3;
    --msy-primary-dark: #5028B0;
    --msy-primary-light: #A78BFA;
    --msy-secondary: #F59E0B;
    --msy-accent: #EC4899;
    --msy-bg-dark: #0F0B1E;
    --msy-bg-section: #F8F7FC;
    --msy-text: #1E1B2E;
    --msy-text-muted: #6B7280;
    --msy-surface: #FFFFFF;
    --msy-border: rgba(108, 63, 211, 0.12);
    --msy-gradient: linear-gradient(135deg, #6C3FD3 0%, #A78BFA 50%, #EC4899 100%);
    --msy-gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --msy-shadow-sm: 0 1px 3px rgba(108, 63, 211, 0.08);
    --msy-shadow-md: 0 4px 20px rgba(108, 63, 211, 0.12);
    --msy-shadow-lg: 0 12px 40px rgb(211 63 170 / 18%);
    --msy-shadow-xl: 0 25px 60px rgba(108, 63, 211, 0.22);
    --msy-radius: 16px;
    --msy-radius-sm: 10px;
    --msy-radius-lg: 24px;
    --msy-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --msy-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --msy-font-hindi: 'Noto Sans Devanagari', sans-serif;
}

body {
    background: #fcbdc5 url(../../assets/images/homepage_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    z-index: -1;
}

.msy-action-card__body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--msy-text);
    margin-bottom: 0;
}
/* ============================================================
   HERO SECTION
   ============================================================ */
.msy-hero {
    position: relative;
    background: var(--primary-bg-gradient-transparent);
    overflow: hidden;
    min-height: auto;
    margin-top: 28vh;
    -webkit-backdrop-filter: blur(0.3px);
    backdrop-filter: blur(0.3px);
    padding: 20px;
}

    .msy-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgb(255 253 255 / 25%) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .msy-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }


.msy-hero__badge .material-symbols-outlined {
    font-size: 16px;
    color: var(--msy-secondary);
}

.msy-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 0;
    text-shadow: 0px 0px 30px #ffd5e6;
    animation: msy-fadeInUp 0.8s 0.1s ease both;
    text-align: center;
    max-width: 78dvw;
}

.msy-hero__subtitle {
    font-size: 1.25rem;
    color: var(--msy-secondary);
    font-weight: 600;
    margin-bottom: 10px;
    animation: msy-fadeInUp 0.8s 0.2s ease both;
}


.msy-stats__info p {
    font-size: 0.82rem;
    color: var(--msy-text-muted);
    margin: 0;
    white-space: nowrap;
}

/* ============================================================
   QUICK ACTIONS
   ============================================================ */
.msy-actions {
    padding: 70px 0;
    background: var(--msy-bg-section);
}

.msy-action-card {
    position: relative;
    flex-wrap: wrap;
    background: var(--msy-surface);
    border-radius: var(--msy-radius-lg);
    padding: 36px 32px;
    border: 1px solid rgb(223 108 154 / 48%);
    transition: var(--msy-transition);
    overflow: hidden;
}

    .msy-action-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--msy-shadow-lg);
        border-color: rgba(108, 63, 211, 0.2);
    }

.msy-action-card__glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 63, 211, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--msy-transition);
    pointer-events: none;
}

.msy-action-card:hover .msy-action-card__glow {
    transform: scale(1.5);
    opacity: 1;
}

.msy-action-card__icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--msy-radius);
    background: var(--msy-gradient);
    transition: var(--msy-transition);
}

.msy-action-card--alt .msy-action-card__icon-wrap {
    background: var(--msy-gradient-warm);
}

.msy-action-card__icon-wrap .material-symbols-outlined {
    font-size: 30px;
    color: #FFFFFF;
}

@media all and (max-width:768px) {
    body {
        /*background-position-x: -460px;
        background-size: unset;*/
    }
}

.hindi {
    font-family: var(--msy-font-hindi);
}

.question-hindi {
    font-family: var(--msy-font-hindi);
}
