.hero-wrapper {
    max-height: 100vh;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 2.5rem 0;
}

.hero-laptop {
    width: 70%;
    max-width: none;
    margin-left: 2rem;
}

.laptop-screen {
    position: absolute;
    top: 3.5%;
    left: 11.5%;
    width: 77%;
    height: 87%;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1182 / 716;
}

#video1 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 2;
    transition: opacity 1s ease-in-out;
    aspect-ratio: 16 / 9;
}

#video2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    aspect-ratio: 16 / 9;
}

.hero-headings {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#headingContainer {
    position: relative;
    height: 175px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heading-text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding-top: 1.1em;
    padding-bottom: 1.1em;
    line-height: 1.18;
    box-sizing: border-box;
    background: linear-gradient(90deg, #4fd1ff 10%, #fff 50%, #ff914d 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.heading-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.heading-text.is-exiting {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-video {
    will-change: opacity;
    backface-visibility: hidden;
}

.marquee-container {
    background: linear-gradient(135deg, rgba(6, 20, 50, 0.95), rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #06b6d4, #3b82f6, #06b6d4, transparent) 1;
    padding: 0.4rem 0;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 30px rgba(6, 182, 212, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(6, 182, 212, 0.2);
}

.marquee-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, #3b82f6, #06b6d4, transparent);
}

.active-gradient {
    background: linear-gradient(148deg,
            rgba(0, 152, 212, 1) 13%,
            rgba(129, 118, 105, 0.87) 46%,
            rgba(255, 85, 0, 1) 79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 14px rgba(0, 115, 150, 0.3);
}


.marquee-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #06b6d4, #3b82f6, transparent);
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(6, 182, 212, 0.03) 2px, rgba(6, 182, 212, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(59, 130, 246, 0.03) 2px, rgba(59, 130, 246, 0.03) 4px);
    pointer-events: none;
}

.holographic-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.1),
            transparent);
    display: none;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.1) 50%, transparent 100%);
    display: none;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-link {
    flex-shrink: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Manrope', -apple-system, sans-serif;
    padding: 0 4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.marquee-link-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)) drop-shadow(0 0 4px rgba(59, 130, 246, 0.6));
}

.marquee-link-text {
    background: linear-gradient(135deg, #06b6d4, #3b82f6 50%, #8b5cf6);
    -webkit-background-clip: text;
    background-size: 200% auto;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.marquee-link-arrow {
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.7));
}

.marquee-link:hover {
    transform: translateY(-2px);
}

.marquee-link:hover .marquee-link-arrow {
    transform: translateX(8px) scale(1.2);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}







.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ==========================================================================
   PRESENCE / IMPACT SECTION
   ========================================================================== */
#impact {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
}

.presence {
    box-shadow: 0px 0px 10px 5px #d3d3d388;
    width: 100%;
    padding: 35px 0;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    overflow: hidden;
}

#impact .section-title {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex;
    flex-direction: column;
}

#impact .section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.08;
    font-family: "Manrope", sans-serif;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

#impact .section-title span {
    color: var(--primary-orange);
}

#impact .section-title p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.8rem;
    line-height: 1.3;
    color: #b7b7b7;
    font-family: "Manrope", sans-serif;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   INDIA MAP & STATE OVERLAYS
   ========================================================================== */


#stateOverlayContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    z-index: 10;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

#indiaMapDisplay {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    transition: opacity 0.5s ease-in-out;
    will-change: opacity;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    width: auto;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    object-fit: contain;
}

#indiaBaseMap {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}


.state-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    transform-origin: center center !important;
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.9));
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 800px !important;
    max-height: 600px !important;
    object-fit: contain !important;
    display: block !important;
    transition: opacity 0.5s ease-in-out !important;
}

.state-hidden {
    opacity: 0 !important;
    pointer-events: none;
}

/* Hide base map completely when state is hovered */
.base-map-hidden {
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
}


/* ==========================================================================
   STATE BUTTONS (GLOW & INTERACTION)
   ========================================================================== */
#impact .glowbutton {
    border: 0.15em solid var(--glow-color);
    padding: 0.7em 1.5em;
    color: var(--glow-color);
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--btn-color);
    border-radius: 0.8em;
    outline: none;
    box-shadow: 0 0 1em 0.1em var(--glow-color),
        0 0 2em 0.5em var(--glow-spread-color),
        inset 0 0 0.5em 0.1em var(--glow-color);
    text-shadow: 0 0 0.5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#impact .glowbutton::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: 0.7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, 0.6);
}

#impact .glowbutton:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1.5em 0.2em var(--enhanced-glow-color),
        0 0 3em 1em var(--glow-spread-color),
        inset 0 0 1em 0.2em var(--enhanced-glow-color);
}

#impact .state-card {
    width: 180px;
    min-height: 52px;
    box-shadow: none;
    text-shadow: none;
    background: linear-gradient(to bottom right,
            #2e8eff 0%,
            rgba(46, 142, 255, 0) 30%);
    background-color: rgba(46, 142, 255, 0.2);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.2rem;
}

#impact .state-card:hover,
#impact .state-card:focus {
    background-color: rgba(46, 142, 255, 0.7);
    box-shadow: 0 0 10px rgba(46, 142, 255, 0.55);
    outline: none;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    z-index: 3;
    transform: translateY(-2px) scale(1.03);
}

#impact .state-card p {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    margin: 0;
    transition: color 0.3s ease;
}


.presence-map-wrapper {
    min-height: 800px;
}

.presence-map {
    flex: 1;
    max-width: 155px;
}

.base-map-wrapper {
    flex: 2;
    height: 750px;
    width: 100%;
    overflow: hidden;
}

.base-map {
    position: relative;
    width: 800px;
    height: 600px;
    margin: 0 auto;
    overflow: visible;
}

#indiaBaseMap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

#stateOverlayContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.back-content .title {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    display: flex;
}

.front-content .title {
    font-family: 'Manrope', sans-serif;
}

.front-content .card-footer {
    font-family: 'Manrope', sans-serif;
}

.group {
    font-family: 'Manrope', sans-serif;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem 0rem;
    justify-items: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 0 65px;
}

.esc-image {
    max-width: 95px;
    max-height: 140px;
    object-fit: contain;
}

.award-image {
    max-width: 150px;
    max-height: 140px;
    object-fit: contain;
}

.sph-image {
    max-width: 150px;
    max-height: 110px;
    object-fit: contain;
}

.csir-image {
    max-width: 100px;
    max-height: 140px;
    object-fit: contain;
}

.globe-canvas {
    width: 100%;
    height: 500px;
    min-height: 500px;
    contain: layout;
    opacity: 0;
    transform: scale(0.98);
    /* High-end indigo placeholder to prevent black screen */
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s ease-out;
    filter: blur(8px);
}

.globe-canvas.globe-loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}


:root {
    --glow-color: #3b82f6;
    --enhanced-glow-color: #2563eb;
    --btn-color: #1e293b;
    --primary-orange: #f4883d;
}




@keyframes smoothSlideUp {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }

    100% {
        transform: translateY(-40%);
        opacity: 0;
    }
}

@keyframes awardsHeadingFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.04);
    }

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


@keyframes awardsDescFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}






/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */


.service-card {
    overflow: visible;
    width: 380px;
    height: 365px;
}

.service-content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
    transition: transform 1.5s ease-in-out;
}

.front,
.back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
}

.back::before {
    position: absolute;
    content: " ";
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg,
            transparent,
            #3b82f6,
            #3b82f6,
            #3b82f6,
            #3b82f6,
            transparent);
}

.back {
    /* Positioning & Stability */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* THE GRADIENT BASE */
    /* Using a deep dark foundation so the colors don't look washed out */
    background-color: #0b0f1a;
    background-image: radial-gradient(at 0% 0%,
            rgba(59, 130, 246, 0.2) 0px,
            transparent 50%),
        radial-gradient(at 100% 100%,
            rgba(255, 153, 102, 0.2) 0px,
            transparent 50%);

    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-content {
    z-index: 2;
    position: absolute;
    width: 99%;
    height: 99%;

    /* THE MAIN GRADIENT */
    /* Linear gradient from a Deep Blue-Grey to a Deep Charcoal-Orange */
    background: linear-gradient(135deg, #0f172a 0%, #151515 50%, #1a1412 100%);

    /* Modern Edge: A subtle gradient border that mimics the blue-to-orange flow */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    /* Inner shadow for depth */
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Subtle "Light Sweep" animation remains for a premium feel */
.back::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

/* Hover effect only affects position/lift, not the colors */
.service-card:hover .back {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}




.service-card:hover .service-content {
    transform: rotateY(180deg);
}




.front {
    transform: rotateY(180deg);
    color: white;
    background-size: cover;
    background-position: center;
}



.front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #000000c4;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.title {
    font-size: 25px;
    max-width: 100%;
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    flex-direction: column;
}

.title p {
    width: 50%;
}

.card-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 12px;
}



/* ==========================================================================
   AWARDS SECTION
   ========================================================================== */
.awards-animated-heading {
    animation: awardsHeadingFadeInUp 1.2s cubic-bezier(0.4, 2, 0.6, 1) 0.1s both;
    display: inline-block;
    position: relative;
    font-family: "Manrope", sans-serif;
}

.awards-animated-desc {
    animation: awardsDescFadeIn 1.6s cubic-bezier(0.4, 2, 0.6, 1) 0.7s both;
    display: block;
    font-size: 1.25rem;
    color: #b7b7b7;
    font-family: "Manrope", sans-serif;
    margin-top: 0.7rem;
    opacity: 0;
}

.award-card-white {
    background: #fff;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.07), 0 0 0 0 #3b82f6;
    width: 190px;
    height: 115px;
    margin: 0 auto;
    transition: box-shadow 0.3s, transform 0.3s;
}

.award-card-white:hover {
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.4), 0 5px 20px -5px rgba(244, 136, 61, 0.3);
    transform: translateY(-8px) scale(1.04);
}

/* ==========================================================================
   MISC & MEDIA QUERIES
   ========================================================================== */


@media (max-width: 1024px) {
    #headingContainer {
        height: 100px !important;
    }

    .heading-text {
        font-size: 1.45rem !important;
    }
}


/* 📱 Mobile */
@media (max-width: 768px) {
    .globe-canvas {
        height: 300px;
        min-height: 300px;
        /* 🔥 smaller globe */
    }

    #globe-parent {
        margin-top: 15px;
    }

    #impact.lazy-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 5rem 1rem 2rem !important;
        min-height: 50vh;
    }

    .hero-laptop {
        order: 1;
        margin: 2rem 0 !important;
        max-width: 100%;
        width: 100% !important;
    }

    .hero-headings {
        order: 2;
        /* Headings below */
        width: 90% !important;
    }

    * h2 {
        font-size: 1.6rem !important;
    }

    * p {
        font-size: 1rem !important;
    }

    .serv-section {
        padding: 1rem 0.5rem;
    }

    .services {
        gap: 0.5rem !important;
    }

    .service-card {
        width: 100% !important;
        max-width: 320px !important;
        height: 320px !important;
        margin: 0 auto;
    }

    .service-card .title,
    .service-card .title strong {
        font-size: 1.1rem !important;
    }

    .service-card .card-footer {
        font-size: 0.85rem !important;
    }

    .service-card svg.w-16 {
        width: 3rem !important;
        height: 3rem !important;
        margin-bottom: 0.5rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 !important;
    }

    .award-card-white {
        max-width: 125px !important;
        height: 80px !important;
    }

    .award-card-white img {
        width: 80px !important;
        height: 80px !important;
    }

    /* Keep cards exactly as-is */
    .presence-map-wrapper {
        flex-wrap: wrap;
        gap: 5px;
    }

    .awards-pres {
        margin-top: 25px !important;
    }

    /* LEFT state column */
    .presence-map-wrapper>div:first-child {
        order: 1;
    }

    /* RIGHT state column */
    .presence-map-wrapper>div:last-child {
        order: 1;
    }

    .presence {
        padding: 20px 1.2rem !important;
        width: auto !important;
    }

    .base-map-wrapper {
        height: 320px !important;
    }

    .base-map {
        height: 320px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* MAP always LAST */
    .presence-map-wrapper>div:nth-child(2) {
        order: 2;
        flex: 0 0 100% !important;
        width: 100%;
        margin-top: 1.5rem;
        height: 320px;
    }

    /* Reduce map size */
    .presence-map-wrapper img:not(#indiaMapDisplay) {
        max-width: 100% !important;
        max-height: 280px !important;
    }

    /* Professional Service Button Hover Effects */
    .modern-service-btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
        overflow: hidden;
    }

    .modern-service-btn:hover {
        background-color: #1d4ed8 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
    }

    .modern-service-btn .shine-sweep {
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
        transition: left 0.6s ease-in-out;
        pointer-events: none;
        z-index: 5;
    }

    .modern-service-btn:hover .shine-sweep {
        left: 150%;
    }

    .modern-service-btn .btn-text-content {
        display: inline-block;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .modern-service-btn .arrow-container {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modern-service-btn:hover .arrow-container {
        background-color: #ffffff !important;
        transform: scale(1.1);
    }

    .modern-service-btn .arrow-svg {
        transition: transform 0.3s ease;
    }

    .modern-service-btn:hover .arrow-svg {
        transform: translateX(3px);
    }

    #indiaMapDisplay {
        max-width: 90vw !important;
        max-height: 300px !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
        z-index: 20 !important;
    }

    #stateOverlayContainer {
        width: 100% !important;
        height: 100% !important;
    }

    .state-card {
        width: 155px !important;
    }

    .state-card p {
        font-size: 0.9rem !important;
    }
}

/* Globe Tooltip Markers */
.globe-tooltip-marker {
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 9999;
    position: relative;
}

.tooltip-box {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 10px) scale(0.5);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    font-family: 'Manrope', sans-serif;
}

.tooltip-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px #3b82f6;
}

.tooltip-arrow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(15, 23, 42, 0.9);
}

/* Lazy Reveal Sections */
.lazy-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.21, 0.45, 0.32, 0.9),
        transform 1s cubic-bezier(0.21, 0.45, 0.32, 0.9);
    will-change: opacity, transform;
}

.lazy-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MODERN SERVICE BUTTONS
   ========================================================================== */
.modern-service-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.modern-service-btn:hover {
    background-color: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.modern-service-btn .shine-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease-in-out;
    pointer-events: none;
    z-index: 5;
}

.modern-service-btn:hover .shine-sweep {
    left: 150%;
}

.modern-service-btn .btn-text-content {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.modern-service-btn .arrow-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-service-btn:hover .arrow-container {
    background-color: #ffffff !important;
    transform: scale(1.1);
}

.modern-service-btn .arrow-svg {
    transition: transform 0.3s ease;
}

.modern-service-btn:hover .arrow-svg {
    transform: translateX(3px);
}

/* Custom spacing overrides because of Tailwind compilation gaps */
.mt-12 {
    margin-top: 3rem !important;
}
.mt-6 {
    margin-top: 1.5rem !important;
}
.my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}