:root {
    --gt-theme:   #29ABE2;
    --gt-theme-2: #29ABE2;
    --gt-theme-3: #29ABE2;
    --blue: #29ABE2;
    --blue-dim: rgba(41,171,226,0.12);
    --blue-glow: rgba(41,171,226,0.06);
    --gold: #D4A017;
}

body { background: #060606; color: #fff; overflow-x: hidden; }

/* ══════════════════════════════
   HERO — SPLIT LAYOUT
══════════════════════════════ */
.op-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #060606;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}
.op-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.op-hero::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #29ABE2 0%, rgba(41,171,226,0.2) 60%, transparent 100%);
}

/* Left text panel */
.op-hero__inner {
    position: relative; z-index: 2;
    padding: 80px 60px 80px 80px;
}

/* eyebrow label */
.op-hero__eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 36px;
}
.op-hero__eyebrow-line {
    display: block; width: 36px; height: 1px;
    background: #29ABE2; flex-shrink: 0;
}
.op-hero__eyebrow-text {
    font-family: 'Courier New', monospace;
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; color: #29ABE2;
}

/* main title */
.op-hero__title {
    font-size: clamp(52px, 6.5vw, 108px);
    font-weight: 900; line-height: 0.9;
    letter-spacing: -0.045em;
    color: #fff; text-transform: uppercase;
    margin: 0 0 48px;
}
.op-outline {
    display: block;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
    color: transparent;
}

/* stats row */
.op-hero__stats {
    display: flex; align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(255,255,255,0.09);
    padding: 22px 0; margin-bottom: 40px;
}
.op-hero__stat { flex: 1; padding: 0 24px; }
.op-hero__stat:first-child { padding-left: 0; }
.op-hero__stat + .op-hero__stat { border-left: 1px solid rgba(255,255,255,0.09); }
.op-hero__stat-num {
    display: block;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900; color: #fff;
    letter-spacing: -0.04em; line-height: 1;
}
.op-hero__stat-label {
    display: block;
    font-size: 9px; letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28); margin-top: 5px;
}

/* description */
.op-hero__desc {
    font-size: 14px; line-height: 1.8;
    color: rgba(255,255,255,0.38);
    max-width: 460px; margin: 0;
}

/* ── Right side: Radar Visualization ── */
.op-hero__visual {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; padding: 80px 60px;
}

.op-radar {
    position: relative;
    width: 460px; height: 460px;
    flex-shrink: 0;
}

/* Concentric radar rings */
.op-radar__ring {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(41,171,226,0.1);
    transform: translate(-50%, -50%);
}
.op-radar__ring--1 { width: 460px; height: 460px; }
.op-radar__ring--2 { width: 340px; height: 340px; border-style: dashed; border-color: rgba(41,171,226,0.07); }
.op-radar__ring--3 { width: 220px; height: 220px; }
.op-radar__ring--4 { width: 110px; height: 110px; border-color: rgba(41,171,226,0.15); }

/* Cross-hair lines */
.op-radar__cross {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 460px; height: 460px;
}
.op-radar__cross::before,
.op-radar__cross::after {
    content: "";
    position: absolute;
    background: rgba(41,171,226,0.06);
}
.op-radar__cross::before {
    width: 1px; height: 100%;
    left: 50%; top: 0;
}
.op-radar__cross::after {
    height: 1px; width: 100%;
    top: 50%; left: 0;
}

/* Rotating sweep */
.op-radar__sweep {
    position: absolute; top: 50%; left: 50%;
    width: 50%; height: 1px;
    transform-origin: left center;
    background: linear-gradient(to right, rgba(41,171,226,0.55), transparent);
    animation: radar-sweep 5s linear infinite;
}
.op-radar__sweep::before {
    content: "";
    position: absolute;
    top: -60px; left: 0; right: 0; bottom: -60px;
    background: conic-gradient(from 270deg, rgba(41,171,226,0.06) 0deg, transparent 60deg);
    transform-origin: left center;
}
@keyframes radar-sweep {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* HQ — Mumbai center */
.op-radar__hq {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: radial-gradient(circle, rgba(41,171,226,0.25) 0%, rgba(41,171,226,0.06) 60%, transparent 100%);
    border: 1.5px solid rgba(41,171,226,0.6);
    animation: hq-pulse 2s ease-in-out infinite;
}
@keyframes hq-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41,171,226,0.3), 0 0 16px rgba(41,171,226,0.2); }
    50%       { box-shadow: 0 0 0 10px rgba(41,171,226,0), 0 0 28px rgba(41,171,226,0.35); }
}
.op-radar__hq-code {
    font-family: 'Courier New', monospace;
    font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
    color: #29ABE2;
}
.op-radar__hq-name {
    font-size: 6px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(41,171,226,0.6); margin-top: 2px;
}

/* City dots */
.op-radar__city {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 8;
}
.op-radar__city-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(41,171,226,0.65);
    border: 1px solid rgba(41,171,226,0.9);
    position: relative;
    animation: city-blink 3s ease-in-out infinite;
}
.op-radar__city:nth-child(odd) .op-radar__city-dot { animation-delay: -1.2s; }
.op-radar__city:nth-child(3n) .op-radar__city-dot { animation-delay: -2.4s; }
@keyframes city-blink {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; box-shadow: 0 0 8px rgba(41,171,226,0.7); }
}
.op-radar__city-label {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 7.5px; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    top: 50%; transform: translateY(-50%);
    left: 14px;
}
/* Labels on left side cities go to the right, right-side go left */
.op-radar__city--left .op-radar__city-label {
    left: auto; right: 14px; text-align: right;
}

/* City positions (top:%, left:% — origin is 0,0 of .op-radar) */
/* Mumbai HQ = center = 50%, 50% (handled separately) */
.op-radar__city--delhi   { top: 13%;  left: 63%; }
.op-radar__city--punjab  { top: 10%;  left: 38%; }
.op-radar__city--hp      { top: 7%;   left: 52%; }
.op-radar__city--lucknow { top: 22%;  left: 76%; }
.op-radar__city--kolkata { top: 42%;  left: 90%; }
.op-radar__city--indore  { top: 28%;  left: 55%; }
.op-radar__city--rajkot  { top: 31%;  left: 18%; }
.op-radar__city--vadodara{ top: 40%;  left: 22%; }

/* Connector lines (SVG) */
.op-radar__svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: visible;
}
.op-radar__line {
    stroke: rgba(41,171,226,0.15);
    stroke-width: 1;
    stroke-dasharray: 4 6;
    fill: none;
}

/* ══════════════════════════════
   LOCATION GRID
══════════════════════════════ */
.op-grid-section {
    padding: 100px 0 80px;
    background: #060606;
    overflow: hidden;
}
.op-grid-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
}
.op-grid-header {
    margin-bottom: 60px;
    display: flex; align-items: flex-end;
    justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.op-grid-header__label {
    font-size: 11px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--blue);
    font-weight: 700; margin-bottom: 12px;
}
.op-grid-header__title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1.1;
    margin: 0;
}
.op-grid-header__right {
    font-size: 14px; color: #9E9EA3;
    line-height: 1.7; max-width: 340px;
}

/* The grid */
.op-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-left: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.op-location {
    position: relative;
    padding: 44px 36px 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: background 0.35s ease;
    cursor: default;
}
.op-location:hover {
    background: rgba(41,171,226,0.04);
}
.op-location:hover .op-location__num { color: var(--blue); }
.op-location:hover .op-location__bar { width: 100%; }
.op-location:hover .op-location__pulse { opacity: 1; }

/* Top accent bar on hover */
.op-location__bar {
    position: absolute;
    top: 0; left: 0; height: 2px;
    width: 0; background: var(--blue);
    transition: width 0.4s ease;
}

/* Location number */
.op-location__num {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 20px;
    transition: color 0.3s;
}

/* City name */
.op-location__city {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* State */
.op-location__state {
    font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    margin-bottom: 28px;
}

/* Coordinates */
.op-location__coords {
    font-size: 11px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.15);
    font-family: 'Courier New', monospace;
}

/* Pulse indicator */
.op-location__pulse {
    position: absolute;
    bottom: 28px; right: 28px;
    width: 10px; height: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.op-location__pulse::before,
.op-location__pulse::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--blue);
}
.op-location__pulse::after {
    animation: pulse-ring 1.6s ease-out infinite;
    background: transparent;
    border: 1px solid var(--blue);
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Large background letter on hover */
.op-location__bg-letter {
    position: absolute;
    bottom: -20px; right: -10px;
    font-size: 120px; font-weight: 900;
    color: rgba(41,171,226,0.04);
    line-height: 1; pointer-events: none;
    letter-spacing: -0.05em;
    transition: color 0.3s;
}
.op-location:hover .op-location__bg-letter {
    color: rgba(41,171,226,0.07);
}

/* ══════════════════════════════
   PAN-INDIA STRIP (image bg)
══════════════════════════════ */
.op-reach {
    position: relative;
    padding: 120px 80px;
    overflow: hidden;
    background: #0d0d0d;
}
.op-reach__bg {
    position: absolute; inset: 0;
    background: url('assets/img/home-4/who-we-are/wwaThumb1_1.png') center/cover no-repeat;
    opacity: 0.08;
}
.op-reach__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #060606 0%, rgba(6,6,6,0.7) 50%, #060606 100%);
}
.op-reach__inner {
    position: relative; z-index: 1;
    max-width: 780px;
}
.op-reach__label {
    font-size: 11px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--blue);
    font-weight: 700; margin-bottom: 20px;
}
.op-reach__heading {
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 900; color: #fff;
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 28px;
}
.op-reach__heading em {
    font-style: normal; color: var(--blue);
}
.op-reach__text {
    font-size: 17px; line-height: 1.8;
    color: #9E9EA3; margin-bottom: 48px;
}
.op-reach__cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--blue);
    color: #000; font-weight: 700;
    font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    padding: 16px 32px; border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}
.op-reach__cta:hover {
    background: #1a8fc7; color: #000;
    transform: translateY(-2px);
}
/* Deco circles right side */
.op-reach__deco {
    position: absolute; right: 80px; top: 50%;
    transform: translateY(-50%);
    width: 360px; height: 360px;
    pointer-events: none; z-index: 1;
}
.op-reach__deco svg { width: 100%; height: 100%; }

/* ══════════════════════════════
   RESPONSIVE — ALL BREAKPOINTS
══════════════════════════════ */

/* Small desktop / MacBook */
@media (max-width: 1199px) {
    .op-hero__inner { padding: 60px 40px 60px 60px; }
    .op-hero__visual { padding: 60px 40px; }
    .op-radar { width: 380px; height: 380px; }
    .op-radar__ring--1 { width: 380px; height: 380px; }
    .op-radar__ring--2 { width: 280px; height: 280px; }
    .op-radar__ring--3 { width: 180px; height: 180px; }
    .op-radar__ring--4 { width: 90px; height: 90px; }
    .op-radar__cross { width: 380px; height: 380px; }
    .op-grid-inner { padding: 0 40px; }
    .op-reach { padding: 80px 60px; }
    .op-reach__deco { right: 40px; width: 280px; height: 280px; }
}

/* iPad landscape / Tablet */
@media (max-width: 991px) {
    .op-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
    .op-hero__inner { padding: 48px 40px 16px; }
    .op-hero__visual { min-height: auto; padding: 20px 40px 48px; }
    .op-radar { width: 300px; height: 300px; }
    .op-radar__ring--1 { width: 300px; height: 300px; }
    .op-radar__ring--2 { width: 220px; height: 220px; }
    .op-radar__ring--3 { width: 142px; height: 142px; }
    .op-radar__ring--4 { width: 72px; height: 72px; }
    .op-radar__cross { width: 300px; height: 300px; }
    .op-radar__sweep { width: 50%; }
    .op-grid-section { padding: 70px 0 60px; }
    .op-grid-inner { padding: 0 32px; }
    .op-grid-header { margin-bottom: 40px; }
    .op-locations { grid-template-columns: repeat(2, 1fr); }
    .op-location { padding: 36px 28px 32px; }
    .op-reach { padding: 70px 40px; }
    .op-reach__deco { display: none; }
    .op-reach__text { font-size: 15px; }
}

/* iPad portrait / Large mobile */
@media (max-width: 767px) {
    .op-hero { padding-top: 70px; }
    .op-hero__inner { padding: 40px 24px 12px; }
    .op-hero__visual { padding: 16px 24px 40px; }
    .op-hero__stat { padding: 0 14px; }
    .op-hero__stat:first-child { padding-left: 0; }
    .op-hero__desc { font-size: 13px; }
    .op-radar { width: 260px; height: 260px; overflow: hidden; }
    .op-radar__ring--1 { width: 260px; height: 260px; }
    .op-radar__ring--2 { width: 192px; height: 192px; }
    .op-radar__ring--3 { width: 124px; height: 124px; }
    .op-radar__ring--4 { width: 62px; height: 62px; }
    .op-radar__cross { width: 260px; height: 260px; }
    .op-radar__hq { width: 46px; height: 46px; }
    .op-radar__hq-code { font-size: 8px; }
    .op-radar__hq-name { display: none; }
    .op-radar__city-label { display: none; }
    .op-grid-section { padding: 56px 0 48px; }
    .op-grid-inner { padding: 0 20px; }
    .op-grid-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
    .op-grid-header__right { max-width: 100%; font-size: 13px; }
    .op-locations { grid-template-columns: repeat(2, 1fr); }
    .op-location { padding: 28px 20px 24px; }
    .op-location__city { font-size: 20px; }
    .op-reach { padding: 56px 24px; }
    .op-reach__inner { max-width: 100%; }
    .op-reach__text { font-size: 14px; margin-bottom: 32px; }
    .op-reach__cta { padding: 14px 24px; font-size: 12px; }
}

/* Mobile portrait */
@media (max-width: 575px) {
    .op-hero { padding-top: 65px; }
    .op-hero__inner { padding: 32px 20px 10px; }
    .op-hero__visual { padding: 12px 20px 36px; }
    .op-hero__title { margin-bottom: 24px; }
    .op-hero__stats { padding: 14px 0; margin-bottom: 22px; }
    .op-hero__stat-num { font-size: 28px; }
    .op-hero__stat { padding: 0 10px; }
    .op-hero__desc { font-size: 12.5px; }
    .op-radar { width: 220px; height: 220px; overflow: hidden; }
    .op-radar__ring--1 { width: 220px; height: 220px; }
    .op-radar__ring--2 { width: 162px; height: 162px; }
    .op-radar__ring--3 { width: 105px; height: 105px; }
    .op-radar__ring--4 { width: 52px; height: 52px; }
    .op-radar__cross { width: 220px; height: 220px; }
    .op-radar__hq { width: 40px; height: 40px; }
    .op-radar__hq-code { font-size: 7px; }
    .op-locations { grid-template-columns: 1fr; }
    .op-location { padding: 24px 20px 20px; }
    .op-reach { padding: 48px 20px; }
}

/* HQ location card overrides */
.op-location--hq { background: rgba(41,171,226,0.04); }
.op-location--hq .op-location__bar { width: 100%; background: linear-gradient(to right, var(--blue), rgba(41,171,226,0.2)); }
.op-location--hq .op-location__num { color: var(--blue); }
.op-location--hq .op-location__pulse { opacity: 1; }
.op-location--hq .op-location__bg-letter { color: rgba(41,171,226,0.07); }

/* Overseas locations grid */
.op-locations--overseas { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
.op-grid-header--overseas { margin-top: 60px; }
