:root {
    --saffron: #f97316;
    --saffron-dark: #c2410c;
    --gold: #facc15;
    --kumkum: #9f1239;
    --sindoor: #c81e4a;
    --maroon: #5b1020;
    --maroon-deep: #24070f;
    --green: #166534;
    --green-dark: #063b22;
    --cream: #fff7ed;
    --cream-light: #fffaf0;
    --brown: #6b3f18;
    --text: #2b1908;
    --muted: #7a5c3a;
    --border: rgba(139, 92, 24, 0.18);
    --shadow: 0 28px 80px rgba(91, 16, 32, 0.16);
    --soft-shadow: 0 18px 55px rgba(107, 63, 24, 0.12);

    --gm-orange: var(--saffron);
    --gm-deep-orange: var(--saffron-dark);
    --gm-amber: var(--gold);
    --gm-green: var(--green);
    --gm-deep-green: var(--green-dark);
    --gm-cream: var(--cream);
    --gm-soft: var(--cream-light);
    --gm-dark: var(--text);
    --gm-muted: var(--muted);
    --gm-border: var(--border);
    --gm-white-glass: rgba(255, 255, 255, 0.76);
    --gm-shadow: var(--soft-shadow);
    --gm-shadow-heavy: var(--shadow);
    --gm-radius-xl: 32px;
    --gm-radius-lg: 24px;
    --gm-transition: 280ms cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gm-web-body {
    margin: 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 3%, rgba(250, 204, 21, 0.20), transparent 30%),
        radial-gradient(circle at 94% 8%, rgba(200, 30, 74, 0.10), transparent 31%),
        linear-gradient(180deg, #fffaf0 0%, #fff7ed 45%, #ffffff 100%);
    overflow-x: hidden;
}

body.gm-web-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(249, 115, 22, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, .045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 78%);
}

body.gm-web-body a {
    text-decoration: none;
}

body.gm-web-body img,
body.gm-web-body video {
    max-width: 100%;
}

.deva {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.gm-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 4px;
    width: 100%;
    background: transparent;
}

.gm-scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--kumkum), var(--saffron), var(--gold));
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.55);
}

.gm-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #fff7ed 0%, #ffffff 72%);
    transition: opacity .55s ease, visibility .55s ease;
}

.gm-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.gm-loader-orbit {
    position: relative;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
}

.gm-loader-orbit span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 3px solid rgba(249, 115, 22, .18);
    border-top-color: var(--saffron);
    animation: gmSpin 1s linear infinite;
}

.gm-loader-orbit img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 22px;
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
}

/* Header */
.gm-site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fffaf2;
    transition: transform var(--gm-transition), box-shadow var(--gm-transition), backdrop-filter var(--gm-transition);
}

.gm-site-header.is-scrolled {
    box-shadow: 0 18px 45px rgba(67, 20, 7, .12);
    backdrop-filter: blur(18px);
}

.gm-header-mantra {
    height: auto !important;
    min-height: unset !important;
    padding: 7px 0 !important;
    background: linear-gradient(90deg, #4c101b 0%, #8f1d37 52%, #f05a24 100%);
    color: #fff8e8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gm-header-mantra-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

.gm-header-mantra .deva {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}

.gm-header-nav {
    min-height: 82px !important;
    padding: 10px 0 !important;
    background: rgba(255, 250, 242, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 106, 31, 0.13);
    box-shadow: 0 12px 38px rgba(88, 28, 20, 0.08);
}

.gm-navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.gm-logo-box,
.gm-footer-logo-box {
    width: 76px !important;
    height: 62px !important;
    min-width: 76px !important;
    padding: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 106, 31, 0.18) !important;
    box-shadow: 0 12px 30px rgba(255, 91, 31, 0.12) !important;
    overflow: hidden !important;
    transform-style: preserve-3d;
}

.gm-site-logo,
.gm-footer-site-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 64px !important;
    max-height: 52px !important;
    object-fit: contain !important;
    display: block !important;
}

.gm-brand-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    line-height: 1.1 !important;
}

.gm-brand-name {
    color: #6b1426 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 31px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    text-transform: none !important;
}

.gm-brand-tagline {
    margin-top: 7px !important;
    color: #865420 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    letter-spacing: 0.1px !important;
}

.gm-menu-list {
    gap: 4px !important;
}

.gm-header-nav .nav-link {
    padding: 10px 14px !important;
    border-radius: 999px !important;
    color: #4b2a14 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    transition: all 0.22s ease;
}

.gm-header-nav .nav-link:hover {
    color: #be123c !important;
    background: rgba(255, 237, 213, 0.85) !important;
    transform: translateY(-2px);
}

.gm-header-nav .nav-link.active {
    color: #be123c !important;
    background: linear-gradient(135deg, #fff1df, #ffe6cf) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 106, 31, 0.12) !important;
}

.gm-admin-login-btn,
.gm-primary-btn,
.gm-outline-btn,
.gm-outline-light-btn,
.gm-call-btn,
.gm-footer-action-btn,
.gm-mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none !important;
    font-weight: 700;
    transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition), background var(--gm-transition), color var(--gm-transition);
}

.gm-admin-login-btn {
    min-height: 44px !important;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a1a 0%, #ef3426 48%, #be123c 100%) !important;
    box-shadow: 0 14px 32px rgba(190, 18, 60, 0.23) !important;
    font-size: 15px !important;
}

.gm-admin-login-btn:hover,
.gm-primary-btn:hover,
.gm-outline-btn:hover,
.gm-outline-light-btn:hover,
.gm-call-btn:hover,
.gm-footer-action-btn:hover,
.gm-mini-link:hover {
    transform: translateY(-3px);
}

.gm-mobile-toggler {
    border: 0 !important;
    box-shadow: none !important;
}

.site-main {
    display: block;
    position: relative;
    z-index: 2;
    min-height: 70vh;
}

/* Common Buttons */
.gm-primary-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, #ff6a1a 0%, #ef3426 48%, #be123c 100%);
    box-shadow: 0 18px 40px rgba(159, 18, 57, .28);
}

.gm-primary-btn:hover {
    color: #fff !important;
    box-shadow: 0 24px 54px rgba(159, 18, 57, .36);
}

.gm-outline-btn {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(249, 115, 22, .32);
    border-radius: 999px;
    color: var(--saffron-dark) !important;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 40px rgba(120, 53, 15, .08);
}

.gm-outline-btn:hover {
    color: var(--kumkum) !important;
    background: #fff7ed;
}

.gm-outline-light-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.gm-outline-light-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .18);
}

/* Home Hero: dark, premium, reference-style typography with Gau Mitra colors */
.gm-home-page {
    overflow: hidden;
}

.gm-hero-section {
    position: relative;
    padding: 108px 0 96px;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 106, 31, .24), transparent 26rem),
        radial-gradient(circle at 82% 14%, rgba(250, 204, 21, .14), transparent 25rem),
        radial-gradient(circle at 72% 82%, rgba(22, 101, 52, .16), transparent 28rem),
        linear-gradient(135deg, #050505 0%, #17080d 34%, #44131f 62%, #f05a24 120%);
}

.gm-hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .45;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        radial-gradient(circle at center, transparent 0, transparent 22%, rgba(255, 255, 255, .035) 23%, transparent 24%);
    background-size: 58px 58px, 58px 58px, 500px 500px;
}

.gm-hero-section::before {
    content: "ॐ";
    position: absolute;
    right: 7%;
    top: 6%;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 190px;
    line-height: 1;
    color: rgba(255, 255, 255, .055);
    pointer-events: none;
}

.gm-hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(255, 250, 240, .96));
    pointer-events: none;
}

.gm-floating-shape {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(.2px);
    opacity: .9;
    animation: gmFloat 8s ease-in-out infinite;
}

.gm-floating-shape-one {
    width: 170px;
    height: 170px;
    top: 11%;
    left: 4%;
    background: radial-gradient(circle, rgba(250, 204, 21, .24), rgba(250, 204, 21, 0));
}

.gm-floating-shape-two {
    width: 250px;
    height: 250px;
    right: -5%;
    top: 26%;
    background: radial-gradient(circle, rgba(255, 106, 31, .24), rgba(255, 106, 31, 0));
    animation-delay: -3s;
}

.gm-floating-shape-three {
    width: 132px;
    height: 132px;
    right: 36%;
    bottom: 9%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
    animation-delay: -5s;
}

.gm-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 237, 213, .82);
    border: 1px solid rgba(249, 115, 22, .20);
    color: var(--saffron-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.gm-hero-kicker {
    color: #fff3d0;
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
}

.gm-hero-kicker i {
    color: #ffd166;
}

.gm-hero-copy h1 {
    margin: 20px 0 18px;
    max-width: 800px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(42px, 5.8vw, 74px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.045em;
    color: #fff;
}

.gm-hero-copy h1 span {
    display: block;
    color: #ffd166;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.gm-hero-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
}

.gm-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.gm-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.gm-hero-trust-row div {
    min-width: 138px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.gm-hero-trust-row strong {
    display: block;
    color: #ffd166;
    font-size: 20px;
    font-weight: 700;
}

.gm-hero-trust-row span {
    color: rgba(255, 255, 255, .78);
    font-weight: 400;
    font-size: 13px;
}

.gm-hero-visual-wrap {
    perspective: 1200px;
}

.gm-hero-visual-card {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
        radial-gradient(circle at 50% 35%, rgba(250, 204, 21, .13), transparent 24rem);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .30);
    transform-style: preserve-3d;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.gm-hero-visual-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 34px;
    border: 1px dashed rgba(250, 204, 21, .25);
}

.gm-orbit-scene {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
}

.gm-orbit-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, .26);
    transform-style: preserve-3d;
}

.gm-orbit-ring-one {
    width: 210px;
    height: 210px;
    animation: gmRotate 12s linear infinite;
}

.gm-orbit-ring-two {
    width: 330px;
    height: 330px;
    border-color: rgba(255, 106, 31, .26);
    animation: gmRotateReverse 18s linear infinite;
}

.gm-orbit-ring-three {
    width: 440px;
    height: 440px;
    border-color: rgba(255, 255, 255, .14);
    animation: gmRotate 24s linear infinite;
}

.gm-orbit-center {
    position: relative;
    z-index: 2;
    width: 172px;
    height: 172px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, #fffaf0 0%, #fff 46%, #ffedd5 100%);
    box-shadow: 0 30px 70px rgba(249, 115, 22, .28);
    transform: translateZ(70px);
}

.gm-orbit-center img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.gm-orbit-center span {
    display: block;
    font-weight: 700;
    color: var(--maroon);
}

.gm-orbit-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff8dc;
    font-weight: 600;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    backdrop-filter: blur(15px);
    animation: gmFloat 6.4s ease-in-out infinite;
}

.gm-orbit-chip i {
    color: #ffd166;
}

.gm-orbit-chip-one { top: 74px; left: 74px; }
.gm-orbit-chip-two { top: 124px; right: 54px; animation-delay: -1.4s; }
.gm-orbit-chip-three { bottom: 116px; left: 52px; animation-delay: -2.2s; }
.gm-orbit-chip-four { bottom: 74px; right: 86px; animation-delay: -3s; }

.gm-hero-alert-card {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(91, 16, 32, .92);
    color: #fff;
    box-shadow: 0 24px 56px rgba(91, 16, 32, .36);
    backdrop-filter: blur(18px);
}

.gm-hero-alert-card strong,
.gm-hero-alert-card small {
    display: block;
}

.gm-hero-alert-card small {
    color: rgba(255, 255, 255, .74);
    font-weight: 400;
}

.gm-pulse-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
    animation: gmPulse 1.7s infinite;
}

/* Stats */
.gm-stats-section {
    position: relative;
    z-index: 4;
    margin-top: -36px;
    padding-bottom: 60px;
}

.gm-stat-card,
.gm-process-card,
.mini-case-card,
.gm-contact-card,
.gm-news-card,
.gm-gaushala-item,
.gm-final-cta-card,
.gm-footer-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.gm-stat-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(249, 115, 22, .16);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
    transition: all .28s ease;
}

.gm-stat-card:hover,
.gm-process-card:hover,
.mini-case-card:hover,
.gm-news-card:hover,
.gm-contact-card:hover,
.gm-gaushala-item:hover {
    border-color: rgba(249, 115, 22, .34);
    box-shadow: var(--shadow);
}

.gm-stat-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 25px;
    background: linear-gradient(135deg, #ff6a1a, #be123c);
    box-shadow: 0 16px 36px rgba(190, 18, 60, .24);
    margin-bottom: 20px;
}

.gm-stat-card strong {
    display: block;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--maroon);
}

.gm-stat-card h3 {
    margin: 9px 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.gm-stat-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
}

/* Sections */
.gm-section {
    padding: 88px 0;
    position: relative;
}

.gm-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.gm-section-heading h2,
.gm-section-top-row h2,
.gm-gaushala-section h2,
.gm-final-cta-card h2 {
    margin: 15px 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--text);
}

.gm-section-heading p,
.gm-section-top-row p,
.gm-section-text,
.gm-final-cta-card p {
    color: #625a52;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
}

.gm-section-top-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
}

.gm-mini-link {
    color: var(--kumkum) !important;
    white-space: nowrap;
}

.gm-process-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(249, 115, 22, .12), transparent 26rem),
        linear-gradient(180deg, #fff, #fff7ed);
}

.gm-process-card {
    position: relative;
    min-height: 286px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(249, 115, 22, .16);
    box-shadow: 0 22px 54px rgba(120, 53, 15, .10);
    overflow: hidden;
    transition: all .28s ease;
}

.gm-process-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -45% auto;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .12);
    transition: transform var(--gm-transition);
}

.gm-process-card:hover::before {
    transform: scale(1.7);
}

.gm-process-card > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(159, 18, 57, .12);
    font-size: 44px;
    font-weight: 800;
}

.gm-process-card > i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, var(--saffron), var(--kumkum));
    box-shadow: 0 18px 44px rgba(159, 18, 57, .22);
    margin-bottom: 24px;
    transform: translateZ(42px);
}

.gm-process-card h3,
.gm-contact-card h3,
.gm-news-card h3,
.gm-gaushala-item h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
}

.gm-process-card p,
.gm-contact-card p,
.gm-news-card p,
.gm-gaushala-item p {
    color: var(--muted);
    font-weight: 400;
    line-height: 1.65;
}

/* Live Case Section with your existing mini card */
.gm-live-cases-section,
.home-live-section {
    padding: 74px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(250, 204, 21, 0.12), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(159, 18, 57, 0.08), transparent 30%),
        linear-gradient(180deg, #fffaf0 0%, #fff7ed 100%);
}

.mini-case-card {
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(249, 115, 22, 0.16);
    box-shadow: 0 14px 38px rgba(107, 63, 24, 0.10);
    transition: all 0.25s ease;
}

.mini-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(107, 63, 24, 0.16);
}

.mini-case-media {
    position: relative;
    height: 135px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(250, 204, 21, 0.18), transparent 42%),
        linear-gradient(135deg, #fff0d6, #fff7ed);
}

.mini-case-media img,
.mini-case-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.mini-case-card:hover .mini-case-media img,
.mini-case-card:hover .mini-case-media video {
    transform: scale(1.06);
}

.mini-case-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--saffron-dark);
    font-size: 32px;
}

.mini-live-dot {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    backdrop-filter: blur(10px);
}

.mini-live-dot i {
    font-size: 9px;
    animation: gmPulseText 1.4s infinite;
}

.mini-video-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 34px;
    background: rgba(0, 0, 0, 0.22);
}

.mini-video-icon i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(159, 18, 57, 0.88);
}

.mini-case-body {
    padding: 14px;
}

.mini-case-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mini-status,
.mini-severity {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.mini-status.reported {
    background: #facc15;
    color: #4b2506;
}

.mini-status.accepted {
    background: #2563eb;
    color: #ffffff;
}

.mini-status.resolved {
    background: #16a34a;
    color: #ffffff;
}

.mini-severity.low {
    background: #ffe4e6;
    color: #be123c;
}

.mini-severity.medium {
    background: #ffedd5;
    color: #c2410c;
}

.mini-severity.high {
    background: #dc2626;
    color: #ffffff;
}

.mini-case-body h5 {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.mini-case-body h5 a {
    color: #111827;
    text-decoration: none;
}

.mini-case-body h5 a:hover {
    color: var(--kumkum);
}

.mini-case-line {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    color: #6b3f18;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 7px;
}

.mini-case-line i {
    color: var(--saffron-dark);
    margin-top: 2px;
    min-width: 13px;
}

.mini-case-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid rgba(249, 115, 22, 0.14);
}

.mini-case-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7a5c3a;
    font-size: 11px;
    font-weight: 600;
}

.mini-case-footer span i {
    color: var(--saffron-dark);
}

.mini-case-footer a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--kumkum);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mini-case-footer a:hover {
    color: var(--saffron-dark);
}

@media (min-width: 1200px) {
    .gm-live-cases-section .row-cols-xl-5 > *,
    .home-live-section .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Gaushala */
.gm-gaushala-section {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, .12), transparent 28rem),
        #fff7ed;
}

.gm-gaushala-stack {
    display: grid;
    gap: 16px;
}

.gm-gaushala-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(249, 115, 22, .15);
    box-shadow: 0 18px 44px rgba(120, 53, 15, .09);
    transition: all .28s ease;
}

.gm-gaushala-number {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, var(--saffron), var(--kumkum));
    box-shadow: 0 18px 38px rgba(159, 18, 57, .18);
}

.gm-gaushala-item p {
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 0;
}

.gm-gaushala-item p i {
    color: var(--saffron);
}

/* Contact */
.gm-contact-section {
    background: #fff;
}

.gm-contact-card {
    height: 100%;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,247,237,.78));
    border: 1px solid rgba(249, 115, 22, .16);
    box-shadow: 0 20px 50px rgba(120, 53, 15, .10);
    transition: all .28s ease;
}

.gm-contact-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, var(--saffron));
    box-shadow: 0 18px 38px rgba(220, 38, 38, .20);
    font-size: 24px;
    margin-bottom: 18px;
}

.gm-contact-card > span,
.gm-news-type {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 237, 213, .74);
    color: var(--saffron-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .045em;
}

.gm-contact-card h3 {
    margin-top: 14px;
}

.gm-call-btn {
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 16px 36px rgba(22, 163, 74, .20);
}

.gm-call-btn:hover {
    color: #fff !important;
}

/* News */
.gm-news-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 115, 22, .09), transparent 28rem),
        linear-gradient(180deg, #fff7ed, #ffffff);
}

.gm-news-card {
    display: block;
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(249, 115, 22, .16);
    box-shadow: 0 22px 56px rgba(120, 53, 15, .10);
    transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition);
}

.gm-news-card h3 {
    min-height: 56px;
    margin-top: 18px;
}

.gm-news-card div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #57534e;
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px dashed rgba(249, 115, 22, .18);
}

.gm-news-card div i {
    color: var(--saffron);
}

/* Final CTA */
.gm-final-cta-section {
    padding: 90px 0;
    background: #fff;
}

.gm-final-cta-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(34px, 7vw, 76px);
    border-radius: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .18), transparent 20rem),
        linear-gradient(135deg, #24070f, #5b1020 48%, #f05a24);
    box-shadow: var(--shadow);
}

.gm-final-cta-card .gm-section-kicker {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .24);
}

.gm-final-cta-card h2 {
    max-width: 880px;
    margin-inline: auto;
    color: #fff;
}

.gm-final-cta-card p {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .78);
}

.gm-final-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    right: -80px;
    top: -90px;
    background: rgba(255, 255, 255, .12);
    filter: blur(3px);
    animation: gmFloat 7s ease-in-out infinite;
}

.gm-empty-state {
    padding: 44px 24px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(249, 115, 22, .16);
    box-shadow: 0 18px 44px rgba(120, 53, 15, .08);
}

.gm-empty-state i {
    font-size: 48px;
    color: var(--saffron);
    margin-bottom: 14px;
}

.gm-empty-state h3 {
    font-weight: 700;
    color: var(--text);
}

.gm-empty-state p {
    margin: 0;
    color: var(--muted);
    font-weight: 400;
}

/* Footer */
.gm-site-footer {
    position: relative;
    padding: 58px 0 28px !important;
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 106, 31, 0.18), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(34, 197, 94, 0.12), transparent 26%),
        linear-gradient(135deg, #171112 0%, #3d151d 48%, #102719 100%) !important;
    color: #fff3df !important;
    overflow: hidden;
}

.gm-site-footer::before {
    content: "ॐ";
    position: absolute;
    right: 7%;
    top: 22px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 112px;
    font-weight: 400;
    line-height: 1;
    color: rgba(255, 255, 255, 0.045);
    pointer-events: none;
}

.gm-footer-card {
    position: relative;
    padding: 34px !important;
    border-radius: 32px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.17) !important;
}

.gm-footer-brand-row {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

.gm-footer-brand-row h5 {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 29px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.gm-footer-brand-row p {
    margin: 7px 0 0 !important;
    color: rgba(255, 238, 203, 0.75) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.gm-footer-about-text {
    max-width: 520px;
    margin: 0 !important;
    color: rgba(255, 238, 203, 0.76) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
}

.gm-footer-mantra-text {
    display: inline-flex !important;
    margin-top: 17px !important;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    color: #ffe08a !important;
    background: rgba(250, 204, 21, 0.11) !important;
    border: 1px solid rgba(250, 204, 21, 0.16) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.gm-footer-title {
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}

.gm-site-footer a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    color: rgba(255, 238, 203, 0.76) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.gm-site-footer a:hover {
    color: #ffe08a !important;
    transform: translateX(3px);
}

.gm-footer-note {
    color: rgba(255, 238, 203, 0.74) !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
}

.gm-footer-action-btn {
    margin-top: 8px !important;
    min-height: 44px !important;
    padding: 11px 17px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a1a 0%, #ef3426 50%, #be123c 100%) !important;
    box-shadow: 0 16px 34px rgba(190, 18, 60, 0.22) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.gm-footer-bottom-row {
    margin-top: 30px !important;
    padding-top: 19px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: rgba(255, 238, 203, 0.64) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.gm-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1030;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--kumkum), var(--saffron));
    box-shadow: 0 18px 38px rgba(120, 53, 15, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--gm-transition), transform var(--gm-transition), visibility var(--gm-transition);
}

.gm-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gm-back-to-top i {
    font-size: 27px;
}

/* Reveal and motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="fade-left"] {
    transform: translateX(34px);
}

[data-reveal="fade-right"] {
    transform: translateX(-34px);
}

[data-reveal="zoom-in"] {
    transform: scale(.94) translateY(24px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

[data-tilt-card] {
    transition: transform .18s ease, box-shadow var(--gm-transition);
}

/* Keyframes */
@keyframes gmSpin {
    to { transform: rotate(360deg); }
}

@keyframes gmFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -18px, 0); }
}

@keyframes gmRotate {
    to { transform: rotate(360deg); }
}

@keyframes gmRotateReverse {
    to { transform: rotate(-360deg); }
}

@keyframes gmPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); }
    70% { box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes gmPulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

/* Responsive */
@media (max-width: 1199px) {
    .gm-hero-visual-card { min-height: 500px; }
    .gm-orbit-ring-three { width: 380px; height: 380px; }
    .mini-case-media { height: 150px; }
}

@media (max-width: 991px) {
    .gm-header-nav {
        min-height: auto !important;
        padding: 10px 0 !important;
    }

    .gm-menu-list {
        gap: 2px !important;
        padding-top: 15px !important;
    }

    .gm-header-nav .nav-link {
        padding: 11px 13px !important;
        border-radius: 16px !important;
    }

    .gm-admin-login-btn { width: 100% !important; }

    .gm-section-top-row,
    .gm-footer-bottom-row {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .gm-hero-section {
        padding: 78px 0 70px;
    }

    .gm-hero-copy h1 {
        font-size: 46px;
    }

    .gm-hero-visual-card { min-height: 460px; }
    .gm-orbit-chip-one { left: 24px; }
    .gm-orbit-chip-two { right: 24px; }
    .gm-orbit-chip-three { left: 24px; }
    .gm-orbit-chip-four { right: 24px; }

    .gm-footer-card {
        padding: 28px !important;
        border-radius: 28px !important;
    }
}

@media (max-width: 767px) {
    .gm-header-mantra { padding: 6px 0 !important; }

    .gm-header-mantra-inner {
        justify-content: center !important;
        text-align: center !important;
        font-size: 12px !important;
    }

    .gm-header-mantra-inner span:last-child { display: none !important; }
    .gm-header-mantra .deva { font-size: 13px !important; }

    .gm-logo-box {
        width: 60px !important;
        height: 52px !important;
        min-width: 60px !important;
        border-radius: 16px !important;
    }

    .gm-site-logo {
        max-width: 52px !important;
        max-height: 44px !important;
    }

    .gm-brand-name { font-size: 25px !important; }
    .gm-brand-tagline { font-size: 11px !important; margin-top: 5px !important; }

    .gm-hero-section {
        padding: 56px 0 58px;
    }

    .gm-hero-section::before {
        right: -20px;
        top: 20px;
        font-size: 125px;
    }

    .gm-hero-copy h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .gm-hero-copy p,
    .gm-section-heading p,
    .gm-section-top-row p,
    .gm-section-text,
    .gm-final-cta-card p {
        font-size: 15px;
    }

    .gm-primary-btn,
    .gm-outline-btn,
    .gm-outline-light-btn {
        width: 100%;
    }

    .gm-hero-trust-row div { flex: 1 1 100%; }

    .gm-hero-visual-card {
        min-height: 410px;
        border-radius: 30px;
    }

    .gm-orbit-center {
        width: 135px;
        height: 135px;
    }

    .gm-orbit-center img {
        width: 68px;
        height: 68px;
    }

    .gm-orbit-ring-one { width: 170px; height: 170px; }
    .gm-orbit-ring-two { width: 260px; height: 260px; }
    .gm-orbit-ring-three { width: 330px; height: 330px; }

    .gm-orbit-chip {
        font-size: 12px;
        min-height: 38px;
        padding: 0 12px;
    }

    .gm-hero-alert-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .gm-section,
    .gm-live-cases-section,
    .home-live-section {
        padding: 58px 0;
    }

    .mini-case-media { height: 170px; }
    .mini-case-body { padding: 15px; }

    .gm-gaushala-item {
        align-items: flex-start;
    }

    .gm-final-cta-section { padding: 64px 0; }
    .gm-site-footer { padding: 42px 0 22px !important; }

    .gm-footer-card {
        padding: 23px !important;
        border-radius: 24px !important;
    }

    .gm-footer-bottom-row {
        display: grid !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .gm-hero-copy h1 { font-size: 34px; }

    .gm-section-heading h2,
    .gm-section-top-row h2,
    .gm-gaushala-section h2,
    .gm-final-cta-card h2 {
        font-size: 30px;
    }

    .gm-orbit-chip-one,
    .gm-orbit-chip-three { left: 12px; }
    .gm-orbit-chip-two,
    .gm-orbit-chip-four { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* =========================================================
   Transparent Spiritual Glassmorphism Cow Welcome Background
   Paste at bottom of your CSS file
========================================================= */

.gm-cow-page-lock {
    overflow: hidden;
}

/* Full transparent glass overlay */
.gm-simple-cow-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;

    /* transparent over website */
    background:
        radial-gradient(circle at 18% 18%, rgba(250, 204, 21, 0.20), transparent 28rem),
        radial-gradient(circle at 82% 20%, rgba(249, 115, 22, 0.18), transparent 30rem),
        radial-gradient(circle at 50% 85%, rgba(22, 163, 74, 0.16), transparent 28rem),
        rgba(255, 248, 232, 0.16);

    backdrop-filter: blur(10px) saturate(1.25);
    -webkit-backdrop-filter: blur(10px) saturate(1.25);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}

.gm-simple-cow-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gm-simple-cow-overlay.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Spiritual light particles */
.gm-simple-cow-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(250, 204, 21, 0.35) 0 1px, transparent 2px);
    background-size: 95px 95px, 145px 145px;
    opacity: 0.42;
    animation: gmSpiritualParticles 8s linear infinite;
    pointer-events: none;
}

/* Soft divine glow border */
.gm-simple-cow-overlay::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
        inset 0 0 45px rgba(255, 255, 255, 0.18),
        0 0 60px rgba(250, 204, 21, 0.16);
    pointer-events: none;
}

/* Main scene */
.gm-simple-cow-scene {
    position: relative;
    width: min(1120px, 94vw);
    height: min(680px, 86vh);
    display: grid;
    place-items: center;
    perspective: 1500px;
    transform-style: preserve-3d;

    /* glass card container */
    border-radius: 46px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.30), rgba(255, 248, 232, 0.12)),
        radial-gradient(circle at 50% 35%, rgba(250, 204, 21, 0.18), transparent 24rem);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 40px 120px rgba(91, 16, 32, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: hidden;
}

/* Remove heavy old ground and make it glass/transparent */
.gm-simple-ground {
    position: absolute;
    left: -8vw;
    right: -8vw;
    bottom: -22vh;
    height: 42vh;
    border-radius: 50% 50% 0 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 35%),
        linear-gradient(180deg, rgba(74, 222, 128, 0.22), rgba(22, 101, 52, 0.24));
    box-shadow: inset 0 24px 55px rgba(255, 255, 255, 0.18);
}

/* Spiritual Om watermark */
.gm-simple-om {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 1;
    font-family: 'Noto Sans Devanagari', serif;
    font-size: clamp(100px, 14vw, 230px);
    font-weight: 900;
    line-height: 1;
    color: rgba(91, 16, 32, 0.08);
    text-shadow: 0 20px 60px rgba(250, 204, 21, 0.20);
    animation: gmSimpleFloat 4s ease-in-out infinite;
}

/* Sun glow */
.gm-simple-sun {
    position: absolute;
    top: 54px;
    right: 74px;
    z-index: 1;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 32%, #fffbd1 0%, #facc15 45%, #f97316 100%);
    box-shadow:
        0 0 60px rgba(250, 204, 21, 0.58),
        0 0 130px rgba(249, 115, 22, 0.30);
    opacity: 0.88;
    animation: gmSimpleSun 3s ease-in-out infinite;
}

/* Glass message box */
.gm-simple-message {
    position: absolute;
    top: 72px;
    left: 50%;
    z-index: 8;
    width: min(780px, 88vw);
    transform: translateX(-50%);
    text-align: center;
    padding: 28px 30px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 232, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow:
        0 24px 70px rgba(91, 16, 32, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    animation: gmSimpleMessageIn 1s ease 0.65s both;
}

.gm-simple-message span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 9px 18px;
    border-radius: 999px;
    color: #c2410c;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(249, 115, 22, 0.20);
    box-shadow: 0 14px 34px rgba(120, 53, 15, 0.10);
    font-size: 15px;
    font-weight: 900;
}

.gm-simple-message h1 {
    margin: 0;
    color: #5b1020;
    font-size: clamp(42px, 5.5vw, 78px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 14px 32px rgba(91, 16, 32, 0.14);
}

.gm-simple-message p {
    margin: 14px 0 8px;
    color: #166534;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: clamp(23px, 3vw, 40px);
    font-weight: 900;
}

.gm-simple-message small {
    display: block;
    color: #7a3f18;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 800;
}

/* Cow image */
.gm-simple-cow-wrap {
    position: absolute;
    bottom: 82px;
    left: 50%;
    z-index: 9;
    width: min(430px, 78vw);
    height: min(430px, 78vw);
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    animation:
        gmSimpleCowCome 2s cubic-bezier(.18,.92,.28,1.12) both,
        gmSimpleCowExit 1.35s ease-in 4.2s forwards;
}

.gm-simple-cow-wrap img {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 34px 38px rgba(91, 16, 32, 0.30))
        drop-shadow(0 0 26px rgba(250, 204, 21, 0.34))
        saturate(1.14)
        contrast(1.05);
    transform-origin: center bottom;
    animation: gmSimpleCowLive 1.6s ease-in-out 2s infinite;
}

.gm-simple-cow-glow {
    position: absolute;
    inset: 8%;
    z-index: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(250, 204, 21, 0.46), transparent 62%),
        radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 74%);
    filter: blur(6px);
    animation: gmSimpleGlow 2.2s ease-in-out infinite;
}

.gm-simple-cow-shadow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 2%;
    z-index: 0;
    height: 45px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(91, 16, 32, 0.28), transparent 68%);
    filter: blur(7px);
    transform: rotateX(66deg);
}

/* Skip button glass */
.gm-simple-skip-btn {
    position: fixed;
    top: 26px;
    right: 30px;
    z-index: 10005;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7f1d1d;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(120, 53, 15, 0.15);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gm-simple-skip-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #9f1239, #f97316);
    transform: translateY(-2px);
}

/* Required animations */
@keyframes gmSimpleCowCome {
    0% {
        opacity: 0;
        transform: translate3d(-95vw, 100px, -700px) scale(0.26) rotateY(42deg);
    }
    45% {
        opacity: 1;
        transform: translate3d(-120px, 30px, -180px) scale(0.66) rotateY(18deg);
    }
    75% {
        opacity: 1;
        transform: translate3d(-50%, -8px, 90px) scale(1.08) rotateY(-7deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(-50%, 0, 110px) scale(1) rotateY(0);
    }
}

@keyframes gmSimpleCowExit {
    0% {
        opacity: 1;
        transform: translate3d(-50%, 0, 110px) scale(1) rotateY(0);
    }
    100% {
        opacity: 0;
        transform: translate3d(90vw, 35px, -180px) scale(0.72) rotateY(-34deg);
    }
}

@keyframes gmSimpleCowLive {
    0%, 100% {
        transform: rotateZ(0deg) translateY(0);
    }
    35% {
        transform: rotateZ(-1.3deg) translateY(-5px);
    }
    70% {
        transform: rotateZ(1.1deg) translateY(-2px);
    }
}

@keyframes gmSimpleMessageIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px) scale(0.94);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes gmSimpleGlow {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.74;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes gmSimpleSun {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes gmSimpleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(-3deg);
    }
}

@keyframes gmSpiritualParticles {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 95px 95px, 145px 145px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gm-simple-cow-scene {
        width: 94vw;
        height: 86vh;
        border-radius: 30px;
    }

    .gm-simple-message {
        top: 72px;
        width: 88vw;
        padding: 22px 18px;
        border-radius: 26px;
    }

    .gm-simple-message h1 {
        font-size: 40px;
    }

    .gm-simple-message p {
        font-size: 25px;
    }

    .gm-simple-message small {
        font-size: 14px;
        padding: 0 8px;
    }

    .gm-simple-cow-wrap {
        bottom: 90px;
        width: min(335px, 82vw);
        height: min(335px, 82vw);
    }

    .gm-simple-sun {
        width: 76px;
        height: 76px;
        top: 64px;
        right: 24px;
    }

    .gm-simple-skip-btn {
        top: 18px;
        right: 16px;
        min-height: 38px;
        font-size: 12px;
    }
}
