/* Material Symbols defaults */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.icon-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

body {
    min-height: max(884px, 100dvh);
}

/* Brand utilities */
.bg-red-gradient {
    background: linear-gradient(135deg, #e8002d 0%, #b90022 100%);
}
.lofloating {
    box-shadow: 0 20px 40px -10px rgba(28, 27, 27, 0.05);
}
.dashed-connector {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23e8002d' stroke-width='2' stroke-dasharray='8%2c 12' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

/* Seamless marquee — container must overflow:hidden, inner div must be 2× wide */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
    width: max-content;
}

/* Mobile nav drawer */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.open {
    max-height: 480px;
}

/* FAQ accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open {
    max-height: 300px;
}
.faq-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}
.faq-icon.rotated {
    transform: rotate(180deg);
}

/* Hero background rectangle — slow float + rotation morph */
@keyframes hero-bg-float {
    0%   { transform: rotate(3deg)  scale(0.95) translate(0,    0   ); opacity: 0.10; }
    30%  { transform: rotate(6deg)  scale(0.97) translate(6px,  -8px); opacity: 0.14; }
    60%  { transform: rotate(0deg)  scale(0.93) translate(-6px,  6px); opacity: 0.08; }
    100% { transform: rotate(3deg)  scale(0.95) translate(0,    0   ); opacity: 0.10; }
}
.hero-bg-float {
    animation: hero-bg-float 9s ease-in-out infinite;
}

/* Live counter pulse dot */
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.4; }
}
.pulse-dot {
    animation: pulse-dot 1.8s ease-in-out infinite;
    display: inline-block;
}

/* Modal entrance animation */
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-animate {
    animation: modal-in 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hide scrollbar on image strips */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* Pricing toggle track */
.toggle-track {
    position: relative;
    display: inline-flex;
    height: 1.5rem;
    width: 3rem;
    cursor: pointer;
    border-radius: 9999px;
    background-color: #dcd9d9;
    transition: background-color 0.2s;
}
.toggle-track.checked {
    background-color: #b90022;
}
.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 9999px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.toggle-track.checked .toggle-thumb {
    transform: translateX(1.5rem);
}

/* India presence section */
.india-map-wrap {
    padding: clamp(0.5rem, 1.5vw, 1rem);
}
/* Real SVG loaded as <img> */
.india-map-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(185, 0, 34, 0.18));
    user-select: none;
    pointer-events: none;
}

@keyframes gc-pin-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
@keyframes gc-pin-ripple {
    0%   { transform: scale(0.45); opacity: 0.45; }
    70%  { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0; }
}

.gc-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    animation: gc-pin-bob 2.4s ease-in-out infinite;
}
.gc-pin-shell {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    background: #b90022;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(185, 0, 34, 0.35);
    position: relative;
    z-index: 2;
}
.gc-pin-shell::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 10px;
    height: 10px;
    background: #b90022;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateX(-50%) rotate(45deg);
}
.gc-pin-shell img {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 9999px;
    object-fit: cover;
}
.gc-pin-ripple {
    position: absolute;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 9999px;
    border: 2px solid rgba(185, 0, 34, 0.36);
    top: 0.1rem;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    animation: gc-pin-ripple 2.4s ease-out infinite;
    z-index: 1;
}
.gc-pin-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #67101d;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(185, 0, 34, 0.28);
    white-space: nowrap;
    backdrop-filter: blur(3px);
}

@media (max-width: 640px) {
    .gc-pin-shell {
        width: 2rem;
        height: 2rem;
    }
    .gc-pin-shell img {
        width: 1.1rem;
        height: 1.1rem;
    }
    .gc-pin-ripple {
        width: 2.3rem;
        height: 2.3rem;
    }
    .gc-pin-label {
        font-size: 0.55rem;
        padding: 0.15rem 0.42rem;
    }
}
