:root {
    --red: #ed1721;
    --blue: #11409e;
    --ink: #111827;
    --muted: #5d6678;
    --line: #e5e9f2;
    --paper: #ffffff;
    --soft: #f5f8ff;
    --cyan: #0ea5e9;
    --green: #16a34a;
    --shadow: 0 22px 70px rgba(17, 64, 158, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

body.nav-open {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 35% 30%, rgba(237, 23, 33, 0.34), transparent 28%),
        radial-gradient(circle at 70% 65%, rgba(14, 165, 233, 0.28), transparent 30%),
        linear-gradient(135deg, #07142f, var(--blue));
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-core {
    position: relative;
    width: min(62vw, 220px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.preloader-core img {
    width: 126px;
    height: 126px;
    object-fit: contain;
    padding: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    animation: emblemPulse 1.8s ease-in-out infinite;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    animation: spinOrbit 3.2s linear infinite;
}

.preloader-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 22px rgba(237, 23, 33, 0.42);
    animation: preloaderIconCounter 3.2s linear infinite;
    z-index: 2;
}

.preloader-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-camera { top: -20px; left: calc(50% - 20px); }
.icon-code { right: -20px; top: calc(50% - 20px); background: var(--blue); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 22px rgba(17, 64, 158, 0.5); }
.icon-network { bottom: -20px; left: calc(50% - 20px); background: var(--red); }
.icon-receipt { left: -20px; top: calc(50% - 20px); background: var(--blue); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 22px rgba(17, 64, 158, 0.5); }

.preloader p {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.top-strip {
    background: var(--blue);
    color: #fff;
    font-size: 0.88rem;
}

.strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.strip-inner span,
.strip-inner a,
.contact-panel a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.strip-inner svg {
    width: 16px;
    height: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(229, 233, 242, 0.7);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand img {
    width: 310px;
    max-height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: #273246;
    transition: 0.25s ease;
}

.main-nav a svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
    background: #eef4ff;
}

.main-nav .nav-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ff5a2f);
    box-shadow: 0 12px 30px rgba(237, 23, 33, 0.24);
}

.main-nav .nav-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.nav-toggle {
    display: none;
    border: 0;
    color: #fff;
    background: var(--blue);
    width: 46px;
    height: 46px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.hero {
    min-height: calc(100vh - 116px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(100deg, rgba(8, 20, 45, 0.86), rgba(17, 64, 158, 0.68), rgba(237, 23, 33, 0.58)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=85") center/cover;
    transform: scale(1.04);
    animation: cinematic 16s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    z-index: -1;
    background: linear-gradient(0deg, #fff, transparent);
}

@keyframes cinematic {
    from { transform: scale(1.04) translateX(0); }
    to { transform: scale(1.1) translateX(-18px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 42px;
    padding: 48px 0 108px;
}

.hero-copy {
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.hero .eyebrow,
.cta-band .eyebrow {
    color: #fff;
}

.hero h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.7rem, 6.2vw, 5.2rem);
    line-height: 1;
    letter-spacing: 0;
}

.page-hero h1 {
    max-width: 900px;
    margin: 14px 0 16px;
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.hero-lead,
.page-hero p {
    max-width: 720px;
    font-size: clamp(1rem, 2vw, 1.28rem);
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ff6540);
    box-shadow: 0 16px 36px rgba(237, 23, 33, 0.28);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.btn-light {
    color: var(--blue);
    background: #fff;
}

.hero-trust {
    margin-top: 26px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-trust span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
}

.national-tech-badges {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.national-tech-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, rgba(237, 23, 33, 0.82), rgba(17, 64, 158, 0.82));
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.national-tech-badges svg {
    width: 16px;
    height: 16px;
}

.hero-panel {
    min-height: 470px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-panel::before {
    content: "";
    position: absolute;
    width: min(90vw, 430px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(17, 64, 158, 0.18) 46%, transparent 68%);
    opacity: 1;
}

.orbit-stage {
    position: relative;
    width: min(88vw, 430px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    transition: transform 0.18s ease;
}

.hub-grid {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 38%),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    mask-image: radial-gradient(circle, #000 0 70%, transparent 78%);
    opacity: 0.72;
    animation: gridDrift 14s linear infinite;
}

.hub-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
}

.ring-outer {
    inset: 8%;
    border-color: rgba(255, 255, 255, 0.28);
    animation: ringPulse 6.5s ease-in-out infinite;
}

.ring-outer span {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 22px rgba(237, 23, 33, 0.62);
    animation: nodeBlink 4.8s ease-in-out infinite;
}

.ring-outer span:nth-child(1) {
    inset: -8px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: meteorOrbit 10s linear infinite;
}

.ring-outer span::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.9;
    mask-image: radial-gradient(circle, transparent 67%, #000 68%, #000 70%, transparent 71%);
}

.ring-outer span::after {
    content: "";
    position: absolute;
    top: -2px;
    left: calc(50% - 7px);
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.ring-outer span:nth-child(1)::before {
    background: conic-gradient(from 312deg, transparent 0deg, rgba(237, 23, 33, 0.28) 18deg, rgba(237, 23, 33, 0.92) 48deg, transparent 50deg);
}

.ring-outer span:nth-child(1)::after {
    background: var(--red);
    box-shadow: 0 0 24px rgba(237, 23, 33, 0.78);
}

.ring-outer span:nth-child(2) {
    inset: -8px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: meteorOrbit 10s linear infinite;
    animation-delay: -7.5s;
}

.ring-outer span:nth-child(2)::before {
    background: conic-gradient(from 312deg, transparent 0deg, rgba(17, 64, 158, 0.3) 18deg, rgba(17, 64, 158, 0.95) 48deg, transparent 50deg);
}

.ring-outer span:nth-child(2)::after {
    background: var(--blue);
    box-shadow: 0 0 24px rgba(17, 64, 158, 0.82);
}

.ring-outer span:nth-child(3) {
    inset: -8px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: meteorOrbit 10s linear infinite;
    animation-delay: -5s;
}

.ring-outer span:nth-child(3)::before {
    background: conic-gradient(from 312deg, transparent 0deg, rgba(237, 23, 33, 0.28) 18deg, rgba(237, 23, 33, 0.92) 48deg, transparent 50deg);
}

.ring-outer span:nth-child(3)::after {
    background: var(--red);
    box-shadow: 0 0 24px rgba(237, 23, 33, 0.78);
}

.ring-outer span:nth-child(4) {
    inset: -8px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: meteorOrbit 10s linear infinite;
    animation-delay: -2.5s;
}

.ring-outer span:nth-child(4)::before {
    background: conic-gradient(from 312deg, transparent 0deg, rgba(17, 64, 158, 0.3) 18deg, rgba(17, 64, 158, 0.95) 48deg, transparent 50deg);
}

.ring-outer span:nth-child(4)::after {
    background: var(--blue);
    box-shadow: 0 0 24px rgba(17, 64, 158, 0.82);
}

.ring-inner {
    inset: 27%;
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow: inset 0 0 28px rgba(17, 64, 158, 0.18);
    animation: hubBreath 5.5s ease-in-out infinite;
}

.hub-connectors {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.connector {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    opacity: 0.76;
    animation: connectorPulse 4.2s ease-in-out infinite;
}

.connector-top,
.connector-bottom {
    left: 50%;
    width: 2px;
    height: 22%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
}

.connector-top { top: 19%; }
.connector-bottom { bottom: 19%; animation-delay: 2.1s; }

.connector-right,
.connector-left {
    top: 50%;
    width: 22%;
    height: 2px;
    transform: translateY(-50%);
}

.connector-right { right: 19%; animation-delay: 1s; }
.connector-left { left: 19%; animation-delay: 3s; }

.tech-hub::after {
    content: "";
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 23, 33, 0.14), rgba(17, 64, 158, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-emblem {
    position: relative;
    width: min(58vw, 230px);
    padding: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    z-index: 4;
    animation: emblemPulse 5.8s ease-in-out infinite, emblemGlow 7s ease-in-out infinite;
    transition: transform 0.25s ease, filter 0.25s ease;
}

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

.hub-node {
    position: absolute;
    z-index: 5;
    min-width: 96px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(8, 20, 45, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 800;
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(8, 20, 45, 0.2);
    white-space: nowrap;
    cursor: default;
    animation: nodeFloat 6s ease-in-out infinite;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hub-node svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.node-cctv {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), #ff5a2f);
}

.node-web {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.node-billing {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    animation-delay: 1.6s;
}

.node-network {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.4s;
}

.hub-node:hover {
    border-color: rgba(255, 255, 255, 0.68);
    background: linear-gradient(135deg, var(--red), var(--blue));
    box-shadow: 0 20px 48px rgba(17, 64, 158, 0.3);
}

.node-cctv:hover {
    transform: translateX(-50%) translateY(-5px);
}

.node-web:hover {
    transform: translateY(-50%) translateX(-5px);
}

.node-billing:hover {
    transform: translateX(-50%) translateY(-5px);
}

.node-network:hover {
    transform: translateY(-50%) translateX(5px);
}

.tech-hub:has(.hub-node:hover)::after {
    opacity: 1;
    transform: scale(1.08);
}

.tech-hub:has(.hub-node:hover) .hero-emblem {
    transform: scale(1.035);
    filter: drop-shadow(0 16px 24px rgba(255, 255, 255, 0.22));
}

.hub-status {
    position: absolute;
    right: 8%;
    bottom: 2%;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    font-size: 0.84rem;
    font-weight: 800;
}

.hub-status svg {
    width: 16px;
    height: 16px;
    color: #4ade80;
}

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

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

@keyframes gridDrift {
    to { background-position: 0 0, 32px 32px, 32px 32px; }
}

@keyframes ringPulse {
    50% { transform: scale(1.018); border-color: rgba(255, 255, 255, 0.46); }
}

@keyframes hubBreath {
    50% { transform: scale(1.035); opacity: 0.72; }
}

@keyframes connectorPulse {
    50% { opacity: 0.28; }
}

@keyframes nodeBlink {
    50% { transform: scale(1.18); filter: brightness(1.28); }
}

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

@keyframes nodeFloat {
    50% { margin-top: -7px; }
}

@keyframes emblemPulse {
    50% { transform: scale(1.035); }
}

@keyframes emblemGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); }
    50% { filter: drop-shadow(0 18px 22px rgba(255, 255, 255, 0.2)); }
}

.section {
    padding: 86px 0;
}

.india-tech-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.96)),
        radial-gradient(circle at 12% 18%, rgba(237, 23, 33, 0.12), transparent 30%),
        radial-gradient(circle at 88% 50%, rgba(17, 64, 158, 0.12), transparent 32%);
}

.india-tech-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.india-tech-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.india-tech-card,
.value-matrix-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(17, 24, 39, 0.08);
}

.india-tech-card {
    min-height: 250px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.india-tech-card svg {
    width: 44px;
    height: 44px;
    color: var(--red);
}

.india-tech-card h3,
.value-matrix-card h3 {
    margin: 18px 0 8px;
    font-size: 1.25rem;
}

.india-tech-card p,
.value-matrix-card p {
    margin: 0;
    color: var(--muted);
}

.section-heading {
    max-width: 770px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.feature-copy h2,
.cta-inner h2,
.contact-panel h2,
.quote-form h2 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
}

.section-heading p,
.feature-copy p,
.contact-panel p,
.site-footer p {
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.testimonial-slider,
.contact-panel,
.quote-form,
.about-card,
.value-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(17, 24, 39, 0.08);
}

.service-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-image {
    min-height: 210px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 24px;
}

.card-body > svg {
    width: 42px;
    height: 42px;
    color: var(--red);
    margin-bottom: 10px;
}

.card-body h3,
.card-body h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.card-body p {
    color: var(--muted);
    margin: 0 0 18px;
}

.card-body a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
}

.card-body ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.card-body li,
.check-list li {
    display: flex;
    gap: 9px;
    margin: 8px 0;
    color: #3f495c;
}

.card-body li svg,
.check-list svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex: 0 0 auto;
    margin-top: 3px;
}

.process-band,
.faq-section,
.values-band {
    background: var(--soft);
}

.business-value-section {
    background: #fff;
}

.value-matrix {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.value-matrix-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
}

.value-matrix-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.value-matrix-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    font-weight: 900;
}

.process-grid,
.faq-grid,
.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.timeline-item {
    padding: 24px;
    border-left: 4px solid var(--red);
    border-radius: 8px;
    background: #fff;
}

.timeline-item span {
    color: var(--blue);
    font-weight: 900;
    font-size: 0.9rem;
}

.timeline-item h3 {
    margin: 8px 0;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
}

.stats-section {
    padding: 58px 0;
    background: linear-gradient(135deg, var(--blue), #0b1024 55%, var(--red));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 24px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
}

.stat-card strong,
.stat-card span {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.stat-card p {
    margin: 8px 0 0;
}

.feature-image {
    min-height: 530px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(17, 64, 158, 0.08), rgba(237, 23, 33, 0.1)),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1000&q=82") center/cover;
    box-shadow: var(--shadow);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.mini-grid span,
.presence-grid span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--blue);
    font-weight: 800;
}

.testimonial-slider {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding: 34px 72px;
    overflow: hidden;
}

.testimonial {
    display: none;
    animation: fadeSlide 0.45s ease both;
}

.testimonial.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial svg {
    color: var(--red);
    width: 40px;
    height: 40px;
}

.testimonial p {
    font-size: 1.24rem;
    color: #293344;
}

.testimonial h3 {
    margin: 14px 0 2px;
}

.testimonial span {
    color: var(--muted);
}

.slider-controls {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
}

.slider-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
}

.cta-band {
    padding: 54px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--blue));
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-inner > div {
    max-width: 780px;
}

.cta-inner h2 {
    color: #fff;
    margin-bottom: 0;
}

.cta-inner .btn {
    justify-self: end;
    white-space: nowrap;
}

.page-hero {
    padding: 88px 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(10, 22, 47, 0.88), rgba(17, 64, 158, 0.72), rgba(237, 23, 33, 0.55)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.services-hero {
    background-image:
        linear-gradient(110deg, rgba(10, 22, 47, 0.88), rgba(17, 64, 158, 0.72), rgba(237, 23, 33, 0.55)),
        url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=85");
}

.about-hero {
    background-image:
        linear-gradient(110deg, rgba(10, 22, 47, 0.88), rgba(17, 64, 158, 0.72), rgba(237, 23, 33, 0.55)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85");
}

.contact-hero {
    background-image:
        linear-gradient(110deg, rgba(10, 22, 47, 0.88), rgba(17, 64, 158, 0.72), rgba(237, 23, 33, 0.55)),
        url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1800&q=85");
}

.page-hero-inner {
    max-width: 920px;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-bar button {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 11px 16px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.filter-bar button.active {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}

.service-card.is-hidden {
    display: none;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    text-align: left;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

.faq-item p {
    max-height: 0;
    margin: 0;
    padding: 0 18px;
    color: var(--muted);
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.active p {
    max-height: 180px;
    padding: 0 18px 18px;
}

.about-card {
    min-height: 420px;
    padding: 38px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(237, 23, 33, 0.12), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.12), transparent 26%),
        #fff;
}

.about-card img {
    width: 220px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.value-card {
    padding: 28px;
}

.value-card svg {
    width: 42px;
    height: 42px;
    color: var(--red);
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.contact-grid {
    align-items: start;
}

.service-detail-section {
    background:
        linear-gradient(180deg, #fff, #f8fbff);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: 34px;
    align-items: start;
}

.service-main-copy,
.service-side-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(17, 24, 39, 0.08);
}

.service-main-copy {
    padding: 34px;
}

.service-main-copy h2 {
    margin: 10px 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.service-main-copy h3 {
    margin: 26px 0 12px;
}

.service-main-copy p {
    color: var(--muted);
}

.service-side-card {
    position: sticky;
    top: 112px;
    padding: 28px;
    display: grid;
    gap: 14px;
}

.service-side-card > svg {
    width: 52px;
    height: 52px;
    color: var(--red);
}

.service-side-card h2 {
    margin: 0;
    font-size: 1.5rem;
}

.service-side-card p {
    margin: 0;
    color: var(--muted);
}

.policy-section {
    background: linear-gradient(180deg, #fff, #f7faff);
}

.policy-content {
    max-width: 900px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(17, 24, 39, 0.08);
}

.policy-content h2 {
    margin: 28px 0 10px;
    color: var(--blue);
    font-size: 1.45rem;
}

.policy-content p {
    color: var(--muted);
}

.policy-content a {
    color: var(--blue);
    font-weight: 800;
}

.contact-panel,
.quote-form {
    padding: 30px;
}

.contact-panel {
    display: grid;
    gap: 14px;
}

.contact-panel svg {
    color: var(--red);
    flex: 0 0 auto;
}

.map-frame {
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.quote-form {
    display: grid;
    gap: 11px;
}

.quote-form label {
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 3px solid rgba(17, 64, 158, 0.15);
    border-color: var(--blue);
}

.form-status {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--blue);
    background: #eef4ff;
    font-weight: 800;
}

.site-footer {
    color: #c9d4ec;
    background: #0c1731;
    padding: 62px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
}

.footer-logo {
    width: 260px;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 16px;
}

.footer-grid h3 {
    color: #fff;
    margin-top: 0;
}

.footer-grid a {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 9px 0;
    color: #dce6ff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-mark {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1fa855;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(31, 168, 85, 0.32);
}

.consent-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 70;
    width: min(440px, calc(100% - 36px));
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(229, 233, 242, 0.9);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.consent-float.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.consent-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--red));
}

.consent-copy h2 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.consent-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.consent-copy a {
    display: inline-flex;
    margin-top: 7px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 800;
}

.consent-actions {
    grid-column: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.consent-btn,
.consent-manage {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.consent-btn {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 8px;
}

.consent-accept {
    color: #fff;
    background: var(--blue);
}

.consent-decline {
    color: var(--ink);
    background: #eef4ff;
}

.consent-manage {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 60;
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(17, 64, 158, 0.24);
}

.consent-manage.is-visible {
    display: grid;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 {
    transition-delay: 0.12s;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 8px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    body.nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-grid,
    .india-tech-grid,
    .process-grid,
    .split-grid,
    .faq-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-side-card {
        position: static;
    }

    .hero-panel {
        min-height: 360px;
    }

    .orbit-stage {
        width: min(84vw, 360px);
    }

    .service-grid,
    .india-tech-cards,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid,
    .value-matrix,
    .presence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .strip-inner {
        justify-content: center;
        gap: 10px;
        padding: 8px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        width: 230px;
    }

    .hero-grid {
        padding: 34px 0 86px;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 4.8rem);
    }

    .page-hero h1 {
        font-size: clamp(2.05rem, 10vw, 3rem);
        line-height: 1.12;
    }

    .section,
    .page-hero {
        padding: 62px 0;
    }

    .service-grid,
    .timeline,
    .stats-grid,
    .value-grid,
    .value-matrix,
    .india-tech-cards,
    .presence-grid,
    .footer-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 340px;
    }

    .testimonial-slider {
        padding: 26px;
    }

    .slider-controls {
        position: static;
        margin-top: 18px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .cta-inner .btn {
        justify-self: start;
        white-space: normal;
    }

    .hub-node {
        font-size: 0.82rem;
        padding: 9px 11px;
        min-width: 84px;
    }

    .hub-status {
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
    }

    .consent-float {
        left: 12px;
        bottom: 84px;
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }

    .consent-icon {
        display: none;
    }

    .consent-actions {
        grid-column: 1;
    }

    .consent-btn {
        flex: 1 1 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
