 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --black: #000000;
     --black2: #0a0a0a;
     --black3: #111111;
     --black4: #1a1a1a;
     --orange: #e85d04;
     --orange2: #f97316;
     --orange-glow: rgba(232, 93, 4, 0.15);
     --blue: #0e6fff;
     --green: #1d8a4e;
     --white: #ffffff;
     --off-white: #f0f0f0;
     --muted: #888888;
     --muted2: #555555;
     --border: rgba(255, 255, 255, 0.08);
     --border-orange: rgba(232, 93, 4, 0.3);
     /* About page content-specific vars */
     --text-primary: #111827;
     --text-secondary: #374151;
     --text-muted: #6b7280;
     --section-alt: #f4f6fb;
     --border-light: rgba(0, 0, 0, 0.08);
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     background: var(--black);
     color: var(--white);
     overflow-x: hidden;
     line-height: 1.6;
 }

 ::-webkit-scrollbar {
     width: 4px;
 }

 ::-webkit-scrollbar-track {
     background: var(--black);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--orange);
     border-radius: 4px;
 }


 /* ══ TOP BAR ══ */
 .topbar {
     background: var(--orange);
     border-bottom: 1px solid var(--border);
     padding: 8px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 28px;
 }
.location {
    font-size: 13px;
    font-family: 'Roboto Flex', system-ui, sans-serif;
    font-weight: 600;
}
 .topbar a {
     color: #fff;
     font-size: 0.72rem;
     text-decoration: none;
     font-weight: 500;
     letter-spacing: 0.04em;
     transition: color 0.2s;
 }

 .topbar a:hover {
     color: var(--white);
 }


 /* ══ NAV ══ */
 nav {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: #fff;
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     padding: 0 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 80px !important;
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     flex-shrink: 0;
 }

 .logo-svg {
     height: 38px;
     width: auto;
 }

 .logo-text {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
 }

 .nav-logo img {
     width: 150px;
 }

 .logo-text .lt {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--white);
     letter-spacing: -0.01em;
 }

 .logo-text .lb {
     font-size: 0.6rem;
     font-weight: 500;
     color: var(--orange2);
     letter-spacing: 0.18em;
     text-transform: uppercase;
 }

 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
 }

 .nav-links a {
     color: #374151;
     font-size: 15px;
     font-weight: 500;
     text-decoration: none;
     letter-spacing: 0.01em;
     transition: color 0.2s;
     padding: 4px 0;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--orange);
     transition: width 0.25s;
 }

 .nav-links a:hover {
     color: var(--orange);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-cta {
     background: var(--orange);
     color: var(--white);
     padding: 9px 20px;
     border-radius: 4px;
     font-size: 0.82rem;
     font-weight: 700;
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: background 0.2s, transform 0.15s;
     white-space: nowrap;
 }

 .nav-cta:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 /* ══ HAMBURGER ══ */
 .hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     background: none;
     border: none;
     cursor: pointer;
     gap: 5px;
     padding: 4px;
     z-index: 1100;
     background-color: var(--orange);
 }

 .hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--white);
     border-radius: 2px;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     transform-origin: center;
 }

 .hamburger.open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
 }

 .hamburger.open span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
 }

 .hamburger.open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
 }

 /* ══ DRAWER OVERLAY ══ */
 .drawer-overlay {
     position: fixed;
     inset: 0;
     z-index: 1050;
     background: rgba(0, 0, 0, 0.55);
     backdrop-filter: blur(4px);
     opacity: 0;
     transition: opacity 0.3s;
     pointer-events: none;
     visibility: hidden;
 }

 .drawer-overlay.open {
     opacity: 1;
     pointer-events: all;
     visibility: visible;
 }

 /* ══ MOBILE DRAWER ══ */
 .mobile-drawer {
     position: fixed;
     top: 0;
     left: 0;
     bottom: 0;
     width: 100%;
     max-width: 320px;
     z-index: 1100;
     background: #ffffff;
     transform: translateX(-100%);
     transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
     display: flex;
     flex-direction: column;
     overflow-y: auto;
     box-shadow: 8px 0 40px rgba(0, 0, 0, 0.25);
 }

 .mobile-drawer.open {
     transform: translateX(0);
 }

 /* Drawer top logo bar */
 .drawer-header {
     padding: 18px 20px 14px;
     border-bottom: 1px solid #eeeeee;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #ffffff;
     flex-shrink: 0;
 }

 .drawer-logo {
     display: flex;
     align-items: center;
     gap: 9px;
     text-decoration: none;
 }

 .drawer-logo-text .dlt {
     font-size: 0.92rem;
     font-weight: 700;
     color: #111111;
     display: block;
     line-height: 1.2;
 }

 .drawer-logo-text .dlb {
     font-size: 0.5rem;
     font-weight: 600;
     color: var(--orange);
     letter-spacing: 0.15em;
     text-transform: uppercase;
     display: block;
 }

 .drawer-close {
     width: 30px;
     height: 30px;
     background: #f3f4f6;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #444;
     transition: background 0.15s, color 0.15s;
     flex-shrink: 0;
 }

 .drawer-close:hover {
     background: #e5e7eb;
     color: #111;
 }

 /* Nav list */
 .drawer-nav {
     flex: 1;
     padding: 8px 0 4px;
 }

 .drawer-nav-item {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 14px 20px;
     text-decoration: none;
     color: #1a1a1a;
     font-size: 1rem;
     font-weight: 500;
     font-family: 'Roboto Flex', system-ui, sans-serif;
     border-left: 3px solid transparent;
     transition: background 0.15s, color 0.15s, border-color 0.15s;
     position: relative;
 }

 /* Active = blue highlight like screenshot */
 .drawer-nav-item.active {
     color: #2563eb;
     background: rgba(37, 99, 235, 0.06);
     border-left-color: #2563eb;
     font-weight: 600;
 }

 .drawer-nav-item:not(.active):hover {
     background: #f9fafb;
     color: var(--orange);
     border-left-color: var(--orange);
 }

 /* Icon box */
 .dni-icon {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     background: #f3f4f6;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: #555;
     transition: background 0.15s, color 0.15s;
 }

 .drawer-nav-item.active .dni-icon {
     background: rgba(37, 99, 235, 0.1);
     color: #2563eb;
 }

 .drawer-nav-item:not(.active):hover .dni-icon {
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
 }

 .drawer-divider {
     height: 1px;
     background: #f0f0f0;
     margin: 4px 20px;
 }

 /* Orange CTA button — full width like screenshot */
 .drawer-cta {
     margin: 16px 16px 32px;
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 16px 24px;
     border-radius: 10px;
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 1rem;
     font-weight: 700;
     text-decoration: none;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: background 0.2s, transform 0.15s;
     box-shadow: 0 4px 16px rgba(232, 93, 4, 0.3);
     letter-spacing: 0.01em;
     flex-shrink: 0;
 }

 .drawer-cta:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 @media (max-width: 960px) {
     .nav-links {
         display: none;
     }

     .nav-cta {
         display: none;
     }

     .hamburger {
         display: flex;
     }
 }


 .hero {
     background: var(--black);
     min-height: 88vh;
     display: flex;
     align-items: center;
     padding: 80px 5% 60px;
     position: relative;
     overflow: hidden;
 }

 /* Amdocs-style gradient sweep bottom */
 .hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 340px;
     background: radial-gradient(ellipse 90% 60% at 70% 110%,
             rgba(232, 93, 4, 0.22) 0%,
             rgba(249, 115, 22, 0.1) 35%,
             transparent 70%);
     pointer-events: none;
 }

 .hero-inner {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     width: 100%;
 }

 .hero-eyebrow {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--orange2);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .hero h1 {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 46px;
     line-height: 1.05;
     font-weight: 800;
     letter-spacing: -0.02em;
     margin-bottom: 24px;
 }

 .hero h1 .accent {
     color: var(--orange2);
 }

 .hero-sub {
     font-size: 1rem;
     color: var(--muted);
     line-height: 1.8;
     max-width: 520px;
     margin-bottom: 40px;
 }

 .hero-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 60px;
 }

 .btn-fill {
     background: var(--orange);
     color: #fff;
     padding: 13px 28px;
     border-radius: 4px;
     font-size: 0.875rem;
     font-weight: 700;
     text-decoration: none;
     letter-spacing: 0.02em;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 24px rgba(232, 93, 4, 0.3);
 }

 .btn-fill:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .btn-fill svg {
     transition: transform 0.2s;
 }

 .btn-fill:hover svg {
     transform: translateX(4px);
 }

 .btn-outline {
     border: 1px solid rgba(255, 255, 255, 0.25);
     color: var(--white);
     padding: 13px 28px;
     border-radius: 4px;
     font-size: 0.875rem;
     font-weight: 600;
     text-decoration: none;
     letter-spacing: 0.02em;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .btn-outline:hover {
     border-color: var(--orange);
     color: var(--orange2);
 }

 /* Hero stats */
 .hero-stats {
     display: flex;
     gap: 40px;
 }

 .hstat-num {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 2.4rem;
     color: var(--white);
     line-height: 1;
 }

 .hstat-num sup {
     font-size: 1.2rem;
     color: var(--orange);
 }

 .hstat-label {
     font-size: 0.75rem;
     color: var(--muted);
     letter-spacing: 0.08em;
     margin-top: 4px;
 }

 /* Hero visual side */
 .hero-visual {
     display: flex;
     flex-direction: column;
     gap: 16px;
     position: relative;
 }

 /* Trusted partners ticker */
 .trusted-bar {
     background: var(--black3);
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     padding: 16px 5%;
     overflow: hidden;
     position: relative;
 }

 .trusted-label {
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--muted2);
     margin-bottom: 14px;
 }

 .ticker-track {
     display: flex;
     gap: 60px;
     align-items: center;
     animation: ticker 25s linear infinite;
     white-space: nowrap;
 }

 .ticker-item {
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: var(--muted);
     text-transform: uppercase;
     flex-shrink: 0;
 }

 .ticker-item span {
     color: var(--orange);
     margin-right: 6px;
 }

 @keyframes ticker {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* ══ SECTION BASE ══ */
 section {
     padding: 96px 5%;
 }

 .s-label {
     display: inline-block;
     font-size: .7rem;
     font-weight: 600;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--orange2);
     background: rgba(232, 84, 26, .1);
     border: 1px solid rgba(232, 84, 26, .25);
     padding: .3rem .8rem;
     border-radius: 2px;
     margin-bottom: 1.2rem;
 }

 .s-label::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .s-title {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: clamp(2rem, 3.5vw, 3rem);
     font-weight: 700;
     line-height: 1.1;
     letter-spacing: -0.02em;
     margin-bottom: 16px;
     color: #000;
 }

 .s-title em {
     font-style: normal;
     color: var(--orange2);
 }

 .s-sub {
     font-size: 0.95rem;
     color: var(--muted);
     line-height: 1.8;
     max-width: 600px;
 }

 /* ══ SPOTLIGHT (like Amdocs) ══ */
 .spotlight {
     background: #fff;
 }

 .spotlight-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: 48px;
 }

 .spot-card {
     position: relative;
     overflow: hidden;
     background: var(--black3);
     cursor: pointer;
 }

 .spot-card:hover .spot-img {
     transform: scale(1.04);
 }

 .spot-img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.5s ease;
     font-size: 5rem;
     background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
 }

 .spot-img.africa-bg {
     background: linear-gradient(135deg, #0a1628 0%, #0e2444 50%, #081020 100%);
 }

 .spot-img img {
     height: 300px;
     width: 100%;
     object-fit: cover;
 }

 .spot-img.global-bg {
     background: linear-gradient(135deg, #1a0a00 0%, #2d1200 50%, #180800 100%);
 }

 .spot-body {
     padding: 28px 32px;
 }

 .spot-tags {
     display: flex;
     gap: 8px;
     margin-bottom: 12px;
     flex-wrap: wrap;
 }

 .spot-tag {
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     padding: 3px 10px;
     border-radius: 2px;
     background: rgba(232, 93, 4, 0.15);
     color: var(--orange2);
     border: 1px solid rgba(232, 93, 4, 0.3);
 }

 .spot-type {
     font-size: 0.68rem;
     color: var(--muted);
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
 }

 .spot-card h3 {
     font-size: 1.25rem;
     font-weight: 700;
     line-height: 1.35;
     margin-top: 8px;
     margin-bottom: 12px;
 }

 .spot-card p {
     font-size: 0.85rem;
     color: var(--muted);
     line-height: 1.7;
 }

 /* ══ ABOUT ══ */
 .about {
     background: #f4f4f4;
 }

 .about h2.s-title {
     color: #000;
 }
.apoint-text {
    color: #000;
}

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 64px;
 }

 /* Africa globe visual */
 .globe-wrap {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .globe-circle {
     border-radius: 10px;
     background: radial-gradient(circle at 40% 35%,
             rgba(232, 93, 4, 0.18) 0%, rgba(0, 0, 0, 0.9) 65%);
     border: 1px solid rgba(232, 93, 4, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 /*.globe-circle::before {*/
 /*    content: '';*/
 /*    position: absolute;*/
 /*    inset: -3px;*/
 /*    border-radius: 50%;*/
 /*    background: conic-gradient(from 0deg, transparent, rgba(232, 93, 4, 0.4), transparent 30%);*/
 /*    animation: rotateConic 6s linear infinite;*/
 /*    opacity: 0.5;*/
 /*}*/

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

 .globe-svg {
     width: 72%;
     height: 72%;
     position: relative;
     z-index: 1;
 }

 .globe-ring {
     position: absolute;
     border-radius: 50%;
     border: 1px solid;
     pointer-events: none;
 }

 .gr1 {
     width: 440px;
     height: 440px;
     border-color: rgba(232, 93, 4, 0.1);
 }

 .gr2 {
     width: 490px;
     height: 490px;
     border-color: rgba(255, 255, 255, 0.04);
     animation: rotateConic 12s linear infinite reverse;
     border: 1px dashed rgba(232, 93, 4, 0.08);
 }

 .about-text .s-sub {
     max-width: 100%;
 }

 .about-points {
     margin-top: 40px;
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .apoint {
     display: flex;
     gap: 20px;
     padding: 20px 0;
     border-bottom: 1px solid var(--border);
     align-items: flex-start;
 }

 .apoint:first-child {
     border-top: 1px solid var(--border);
 }

 .apoint-num {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 1.6rem;
     color: var(--orange);
     line-height: 1;
     flex-shrink: 0;
     width: 36px;
     padding-top: 2px;
 }

 .apoint-text h4 {
     font-size: 0.95rem;
     font-weight: 700;
     margin-bottom: 4px;
 }

 .apoint-text p {
     font-size: 0.82rem;
     color: var(--muted);
     line-height: 1.65;
 }

 /* ══ SERVICES ══ */
 .services {
     background: #fff;
 }

 .services-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 56px;
     gap: 40px;
     flex-wrap: wrap;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     background: var(--border);
     border: 1px solid var(--border);
 }

 .svc-card {
     background: var(--off-white);
     padding: 36px 32px;
     position: relative;
     overflow: hidden;
     transition: background 0.3s;
     border-bottom: 4px solid var(--orange);
 }

 .svc-card:hover::after {
     width: 100%;
 }

 .svc-icon {
     width: 48px;
     height: 48px;
     border-radius: 10px;
     background: rgba(232, 93, 4, 0.1);
     border: 1px solid rgba(232, 93, 4, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     margin-bottom: 24px;
 }

 .svc-card h3 {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 12px;
     line-height: 1.3;
     color: #000;
 }

 .svc-card p {
     font-size: 0.82rem;
     color: var(--muted);
     line-height: 1.7;
 }

 .svc-arrow {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     margin-top: 20px;
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--orange);
     text-decoration: none;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     transition: gap 0.2s;
 }

 .svc-arrow:hover {
     gap: 10px;
 }

 /* ══ BRANDS (What we represent) ══ */
 .brands {
     background: var(--black2);
 }

 .brands h2.s-title {
     color: #fff;
 }

 .brands-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-top: 56px;
 }

 .brand-card {
     background: var(--black3);
     border: 1px solid var(--border);
     border-radius: 8px;
     padding: 32px 24px;
     text-align: center;
     transition: border-color 0.3s, transform 0.3s;
 }

 .brand-card:hover {
     border-color: var(--orange);
     transform: translateY(-4px);
 }

 .brand-icon {
     font-size: 2.4rem;
     margin-bottom: 16px;
 }

 .brand-card h4 {
     font-size: 0.95rem;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .brand-card p {
     font-size: 0.78rem;
     color: var(--muted);
     line-height: 1.6;
 }

 /* ══ EDGE (Why us) ══ */
 .edge {
     background: #fff;
 }

 .edge-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-top: 56px;
 }

 .edge-item {
     padding: 28px 32px;
     border-bottom: 4px solid var(--orange);
     border-radius: 6px;
     background: var(--off-white);
     display: flex;
     gap: 20px;
     align-items: flex-start;
     transition: border-color 0.3s;
 }

 .edge-item:hover {
     border-color: rgba(232, 93, 4, 0.4);
 }

 .edge-check {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(232, 93, 4, 0.15);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     margin-top: 2px;
 }

 .edge-item h4 {
     font-size: 0.95rem;
     font-weight: 700;
     margin-bottom: 8px;
     color: var(--orange);
 }

 .edge-item p {
     font-size: 0.82rem;
     color: var(--muted);
     line-height: 1.65;
 }

 /* ══ INSIGHTS CAROUSEL ══ */
 .insights {
     background: var(--black2);
     overflow: hidden;
 }

 .insights h2.s-title {
     color: #fff;
 }

 .insights-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 32px;
     gap: 20px;
     flex-wrap: wrap;
 }

 .see-all {
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--orange2);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 6px;
     border-bottom: 1px solid rgba(232, 93, 4, 0.4);
     padding-bottom: 2px;
     transition: color 0.2s;
     white-space: nowrap;
 }

 .see-all:hover {
     color: var(--orange);
 }

 /* Arrow controls row */
 .carousel-controls {
     display: flex;
     gap: 8px;
     margin-bottom: 28px;
 }

 .carousel-btn {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1px solid rgba(255, 255, 255, 0.18);
     background: rgba(255, 255, 255, 0.06);
     color: var(--white);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
     flex-shrink: 0;
 }

 .carousel-btn:hover {
     background: var(--orange);
     border-color: var(--orange);
 }

 .carousel-btn:disabled {
     opacity: 0.25;
     cursor: default;
 }

 .carousel-btn svg {
     pointer-events: none;
 }

 /* Carousel viewport */
 .carousel-viewport {
     overflow: hidden;
     /* Fade-out right edge */
     -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
     mask-image: linear-gradient(to right, black 80%, transparent 100%);
 }

 .carousel-track {
     display: flex;
     gap: 20px;
     transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
     will-change: transform;
 }

 .ins-card {
     background: var(--black);
     border: 1px solid var(--border);
     border-radius: 6px;
     overflow: hidden;
     transition: transform 0.3s, border-color 0.3s;
     cursor: pointer;
     flex: 0 0 calc(27% - 10px);
     min-width: 300px;
 }

 .ins-card:hover {
     transform: translateY(-5px);
     border-color: rgba(232, 93, 4, 0.35);
 }

 .ins-img {
     height: 170px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
 }

 .ins-img-1 {
     background: linear-gradient(135deg, #0a1a2a, #102840);
 }

 .ins-img-2 {
     background: linear-gradient(135deg, #1a0a00, #2a1000);
 }

 .ins-img-3 {
     background: linear-gradient(135deg, #001a0a, #002a12);
 }

 .ins-img-4 {
     background: linear-gradient(135deg, #150a1a, #220d28);
 }

 .ins-img-5 {
     background: linear-gradient(135deg, #0a1500, #141f00);
 }

 .ins-img-6 {
     background: linear-gradient(135deg, #1a0a10, #280d18);
 }

 .ins-body {
     padding: 20px 22px;
 }

 .ins-tag {
     font-size: 0.63rem;
     font-weight: 700;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--orange2);
     margin-bottom: 10px;
 }

 .ins-card h3 {
     font-size: 0.88rem;
     font-weight: 700;
     line-height: 1.45;
     margin-bottom: 10px;
 }

 .ins-card p {
     font-size: 0.77rem;
     color: var(--muted);
     line-height: 1.65;
 }

 .ins-date {
     font-size: 0.68rem;
     color: var(--muted2);
     margin-top: 14px;
 }

 .home-cta.cta-band {
     background: var(--orange);
     padding: 64px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
 }

 /* ══ CTA BAND ══ */
 .cta-band {
     background: var(--orange);
     padding: 64px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
 }

 .cta-band h2 {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: clamp(1.6rem, 3vw, 2.4rem);
     line-height: 1.2;
     color: #fff;
     max-width: 600px;
 }

 .btn-white {
     background: #fff;
     color: var(--orange);
     padding: 14px 32px;
     border-radius: 4px;
     font-size: 0.875rem;
     font-weight: 800;
     text-decoration: none;
     letter-spacing: 0.02em;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .btn-white:hover {
     background: var(--off-white);
     transform: translateY(-2px);
 }

 /* ══ CONTACT ══ */
 .contact {
     background: var(--off-white);
 }

 .contact .form-group label {
     color: #1E2A3A;
 }

 .s-title {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     line-height: 46px;
     letter-spacing: -0.02em;
     color: #000;
     font-size: 44px;
     font-weight: 800;
     margin-bottom: 1rem;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.3fr;
     gap: 80px;
     margin-top: 64px;
     align-items: start;
 }

 .contact-detail {
     margin-bottom: 28px;
     display: flex;
     gap: 16px;
 }

 .cd-icon {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     flex-shrink: 0;
     background: rgba(232, 93, 4, 0.1);
     border: 1px solid rgba(232, 93, 4, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
 }

 .cd-label {
     font-size: 0.7rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--muted);
     margin-bottom: 2px;
 }

 .cd-val {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--orange);
 }

 .social-row {
     display: flex;
     gap: 10px;
     margin-top: 36px;
 }

 .soc-btn {
     width: 38px;
     height: 38px;
     border-radius: 6px;
     background: var(--orange);
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.2s;
 }

 .soc-btn:hover {
     background: var(--orange2);
     color: #fff;
     border-color: var(--orange2);
 }

 /* Form */
 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .fg-full {
     grid-column: 1 / -1;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .form-group label {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: #1E2A3A;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     background: var(--white);
     border: 1.5px solid #d8e1ed;
     border-radius: 4px;
     color: var(--muted);
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 0.88rem;
     padding: .85rem 1rem;
     outline: none;
     transition: border-color 0.2s;
     -webkit-appearance: none;
     appearance: none;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     border-color: var(--orange);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 110px;
 }

 .form-group select option {
     background: #111;
 }

 .btn-send {
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 13px 36px;
     border-radius: 4px;
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.04em;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
 }

 .btn-send:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 /* ══ FOOTER ══ */
 footer {
     background: var(--black3);
     border-top: 1px solid var(--border);
     padding: 60px 5% 32px;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 48px;
 }

 .footer-brand p {
     font-size: 0.82rem;
     color: var(--muted);
     line-height: 1.7;
     margin-top: 16px;
     max-width: 260px;
 }

 .footer-col h5 {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 20px;
 }

 .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .footer-col ul a {
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-col ul a:hover {
     color: var(--white);
 }

 .footer-bottom {
     border-top: 1px solid var(--border);
     padding-top: 24px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 12px;
 }

 .footer-copy {
     font-size: 0.75rem;
     color: var(--muted2);
 }

 .footer-copy span {
     color: var(--orange2);
 }
 body.homepage .reveal{
    opacity:1 !important;
}


 /* ══ SCROLL REVEAL ══ */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ══ HERO GLOBE (right side visual) ══ */
 .hero-globe-wrap {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     min-height: 380px;
 }

 .hero-globe {
     width: 320px;
     height: 320px;
     border-radius: 50%;
     background: radial-gradient(circle at 38% 32%,
             rgba(232, 93, 4, 0.25) 0%,
             rgba(14, 111, 255, 0.1) 40%,
             rgba(0, 0, 0, 0.95) 70%);
     border: 1px solid rgba(232, 93, 4, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .hero-globe::before {
     content: '';
     position: absolute;
     inset: -2px;
     border-radius: 50%;
     background: conic-gradient(from 0deg, transparent 0%, rgba(232, 93, 4, 0.5) 20%, transparent 40%);
     animation: rotateConic 5s linear infinite;
     opacity: 0.3;
 }

 .hero-globe svg {
     width: 72%;
     height: 72%;
     position: relative;
     z-index: 1;
 }

 .hg-ring {
     position: absolute;
     border-radius: 50%;
 }

 .hgr1 {
     width: 360px;
     height: 360px;
     border: 1px solid rgba(232, 93, 4, 0.1);
 }

 .hgr2 {
     width: 420px;
     height: 420px;
     border: 1px dashed rgba(255, 255, 255, 0.04);
 }

 /* Floating stat cards */
 .float-card {
     position: absolute;
     background: rgba(0, 0, 0, 0.85);
     border: 1px solid rgba(232, 93, 4, 0.3);
     border-radius: 8px;
     padding: 12px 18px;
     backdrop-filter: blur(12px);
     animation: floatUD 4s ease-in-out infinite alternate;
 }

 .float-card:nth-child(2) {
     animation-delay: -2s;
 }

 .fc-num {
     font-size: 1.4rem;
     font-weight: 800;
     color: var(--orange);
     line-height: 1;
 }

 .fc-label {
     font-size: 0.65rem;
     color: var(--muted);
     margin-top: 2px;
 }

 .fc-top {
     top: 40px;
     right: 0;
 }

 .fc-bot {
     bottom: 60px;
     left: 0;
 }

 @keyframes floatUD {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-10px);
     }
 }

 /* ══ RESPONSIVE ══ */
 @media (max-width: 960px) {
     .nav-links {
         display: none;
     }

     .hero-inner {
         grid-template-columns: 1fr;
     }

     .hero-globe-wrap {
         display: none;
     }

     .about-grid,
     .contact-grid {
         grid-template-columns: 1fr !important;
         gap: 40px;
     }
	 .s-title{
		 font-size: 40px !important;
	 }

     .spotlight-grid {
         grid-template-columns: 1fr;
     }

     .services-grid {
         grid-template-columns: 1fr 1fr;
     }

     .brands-grid {
         grid-template-columns: 1fr 1fr;
     }

     .edge-grid {
         grid-template-columns: 1fr;
     }

     .insights-grid {
         grid-template-columns: 1fr 1fr;
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
         gap: 32px;
     }
 }

 @media (max-width: 600px) {
     section {
         padding: 64px 5%;
     }

     .services-grid,
     .insights-grid,
     .brands-grid {
         grid-template-columns: 1fr;
     }

     .form-grid {
         grid-template-columns: 1fr;
     }

     .hero-stats {
         flex-direction: column;
         gap: 20px;
     }
 }

 /******************/
 /* ─── HERO ────────────────────────────────────── */
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     padding: 0 6vw;
 }

 /* Background gradient orbs */
 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     z-index: 0;
     background:
         radial-gradient(ellipse 60% 55% at 70% 50%, rgba(21, 102, 232, 0.13) 0%, transparent 70%),
         radial-gradient(ellipse 45% 40% at 20% 60%, rgba(26, 140, 72, 0.10) 0%, transparent 65%),
         radial-gradient(ellipse 30% 30% at 80% 85%, rgba(200, 151, 58, 0.09) 0%, transparent 60%),
         radial-gradient(ellipse 20% 25% at 5% 10%, rgba(77, 159, 255, 0.07) 0%, transparent 55%);
 }

 /* Diagonal grid lines */
 .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     z-index: 0;
     pointer-events: none;
     background-image:
         linear-gradient(105deg, rgba(200, 151, 58, 0.05) 1px, transparent 1px),
         linear-gradient(15deg, rgba(200, 151, 58, 0.03) 1px, transparent 1px);
     background-size: 80px 80px;
 }

 .hero-inner {
     position: relative;
     z-index: 1;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
     align-items: center;
     min-height: 100vh;
     padding: 100px 0 60px;
 }

 /* ─── LEFT COLUMN ─────────────────────────────── */
 .hero-left {
     padding-right: 3vw;
     animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.72rem;
     font-weight: 500;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 28px;
     animation: fadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .hero-eyebrow::after {
     content: '';
     display: block;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--gold2);
     box-shadow: 0 0 8px var(--orange);
     animation: pulse-dot 2s infinite;
 }

 h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(3.5rem, 6vw, 6.5rem);
     line-height: 0.94;
     letter-spacing: 0.01em;
     color: var(--paper);
     margin-bottom: 28px;
     animation: fadeUp 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 h1 .accent {
     color: transparent;
     display: block;
 }

 h1 .accent2 {
     display: block;
     background: linear-gradient(90deg, var(--blue2), var(--gold2));
     -webkit-background-clip: text;
     background-clip: text;
 }

 .hero-sub {
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.75;
     color: var(--muted);
     max-width: 480px;
     margin-bottom: 40px;
     animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 /* ─── BUTTONS ─────────────────────────────────── */
 .hero-btns {
     display: flex;
     align-items: center;
     gap: 18px;
     margin-bottom: 52px;
     animation: fadeUp 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .btn-fill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     /*background: var(--orange);*/
     color: var(--bg);
     text-decoration: none;
     font-weight: 600;
     font-size: 0.88rem;
     letter-spacing: 0.04em;
     padding: 14px 28px;
     border-radius: 4px;
     position: relative;
     overflow: hidden;
     transition: transform 0.25s, box-shadow 0.25s;
     box-shadow: 0 0 0 0 rgba(200, 151, 58, 0.4);
 }

 .btn-fill::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, var(--gold2), var(--orange));
     opacity: 0;
     transition: opacity 0.3s;
 }

 .btn-fill:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(200, 151, 58, 0.35);
 }

 .btn-fill:hover::before {
     opacity: 1;
 }

 .btn-fill svg,
 .btn-fill span {
     position: relative;
     z-index: 1;
 }

 .btn-fill svg {
     transition: transform 0.3s;
 }

 .btn-fill:hover svg {
     transform: translateX(4px);
 }

 .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border: 1px solid rgba(240, 236, 227, 0.2);
     color: var(--paper);
     text-decoration: none;
     font-weight: 400;
     font-size: 0.88rem;
     letter-spacing: 0.04em;
     padding: 14px 28px;
     border-radius: 4px;
     transition: border-color 0.25s, background 0.25s;
 }

 .btn-outline:hover {
     border-color: rgba(240, 236, 227, 0.55);
     background: rgba(240, 236, 227, 0.05);
 }

 /* ─── STATS ───────────────────────────────────── */
 .hero-stats {
     display: flex;
     gap: 0;
     animation: fadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .hero-stats>div {
     padding: 0 32px 0 0;
     margin-right: 32px;
     border-right: 1px solid rgba(200, 151, 58, 0.2);
 }

 .hero-stats>div:last-child {
     border-right: none;
 }

 .hstat-num {
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 2.8rem;
     line-height: 1;
     color: var(--paper);
     letter-spacing: 0.02em;
     font-weight: 700;
 }

 .hstat-num sup {
     font-family: 'DM Sans', sans-serif;
     font-size: 30px;
     vertical-align: super;
     color: var(--orange);
 }

 .hstat-label {
     font-size: 0.72rem;
     font-weight: 400;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted);
     margin-top: 4px;
 }

 /* ─── RIGHT COLUMN / VISUAL ───────────────────── */
 .hero-globe-wrap {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: fadeIn 1.4s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
     height: 540px;
 }

 .visual-scene {
     position: relative;
     width: 440px;
     height: 440px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Spinning orbit rings */
 .vring {
     position: absolute;
     border-radius: 50%;
     border: 1px solid transparent;
     pointer-events: none;
 }

 .vring-1 {
     width: 440px;
     height: 440px;
     border-color: rgba(200, 151, 58, 0.18);
     border-style: dashed;
     animation: spinSlow 25s linear infinite;
 }

 .vring-1::before,
 .vring-1::after {
     content: '';
     position: absolute;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     top: 50%;
     left: -5px;
     transform: translateY(-50%);
     background: var(--orange);
     box-shadow: 0 0 12px var(--orange), 0 0 24px var(--orange);
 }

 .vring-1::after {
     left: auto;
     right: -5px;
     background: var(--blue2);
     box-shadow: 0 0 12px var(--blue2);
 }

 .vring-2 {
     width: 500px;
     height: 500px;
     border-color: rgba(77, 159, 255, 0.09);
     animation: spinSlow 45s linear infinite reverse;
 }

 .vring-2::before {
     content: '';
     position: absolute;
     width: 7px;
     height: 7px;
     border-radius: 50%;
     top: -4px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--green2);
     box-shadow: 0 0 10px var(--green2);
 }

 .vring-3 {
     width: 560px;
     height: 560px;
     border-color: rgba(200, 151, 58, 0.05);
     animation: spinSlow 70s linear infinite;
 }

 /* Main vis card */
 /*.vis-card {*/
 /*    position: relative;*/
 /*    width: 450px;*/
 /*    height: 400px;*/
 /*    border-radius: 20px;*/
 /*    overflow: hidden;*/
 /*    border: 1px solid rgba(200, 151, 58, 0.22);*/
 /*    box-shadow:*/
 /*        0 0 0 1px rgba(255, 255, 255, 0.03),*/
 /*        0 0 60px rgba(21, 102, 232, 0.18),*/
 /*        0 0 100px rgba(26, 140, 72, 0.12),*/
 /*        0 32px 80px rgba(0, 0, 0, 0.6);*/
 /*    animation: floatGlobe 7s ease-in-out infinite;*/
 /*}*/

 /*#vizCanvas {*/
 /*    display: block;*/
 /*    width: 400px;*/
 /*    height: 400px;*/
 /*}*/

 /*.vis-label {*/
 /*    position: absolute;*/
 /*    top: 14px;*/
 /*    left: 14px;*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    gap: 7px;*/
 /*    background: rgba(0, 0, 0, 0.45);*/
 /*    backdrop-filter: blur(10px);*/
 /*    border: 1px solid rgba(46, 199, 106, 0.25);*/
 /*    border-radius: 20px;*/
 /*    padding: 5px 12px;*/
 /*    font-size: 0.68rem;*/
 /*    font-weight: 500;*/
 /*    letter-spacing: 0.1em;*/
 /*    text-transform: uppercase;*/
 /*    color: var(--green2);*/
 /*}*/

 /*.vis-label-dot {*/
 /*    width: 6px;*/
 /*    height: 6px;*/
 /*    border-radius: 50%;*/
 /*    background: var(--green2);*/
 /*    box-shadow: 0 0 8px var(--green2);*/
 /*    animation: pulse-dot 1.5s infinite;*/
 /*}*/

 /* ─── FLOAT CARDS ─────────────────────────────── */
 .float-card {
     position: absolute;
     background: rgba(8, 14, 26, 0.82);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(200, 151, 58, 0.22);
     border-radius: 14px;
     padding: 14px 20px;
     min-width: 130px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
     z-index: 10;
 }

 .fc-top {
     top: 130px;
     right: -100px;
     animation: floatCard1 5s ease-in-out infinite;
 }

 .fc-bot {
     bottom: 60px;
     left: -80px;
     animation: floatCard2 5.5s ease-in-out infinite;
 }

 .fc-side {
     top: 80%;
     right: -80px;
     transform: translateY(-50%);
     animation: floatCard1 6.5s ease-in-out infinite reverse;
 }

 .fc-icon {
     font-size: 1.1rem;
     margin-bottom: 4px;
 }

 .fc-num {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 2rem;
     color: var(--gold2);
     line-height: 1;
     letter-spacing: 0.03em;
 }

 .fc-label {
     font-size: 0.65rem;
     font-weight: 400;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted);
     margin-top: 4px;
 }

 .fc-dot {
     display: inline-block;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--green2);
     box-shadow: 0 0 8px var(--green2);
     margin-right: 6px;
     vertical-align: middle;
     animation: pulse-dot 2s infinite;
 }
.location br {
    display: none;
}
.top-links {
    display: flex;
    gap: 28px;
}
 @media(max-width: 768px) {
	 .service-flex {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr !important;
}
	 .hero-map img{
		 width: 350px !important;
		 height: 350px !important;
	 }
	 .hero-left{
		 padding-right: 0 !important;
	 }
	 .about-grid .about-text{
		 padding: 40px 10px !important;
	 }
	 .hero {
        flex-direction: column; /* agar flex use ho raha hai */
    }

    .hero-left {
        width: 100%;
    }
	 .hero-map iframe {
    margin-left: -25px;
    width: 350px;
    height: 350px;
}
     .location br {
    display: block !important;
}
     .location {
    font-size: 14px;
    text-align: center;
}
.topbar{
    display: block;
}
	 .top-links{
		 gap:10px;
		 justify-content:center;
	 }
     .topbar {
         justify-content: center;
     }

     .hero-stats>div {
         padding: 0;
         margin-right: 0;
         border-right: none;
     }

     a.drawer-logo img {
         width: 150px;
     }

     .hero {
         padding: 10px;
     }

     .fc-side {
         right: 30px;
     }

     .fc-top {
         right: 30px;
     }

     .fc-bot {
         left: 0px;
     }

     .hero h1 {
         font-size: 28px;
     }
 }

 /* ─── SCROLL INDICATOR ────────────────────────── */
 .scroll-hint {
     position: absolute;
     bottom: 36px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     color: var(--muted);
     font-size: 0.68rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     animation: fadeIn 2s 1s both;
 }

 .scroll-hint-line {
     width: 1px;
     height: 50px;
     background: linear-gradient(to bottom, rgba(200, 151, 58, 0.6), transparent);
     animation: scrollLine 2s ease-in-out infinite;
 }

 /* ─── DECORATIVE CORNER MARKS ─────────────────── */
 .corner-mark {
     position: absolute;
     width: 40px;
     height: 40px;
     z-index: 2;
 }

 .corner-mark.tl {
     top: 24px;
     left: 24px;
     border-top: 1px solid rgba(200, 151, 58, 0.4);
     border-left: 1px solid rgba(200, 151, 58, 0.4);
 }

 .corner-mark.tr {
     top: 24px;
     right: 24px;
     border-top: 1px solid rgba(200, 151, 58, 0.4);
     border-right: 1px solid rgba(200, 151, 58, 0.4);
 }

 .corner-mark.bl {
     bottom: 24px;
     left: 24px;
     border-bottom: 1px solid rgba(200, 151, 58, 0.4);
     border-left: 1px solid rgba(200, 151, 58, 0.4);
 }

 .corner-mark.br {
     bottom: 24px;
     right: 24px;
     border-bottom: 1px solid rgba(200, 151, 58, 0.4);
     border-right: 1px solid rgba(200, 151, 58, 0.4);
 }

 /* ─── TICKER ──────────────────────────────────── */
 .hero-ticker {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 44px;
     background: rgba(200, 151, 58, 0.08);
     border-top: 1px solid rgba(200, 151, 58, 0.15);
     display: flex;
     align-items: center;
     overflow: hidden;
     z-index: 10;
 }

 .ticker-track {
     display: flex;
     gap: 0;
     animation: ticker 28s linear infinite;
     white-space: nowrap;
 }

 .ticker-item {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.72rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--orange);
     padding: 0 40px;
 }

 .ticker-item::before {
     content: '◆';
     font-size: 0.5rem;
     opacity: 0.6;
 }

 /* ─── ANIMATED SIGNAL LINES (background) ─────── */
 .signal-lines {
     position: absolute;
     inset: 0;
     z-index: 0;
     overflow: hidden;
     pointer-events: none;
 }

 .signal-line {
     position: absolute;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(21, 102, 232, 0.5), transparent);
     animation: signalMove 4s ease-in-out infinite;
     opacity: 0;
 }

 .signal-line:nth-child(1) {
     top: 22%;
     width: 40%;
     left: 0;
     animation-delay: 0s;
 }

 .signal-line:nth-child(2) {
     top: 45%;
     width: 30%;
     left: 10%;
     animation-delay: 1.2s;
 }

 .signal-line:nth-child(3) {
     top: 68%;
     width: 50%;
     left: 5%;
     animation-delay: 2.4s;
 }

 .signal-line:nth-child(4) {
     top: 33%;
     width: 25%;
     right: 5%;
     left: auto;
     background: linear-gradient(90deg, transparent, rgba(200, 151, 58, 0.4), transparent);
     animation-delay: 0.8s;
 }

 .signal-line:nth-child(5) {
     top: 75%;
     width: 35%;
     right: 0;
     left: auto;
     animation-delay: 2s;
 }

 /* ─── ANIMATIONS ──────────────────────────────── */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes spinSlow {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 @keyframes floatGlobe {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-14px);
     }
 }

 @keyframes floatCard1 {

     0%,
     100% {
         transform: translateY(0px) rotate(-1deg);
     }

     50% {
         transform: translateY(-10px) rotate(1deg);
     }
 }

 @keyframes floatCard2 {

     0%,
     100% {
         transform: translateY(0px) rotate(1deg);
     }

     50% {
         transform: translateY(-8px) rotate(-1deg);
     }
 }

 @keyframes scrollLine {
     0% {
         transform: scaleY(0);
         transform-origin: top;
     }

     50% {
         transform: scaleY(1);
         transform-origin: top;
     }

     51% {
         transform: scaleY(1);
         transform-origin: bottom;
     }

     100% {
         transform: scaleY(0);
         transform-origin: bottom;
     }
 }

 @keyframes ticker {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 @keyframes signalMove {
     0% {
         opacity: 0;
         transform: translateX(-100px);
     }

     20% {
         opacity: 1;
     }

     80% {
         opacity: 1;
     }

     100% {
         opacity: 0;
         transform: translateX(200px);
     }
 }

 @keyframes pulse-dot {

     0%,
     100% {
         box-shadow: 0 0 6px var(--orange);
         opacity: 1;
     }

     50% {
         box-shadow: 0 0 14px var(--gold2);
         opacity: 0.6;
     }
 }

 /* ─── RESPONSIVE ──────────────────────────────── */
 @media (max-width: 900px) {
     .hero-inner {
         grid-template-columns: 1fr;
         text-align: center;
         padding: 120px 0 80px;
         gap: 60px;
		 margin: auto !important;
     }

     .hero-eyebrow {
         margin: 0 auto 28px;
     }

     .hero-sub {
         margin: 0 auto 40px;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-stats {
         justify-content: center;
     }

     .hero-globe-wrap {
         margin: 0 auto;
     }

     h1 {
         font-size: clamp(3rem, 12vw, 5rem);
     }
 }

 /* ------------------------------- About page --------------------------- */
 /* ══ PAGE HERO ══ */
 .page-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 80px 5% 72px;
     position: relative;
     overflow: hidden;
 }

 .page-hero::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .page-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 24px;
     letter-spacing: 0.04em;
 }

 .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .breadcrumb a:hover {
     color: var(--orange2);
 }

 .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .page-hero-inner {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .ph-eyebrow {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .ph-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .page-hero h1 {
     font-size: 50px;
     font-weight: 800;
     line-height: 1.08;
     letter-spacing: -0.02em;
     color: #ffffff;
     margin-bottom: 20px;
 }

 .page-hero h1 em {
     font-style: normal;
     color: var(--orange2);
 }

 .page-hero p {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.62);
     line-height: 1.8;
     max-width: 480px;
 }

 /* Hero right — stats strip */
 .ph-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     overflow: hidden;
 }

 .ph-stat {
     padding: 28px 24px;
     background: rgba(255, 255, 255, 0.03);
     transition: background 0.2s;
 }

 .ph-stat:hover {
     background: rgba(232, 93, 4, 0.08);
 }

 .ph-stat-num {
     font-size: 2.6rem;
     font-weight: 700;
     color: #fff;
     line-height: 1;
     letter-spacing: -0.02em;
 }

 .ph-stat-num span {
     color: var(--orange);
 }

 .ph-stat-label {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-top: 6px;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     font-weight: 600;
 }

 /* ══ TAB NAV ══ */
 .tab-nav-wrap {
     background: #ffffff;
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
     position: sticky;
     top: 68px;
     z-index: 900;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .tab-nav {
     display: flex;
     gap: 40px;
     overflow-x: auto;
     padding: 0 5%;
     scrollbar-width: none;
     justify-content: center;
 }

 .tab-nav::-webkit-scrollbar {
     display: none;
 }

 .tab-btn {
     padding: 18px 28px;
     border: none;
     background: none;
     font-family: 'Roboto Flex', system-ui, sans-serif;
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--text-muted);
     cursor: pointer;
     white-space: nowrap;
     border-bottom: 2px solid transparent;
     transition: color 0.2s, border-color 0.2s;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }

 .tab-btn:hover {
     color: var(--orange);
 }

 .tab-btn.active {
     color: var(--orange);
     border-bottom-color: var(--orange);
 }

 /* ══ SECTION SHARED ══ */
 section {
     padding: 88px 5%;
 }

 .s-label {
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 12px;
     align-items: center;
     gap: 8px;
 }

 .s-label::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .s-title {
     font-size: clamp(1.9rem, 3.2vw, 2.8rem);
     font-weight: 800;
     line-height: 1.12;
     letter-spacing: -0.02em;
     color: var(--text-primary);
     margin-bottom: 16px;
 }

 .s-title em {
     font-style: normal;
     color: var(--orange);
 }

 .s-sub {
     font-size: 0.97rem;
     color: var(--text-muted);
     line-height: 1.85;
     max-width: 640px;
 }

 /* ══ WHO WE ARE ══ */
 .who-we-are {
     background: #f4f4f4;
 }

 .wwa-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 56px;
 }

 .wwa-visual {
     position: relative;
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 /* Primary image block */
 .wwa-img-main {
     width: 100%;
     border-radius: 12px;
     background: linear-gradient(135deg, #1a2744 0%, #0e1f3d 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .wwa-img-main::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(232, 93, 4, 0.18) 0%, transparent 70%);
 }

 .wwa-img-main .map-svg {
     width: 72%;
     position: relative;
     z-index: 1;
     opacity: 0.9;
 }

 /* Secondary row */
 .wwa-img-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .wwa-img-sm {
     border-radius: 10px;
     padding: 24px 20px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .wwa-img-sm.blue {
     background: linear-gradient(135deg, #eff6ff, #dbeafe);
 }

 .wwa-img-sm.green {
     background: linear-gradient(135deg, #f0fdf4, #d1fae5);
 }

 .wwa-img-sm .sm-icon {
     font-size: 1.8rem;
     margin-bottom: 4px;
 }

 .wwa-img-sm h4 {
     font-size: 0.88rem;
     font-weight: 700;
     color: var(--text-primary);
 }

 .wwa-img-sm p {
     font-size: 0.75rem;
     color: var(--text-muted);
     line-height: 1.5;
 }

 /* Floating badge */
 .wwa-badge {
     position: absolute;
     bottom: 96px;
     right: -20px;
     background: #ffffff;
     border: 1px solid rgba(232, 93, 4, 0.2);
     border-radius: 10px;
     padding: 14px 18px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .wwa-badge-icon {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     background: rgba(232, 93, 4, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     flex-shrink: 0;
 }

 .wwa-badge strong {
     font-size: 1.2rem;
     font-weight: 800;
     color: var(--text-primary);
     display: block;
     line-height: 1;
 }

 .wwa-badge span {
     font-size: 0.7rem;
     color: var(--text-muted);
 }

 .wwa-text p {
     font-size: 0.97rem;
     color: var(--text-muted);
     line-height: 1.85;
     margin-bottom: 20px;
 }

 .wwa-text p:last-of-type {
     margin-bottom: 10px;
 }

 .wwa-pillars {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .wwa-pillar {
     display: flex;
     gap: 18px;
     padding: 18px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     align-items: flex-start;
 }

 .wwa-pillar:first-child {
     border-top: 1px solid rgba(0, 0, 0, 0.06);
 }

 .pillar-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--orange);
     flex-shrink: 0;
     margin-top: 6px;
     box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
 }

 .wwa-pillar h4 {
     font-size: 0.92rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 3px;
 }

 .wwa-pillar p {
     font-size: 0.8rem;
     color: var(--text-muted);
     line-height: 1.6;
     margin: 0;
 }

 /* ══ STATS BAND ══ */
 .stats-band {
     background: var(--text-primary);
     padding: 56px 5%;
 }

 .stats-inner {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: rgba(255, 255, 255, 0.08);
 }

 .stat-cell {
     padding: 36px 28px;
     background: rgba(255, 255, 255, 0.02);
     text-align: center;
     transition: background 0.2s;
 }

 .stat-cell:hover {
     background: rgba(232, 93, 4, 0.08);
 }

 .stat-num {
     font-size: 3rem;
     font-weight: 700;
     color: #ffffff;
     line-height: 1;
     letter-spacing: -0.02em;
 }

 .stat-num sup {
     font-size: 1.5rem;
     color: var(--orange);
 }

 .stat-desc {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.45);
     margin-top: 10px;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     font-weight: 600;
 }

 .stat-sub {
     font-size: 0.7rem;
     color: rgba(255, 255, 255, 0.28);
     margin-top: 4px;
 }

 /* ══ OUR STORY ══ */
 .our-story {
     background: var(--section-alt);
 }

 .story-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
     margin-top: 56px;
 }

 .story-text h3 {
     font-size: 1.35rem;
     font-weight: 700;
     color: var(--text-primary);
     line-height: 1.3;
     margin-bottom: 16px;
 }

 .story-text p {
     font-size: 0.95rem;
     color: var(--text-muted);
     line-height: 1.85;
     margin-bottom: 20px;
 }

 .story-text p:last-child {
     margin-bottom: 0;
 }

 /* Timeline */
 .timeline {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .tl-item {
     display: flex;
     gap: 24px;
     padding: 28px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.07);
     position: relative;
 }

 .tl-item:first-child {
     padding-top: 0;
 }

 .tl-left {
     flex-shrink: 0;
     width: 100px;
     display: flex;
     flex-direction: row-reverse;
     gap: 10px;
     justify-content: flex-end;
     margin-top: 10px;
 }

 .tl-year {
     font-size: 0.75rem;
     font-weight: 800;
     color: var(--orange);
     letter-spacing: 0.06em;
     display: block;
     line-height: 1;
 }

 .tl-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--orange);
     box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
 }

 .tl-right h4 {
     font-size: 0.95rem;
     font-weight: 700;
     margin-bottom: 6px;
     color: var(--text-primary);
 }

 .tl-right p {
     font-size: 0.82rem;
     color: var(--text-muted);
     line-height: 1.65;
 }

 /* ══ OUR VALUES ══ */
 .values {
     background: #ffffff;
 }

 .values-header {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: end;
     margin-bottom: 56px;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .val-card {
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 12px;
     padding: 32px 28px;
     transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
 }

 .val-card:hover {
     border-color: rgba(232, 93, 4, 0.3);
     transform: translateY(-4px);
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
 }

 .val-icon {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     background: rgba(232, 93, 4, 0.08);
     border: 1px solid rgba(232, 93, 4, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     margin-bottom: 20px;
 }

 .val-card h3 {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .val-card p {
     font-size: 0.82rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* ══ STRATEGIC PARTNERS ══ */
 .partners {
     background: var(--section-alt);
 }

 .partners-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 48px;
     gap: 40px;
     flex-wrap: wrap;
 }

 .partners-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .partner-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     padding: 36px 28px;
     display: flex;
     flex-direction: column;
     gap: 16px;
     transition: border-color 0.3s, box-shadow 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     text-align: center;
     justify-content: center;
 }
 .partner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

 .partner-card:hover {
     border-color: rgba(232, 93, 4, 0.25);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
 }

 .partner-logo-wrap {
     width: 56px;
     height: 56px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
 }

 .partner-logo-wrap.blue {
     background: #eff6ff;
 }

 .partner-logo-wrap.green {
     background: #f0fdf4;
 }

 .partner-logo-wrap.purple {
     background: #f5f3ff;
 }

 .partner-card h3 {
     font-size: 1.05rem;
     font-weight: 700;
     color: #fff;
 }

 .partner-card .partner-type {
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--orange);
 }

 .partner-card p {
     font-size: 0.82rem;
     color: var(--text-muted);
     line-height: 1.7;
     flex: 1;
 }

 .partner-tag-row {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     margin-top: 4px;
 }

 .ptag {
     font-size: 0.65rem;
     font-weight: 600;
     padding: 3px 10px;
     border-radius: 20px;
     background: rgba(232, 93, 4, 0.08);
     color: var(--orange);
     border: 1px solid rgba(232, 93, 4, 0.15);
 }

 /* ══ MARKETS ══ */
 .markets {
     background: #ffffff;
 }

 .markets-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin-top: 48px;
 }

 .market-card {
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 10px;
     padding: 22px 18px;
     text-align: center;
     transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
 }

 .market-card:hover {
     border-color: rgba(232, 93, 4, 0.3);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
 }

 .market-flag {
     font-size: 2rem;
     margin-bottom: 10px;
     color: var(--orange);
     font-weight: 800;
     font-family: 'Roboto Flex', system-ui, sans-serif;
 }

 .market-card h4 {
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .market-card p {
     font-size: 0.72rem;
     color: var(--text-muted);
 }

 .market-dot {
     display: inline-block;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--green);
     margin-right: 4px;
     margin-bottom: 1px;
     vertical-align: middle;
 }

 /* ══ MISSION / VISION ══ */
 .mission {
     background: var(--section-alt);
 }

 .mv-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     margin-top: 48px;
 }

 .mv-card {
     background: #ffffff;
     border-radius: 12px;
     padding: 36px 28px;
     border: 1px solid rgba(0, 0, 0, 0.07);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     position: relative;
     overflow: hidden;
 }

 .mv-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
 }

 .mv-card.orange::before {
     background: var(--orange);
 }

 .mv-card.blue::before {
     background: var(--blue);
 }

 .mv-card.green::before {
     background: var(--green);
 }

 .mv-num {
     font-size: 4rem;
     font-weight: 900;
     color: rgba(0, 0, 0, 0.04);
     position: absolute;
     top: 12px;
     right: 20px;
     line-height: 1;
     font-style: normal;
 }

 .mv-icon {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 1.5rem;
 }

 .mv-card.orange .mv-icon {
     background: rgba(232, 93, 4, 0.08);
 }

 .mv-card.blue .mv-icon {
     background: rgba(14, 111, 255, 0.08);
 }

 .mv-card.green .mv-icon {
     background: rgba(29, 138, 78, 0.08);
 }

 .mv-card h3 {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 12px;
 }

 .mv-card p {
     font-size: 0.85rem;
     color: var(--text-muted);
     line-height: 1.75;
 }

 /* ══ CTA BAND ══ */
 .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 80px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }


 .cta-band h2 em {
     font-style: normal;
     color: var(--orange2);
 }

 .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .btn-orange {
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .btn-orange:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .btn-ghost {
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .btn-ghost:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* ══ SCROLL REVEAL ══ */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ══ RESPONSIVE ══ */
 @media (max-width: 960px) {
     .page-hero-inner {
         grid-template-columns: 1fr;
     }

     .ph-stats {
         grid-template-columns: repeat(4, 1fr);
     }

     .wwa-grid,
     .story-grid {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .wwa-badge {
         display: none;
     }

     .values-header {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .values-grid {
         grid-template-columns: 1fr 1fr;
     }

     .partners-grid {
         grid-template-columns: 1fr 1fr;
     }

     .markets-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .mv-grid {
         grid-template-columns: 1fr 1fr;
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
         gap: 32px;
     }
 }

 @media (max-width: 600px) {
     section {
         padding: 60px 5%;
     }

     .ph-stats {
         grid-template-columns: 1fr 1fr;
     }

     .stats-inner {
         grid-template-columns: 1fr 1fr;
     }

     .values-grid,
     .partners-grid,
     .mv-grid {
         grid-template-columns: 1fr;
     }

     .markets-grid {
         grid-template-columns: 1fr 1fr;
     }

     .tab-btn {
         padding: 14px 18px;
         font-size: 0.72rem;
     }
 }


 /* ------------------- CONTACT US --------------------- */
 /* ══ PAGE HERO ══ */
 .page-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 80px 5% 72px;
     position: relative;
     overflow: hidden;
 }

 .page-hero::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .page-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 24px;
     letter-spacing: 0.04em;
     position: relative;
     z-index: 1;
 }

 .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .breadcrumb a:hover {
     color: var(--orange2);
 }

 .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .page-hero-inner {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .ph-eyebrow {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .ph-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .page-hero h1 {
     font-size: 50;
     font-weight: 800;
     line-height: 1.08;
     letter-spacing: -0.02em;
     color: #ffffff;
     margin-bottom: 20px;
 }

 .page-hero h1 em {
     font-style: normal;
     color: var(--orange2);
 }

 .page-hero p {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.62);
     line-height: 1.8;
     max-width: 480px;
 }

 /* Hero right — quick contact tiles */
 .hero-tiles {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     overflow: hidden;
 }

 .hero-tile {
     padding: 28px 24px;
     background: rgba(255, 255, 255, 0.03);
     transition: background 0.2s;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .hero-tile:hover {
     background: rgba(232, 93, 4, 0.08);
 }

 .ht-icon {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     background: rgba(232, 93, 4, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange2);
 }

 .ht-label {
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: rgba(255, 255, 255, 0.4);
 }

 .ht-val {
     font-size: 0.88rem;
     font-weight: 600;
     color: #fff;
     line-height: 1.35;
 }

 /* ══ SECTION SHARED ══ */
 section {
     padding: 88px 5%;
 }

 .s-label {
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 12px;
     align-items: center;
     gap: 8px;
 }

 .s-label::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .s-title {
     font-size: 44px;
     font-weight: 800;
     line-height: 1.12;
     letter-spacing: -0.02em;
     color: var(--text-primary);
     margin-bottom: 16px;
 }

 .s-title em {
     font-style: normal;
     color: var(--orange);
 }

 .s-sub {
     font-size: 0.97rem;
     color: var(--text-muted);
     line-height: 1.85;
     max-width: 640px;
 }

 /* ══ MAIN CONTACT SECTION ══ */
 .contact-main {
     background: #ffffff;
     padding-top: 72px;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.35fr;
     gap: 80px;
     margin-top: 56px;
     align-items: start;
 }

 /* Left column */
 .contact-info-block {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .contact-detail {
     display: flex;
     gap: 16px;
     padding: 20px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     align-items: flex-start;
 }

 .contact-detail:first-child {
     padding-top: 0;
 }

 .cd-icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     flex-shrink: 0;
     background: rgba(232, 93, 4, 0.08);
     border: 1px solid rgba(232, 93, 4, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
 }

 .cd-label {
     font-size: 0.68rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--text-muted);
     margin-bottom: 3px;
 }

 .cd-val {
     font-size: 0.92rem;
     font-weight: 600;
     color: var(--text-primary);
     line-height: 1.4;
 }

 .cd-sub {
     font-size: 0.78rem;
     color: var(--text-muted);
     margin-top: 2px;
 }

 /* Office hours */
 .hours-card {
     background: var(--section-alt);
     border-radius: 12px;
     padding: 24px;
     margin-top: 28px;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .hours-card h4 {
     font-size: 0.78rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--text-muted);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .hours-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 8px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     font-size: 0.82rem;
 }

 .hours-row:last-child {
     border-bottom: none;
 }

 .hours-row .day {
     color: var(--text-secondary);
     font-weight: 500;
 }

 .hours-row .time {
     color: var(--text-primary);
     font-weight: 600;
 }

 .hours-row .time.closed {
     color: var(--text-muted);
     font-weight: 400;
 }

 .online-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(29, 138, 78, 0.1);
     border: 1px solid rgba(29, 138, 78, 0.2);
     color: var(--green);
     border-radius: 20px;
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     padding: 4px 12px;
     margin-top: 16px;
 }

 .online-badge::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--green);
     animation: pulse-dot 1.5s ease-in-out infinite;
 }

 @keyframes pulse-dot {

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

     50% {
         opacity: 0.5;
         transform: scale(0.8);
     }
 }

 /* Social */
 .social-label {
     font-size: 0.68rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--text-muted);
     margin-top: 28px;
     margin-bottom: 14px;
 }

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

 .soc-btn {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
     text-decoration: none;
     transition: all 0.2s;
 }

 .soc-btn:hover {
     background: var(--orange);
     color: #fff;
     border-color: var(--orange);
     transform: translateY(-2px);
 }

 /* Right column — form card */
 .form-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 16px;
     padding: 40px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
 }

 .form-card-head {
     margin-bottom: 32px;
 }

 .form-card-head h3 {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 6px;
 }

 .form-card-head p {
     font-size: 0.85rem;
     color: var(--text-muted);
     line-height: 1.6;
 }

 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .fg-full {
     grid-column: 1 / -1;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .form-group label {
     font-size: 0.72rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--text-muted);
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.12);
     border-radius: 6px;
     color: var(--text-primary);
     font-family: 'Roboto', sans-serif;
     font-size: 0.88rem;
     padding: 12px 15px;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
     -webkit-appearance: none;
     appearance: none;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     border-color: var(--orange);
     box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .form-group select {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 14px center;
     padding-right: 36px;
 }

 .form-group select option {
     background: #fff;
     color: #111;
 }

 .consent-row {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-top: 4px;
 }

 .consent-row input[type="checkbox"] {
     width: 16px;
     height: 16px;
     flex-shrink: 0;
     margin-top: 2px;
     accent-color: var(--orange);
     cursor: pointer;
     background: var(--section-alt);
     padding: 0;
 }

 .consent-row label {
     font-size: 0.78rem;
     color: var(--text-muted);
     line-height: 1.6;
     text-transform: none;
     letter-spacing: 0;
     font-weight: 400;
     cursor: pointer;
 }

 .consent-row label a {
     color: var(--orange);
     text-decoration: none;
 }

 .consent-row label a:hover {
     text-decoration: underline;
 }

 .btn-send {
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 14px 40px;
     border-radius: 6px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.9rem;
     font-weight: 700;
     letter-spacing: 0.04em;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 12px;
     transition: all 0.2s;
     box-shadow: 0 4px 16px rgba(232, 93, 4, 0.25);
 }

 .btn-send:hover {
     background: var(--orange2);
     transform: translateY(-2px);
     box-shadow: 0 6px 24px rgba(232, 93, 4, 0.35);
 }

 .btn-send svg {
     transition: transform 0.2s;
 }

 .btn-send:hover svg {
     transform: translateX(4px);
 }

 /* Form success state */
 .form-success {
     display: none;
     text-align: center;
     padding: 48px 24px;
 }

 .form-success.show {
     display: block;
 }

 .form-success-icon {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: rgba(29, 138, 78, 0.1);
     border: 2px solid rgba(29, 138, 78, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: var(--green);
 }

 .form-success h3 {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 8px;
 }

 .form-success p {
     font-size: 0.88rem;
     color: var(--text-muted);
     max-width: 340px;
     margin: 0 auto;
     line-height: 1.7;
 }

 /* ══ OFFICES ══ */
 .offices {
     background: var(--section-alt);
 }

 .offices-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 48px;
 }

 .office-card {
     background: #ffffff;
     border-radius: 12px;
     padding: 32px 28px;
     border: 1px solid rgba(0, 0, 0, 0.07);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
     position: relative;
     overflow: hidden;
 }

 .office-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
 }

 .office-card.primary::before {
     background: var(--orange);
 }

 .office-card.secondary::before {
     background: var(--blue);
 }

 .office-card.tertiary::before {
     background: var(--green);
 }

 .office-card:hover {
     border-color: rgba(232, 93, 4, 0.2);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
     transform: translateY(-4px);
 }

 .office-flag {
     font-size: 2.2rem;
     margin-bottom: 16px;
 }

 .office-badge {
     display: inline-flex;
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 3px 10px;
     border-radius: 20px;
     margin-bottom: 12px;
 }

 .office-badge.hq {
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
     border: 1px solid rgba(232, 93, 4, 0.2);
 }

 .office-badge.regional {
     background: rgba(14, 111, 255, 0.1);
     color: var(--blue);
     border: 1px solid rgba(14, 111, 255, 0.2);
 }

 .office-badge.partner {
     background: rgba(29, 138, 78, 0.1);
     color: var(--green);
     border: 1px solid rgba(29, 138, 78, 0.2);
 }

 .office-card h3 {
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .office-card .country {
     font-size: 0.78rem;
     color: var(--text-muted);
     margin-bottom: 20px;
 }

 .office-detail-row {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 12px;
     font-size: 0.8rem;
 }

 .office-detail-row svg {
     flex-shrink: 0;
     color: var(--orange);
     margin-top: 1px;
 }

 .office-detail-row span {
     color: var(--text-secondary);
     line-height: 1.5;
 }

 /* ══ FAQ ══ */
 .faq {
     background: #ffffff;
 }

 .faq-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px 40px;
     margin-top: 48px;
 }

 .faq-item {
     padding: 10px 28px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     background: var(--section-alt);
     transition: border-color 0.3s, box-shadow 0.3s;
     margin-bottom: 5px;
 }

 .faq-item:hover {
     border-color: rgba(232, 93, 4, 0.2);
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
 }

 .faq-item h4 {
     font-size: 0.92rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 10px;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 12px;
 }

 .faq-icon {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 0.9rem;
     font-weight: 700;
     transition: background 0.2s;
     line-height: 1;
 }

 .faq-item:hover .faq-icon {
     background: var(--orange);
     color: #fff;
 }

 .faq-item p {
     font-size: 0.82rem;
     color: var(--text-muted);
     line-height: 1.75;
 }

 /* ══ MAP BAND ══ */
 .map-section {
     background: var(--section-alt);
     padding: 0;
 }

 .map-wrap {
     position: relative;
     height: 420px;
     overflow: hidden;
     background: linear-gradient(135deg, #1a2744 0%, #0d1b35 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0px 50px;
 }

 .map-overlay-card {
     background: rgba(255, 255, 255, 0.97);
     border-radius: 14px;
     padding: 32px 28px;
     width: 100%;
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
     border: 1px solid rgba(232, 93, 4, 0.15);
 }

 .map-overlay-card h3 {
     font-size: 40px;
     font-weight: 800;
     color: var(--orange);
     margin-bottom: 4px;
 }

 .map-overlay-card p {
     font-size: 0.8rem;
     color: var(--text-muted);
     margin-bottom: 20px;
 }

 .map-stat-row {
     display: flex;
     gap: 24px;
 }

 .map-stat strong {
     display: block;
     font-size: 30px;
     font-weight: 800;
     color: var(--text-primary);
     line-height: 1;
 }

 .map-stat strong span {
     color: var(--orange);
 }

 .map-stat small {
     font-size: 0.68rem;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--text-muted);
     font-weight: 600;
 }

 .map-dot {
     position: absolute;
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--orange);
     border: 2px solid rgba(255, 255, 255, 0.8);
 }

 .map-dot::after {
     content: '';
     position: absolute;
     inset: -5px;
     border-radius: 50%;
     background: rgba(232, 93, 4, 0.3);
     animation: map-ring 2s ease-in-out infinite;
 }

 @keyframes map-ring {
     0% {
         transform: scale(1);
         opacity: 0.7;
     }

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

 /* ══ CTA BAND ══ */
 .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 80px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }

 .cta-band h2 {
     font-size: 36px;
     font-weight: 800;
     line-height: 1.2;
     color: #fff;
     max-width: 580px;
     position: relative;
 }

 .cta-band h2 em {
     font-style: normal;
     color: var(--orange2);
 }

 .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .btn-orange {
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .btn-orange:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .btn-ghost {
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .btn-ghost:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* ══ SCROLL REVEAL ══ */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ══ RESPONSIVE ══ */
 @media (max-width: 960px) {
     .page-hero-inner {
         grid-template-columns: 1fr;
     }

     .contact-grid {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .offices-grid {
         grid-template-columns: 1fr 1fr;
     }

     .faq-grid {
         grid-template-columns: 1fr;
     }

     .map-overlay-card {
         position: static;
         transform: none;
         margin: 32px 5%;
     }

     .map-wrap {
         height: auto;
         flex-direction: column;
         padding: 40px 0;
     }
 }

 @media (max-width: 600px) {
     section {
         padding: 60px 5%;
     }

     .offices-grid {
         grid-template-columns: 1fr;
     }

     .form-card {
         padding: 24px;
     }

     .form-grid {
         grid-template-columns: 1fr;
     }

     .hero-tiles {
         grid-template-columns: 1fr;
     }
 }


 /* ------------------- BLOG PAGE -------------------- */
 /* ── PAGE HERO ── */
 .blog-page .page-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 80px 5% 72px;
     position: relative;
     overflow: hidden;
 }

 .blog-page .page-hero::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .blog-page .page-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .blog-page .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 24px;
     letter-spacing: 0.04em;
     position: relative;
     z-index: 1;
 }

 .blog-page .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .blog-page .breadcrumb a:hover {
     color: var(--orange2);
 }

 .blog-page .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .blog-page .hero-inner {
     position: relative;
     z-index: 1;
     max-width: 720px;
 }

 .blog-page .ph-eyebrow {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .blog-page .ph-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .blog-page .page-hero h1 {
     font-size: 48px;
     font-weight: 800;
     line-height: 1.08;
     letter-spacing: -0.02em;
     color: #ffffff;
     margin-bottom: 20px;
 }

 .blog-page .page-hero h1 em {
     font-style: normal;
     color: var(--orange2);
 }

 .blog-page .page-hero p {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.62);
     line-height: 1.8;
     max-width: 520px;
 }

 /* ── SECTION PADDING (blog sections only) ── */
 .blog-page .blog-section {
     padding: 60px 5% 88px;
     background: #ffffff;
 }

 /* ── FILTER BAR ── */
 .blog-page .filter-bar {
     background: #ffffff;
     border-bottom: 1px solid rgba(0, 0, 0, 0.07);
     padding: 0 5%;
     position: sticky;
     top: 68px;
     z-index: 900;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-page .filter-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     flex-wrap: wrap;
 }

 .blog-page .filter-tabs {
     display: flex;
     gap: 0;
     overflow-x: auto;
     scrollbar-width: none;
 }

 .blog-page .filter-tabs::-webkit-scrollbar {
     display: none;
 }

 .blog-page .ftab {
     padding: 18px 22px;
     border: none;
     background: none;
     font-family: 'Roboto', sans-serif;
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--text-muted);
     cursor: pointer;
     white-space: nowrap;
     border-bottom: 2px solid transparent;
     transition: color 0.2s, border-color 0.2s;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }

 .blog-page .ftab:hover {
     color: var(--orange);
 }

 .blog-page .ftab.active {
     color: var(--orange);
     border-bottom-color: var(--orange);
 }

 .blog-page .filter-count {
     font-size: 0.75rem;
     color: var(--text-muted);
     white-space: nowrap;
     padding: 14px 0;
     font-weight: 500;
     flex-shrink: 0;
 }

 .blog-page .filter-count span {
     color: var(--text-primary);
     font-weight: 700;
 }

 /* ── BLOG GRID ── */
 .blog-page .blog-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
     margin-top: 48px;
 }

 .blog-page .blog-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 14px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-page .blog-card:hover {
     border-color: rgba(232, 93, 4, 0.22);
     box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
     transform: translateY(-4px);
 }

 .blog-page .card-img {
     width: 100%;
     overflow: hidden;
     position: relative;
     background: var(--section-alt);
 }

 .blog-page .card-img img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .blog-page .blog-card:hover .card-img img {
     transform: scale(1.04);
 }

 .blog-page .card-category {
     position: absolute;
     top: 14px;
     left: 14px;
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 4px 12px;
     border-radius: 20px;
 }

 .blog-page .cat-market {
     background: rgba(232, 93, 4, 0.92);
     color: #fff;
 }

 .blog-page .cat-logistics {
     background: rgba(14, 111, 255, 0.92);
     color: #fff;
 }

 .blog-page .cat-partnerships {
     background: rgba(29, 138, 78, 0.92);
     color: #fff;
 }

 .blog-page .cat-business {
     background: rgba(124, 58, 237, 0.92);
     color: #fff;
 }

 .blog-page .cat-telecom {
     background: rgba(6, 182, 212, 0.92);
     color: #fff;
 }

 .blog-page .card-body {
     padding: 24px;
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .blog-page .card-meta {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.72rem;
     color: var(--text-muted);
 }

 .blog-page .card-meta .dot {
     width: 3px;
     height: 3px;
     border-radius: 50%;
     background: var(--text-muted);
 }

 .blog-page .card-title {
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--text-primary);
     line-height: 1.35;
     letter-spacing: -0.01em;
     transition: color 0.2s;
 }

 .blog-page .blog-card:hover .card-title {
     color: var(--orange);
 }

 .blog-page .card-excerpt {
     font-size: 0.83rem;
     color: var(--text-muted);
     line-height: 1.75;
     flex: 1;
 }

 .blog-page .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 8px;
     padding-top: 16px;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
 }

 .blog-page .card-author {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .blog-page .author-av {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--orange), var(--orange2));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.65rem;
     font-weight: 800;
     color: #fff;
     flex-shrink: 0;
 }

 .blog-page .author-name {
     font-size: 0.75rem;
     font-weight: 600;
     color: var(--text-secondary);
 }

 .blog-page .card-read {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--orange);
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: gap 0.2s;
 }

 .blog-page .card-read:hover {
     gap: 9px;
 }

 .blog-page .card-read svg {
     transition: transform 0.2s;
 }

 .blog-page .card-read:hover svg {
     transform: translateX(3px);
 }

 /* ── FEATURED BANNER ── */
 .blog-page .featured-banner {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 0;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid rgba(0, 0, 0, 0.08);
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
     margin-bottom: 40px;
     transition: box-shadow 0.3s, transform 0.3s;
 }

 .blog-page .featured-banner:hover {
     box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
     transform: translateY(-3px);
 }

 .blog-page .fb-img {
     position: relative;
     overflow: hidden;
     min-height: 380px;
 }

 .blog-page .fb-img img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s ease;
 }

 .blog-page .featured-banner:hover .fb-img img {
     transform: scale(1.04);
 }

 .blog-page .fb-img::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, transparent 60%, rgba(255, 255, 255, 0.15));
 }

 .blog-page .fb-body {
     background: #ffffff;
     padding: 48px 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 14px;
 }

 .blog-page .featured-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--orange);
     border: 1px solid rgba(232, 93, 4, 0.25);
     background: rgba(232, 93, 4, 0.06);
     border-radius: 20px;
     padding: 4px 12px;
     width: fit-content;
 }

 .blog-page .featured-tag::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--orange);
 }

 .blog-page .fb-body h2 {
     font-size: clamp(1.4rem, 2.5vw, 2rem);
     font-weight: 800;
     line-height: 1.2;
     letter-spacing: -0.02em;
     color: var(--text-primary);
 }

 .blog-page .fb-body h2 a {
     color: inherit;
     text-decoration: none;
     transition: color 0.2s;
 }

 .blog-page .fb-body h2 a:hover {
     color: var(--orange);
 }

 .blog-page .fb-body p {
     font-size: 0.9rem;
     color: var(--text-muted);
     line-height: 1.8;
     max-width: 440px;
 }

 .blog-page .fb-meta {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.75rem;
     color: var(--text-muted);
     flex-wrap: wrap;
 }

 .blog-page .fb-meta .dot {
     width: 3px;
     height: 3px;
     border-radius: 50%;
     background: var(--text-muted);
 }

 .blog-page .fb-cat {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 3px 10px;
     border-radius: 20px;
 }

 .blog-page .btn-read-more {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--orange);
     color: #fff;
     padding: 12px 28px;
     border-radius: 6px;
     font-size: 0.85rem;
     font-weight: 700;
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: all 0.2s;
     width: fit-content;
     margin-top: 4px;
     box-shadow: 0 4px 16px rgba(232, 93, 4, 0.25);
 }

 .blog-page .btn-read-more:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 .blog-page .btn-read-more svg {
     transition: transform 0.2s;
 }

 .blog-page .btn-read-more:hover svg {
     transform: translateX(4px);
 }

 /* ── NEWSLETTER ── */
 .blog-page .newsletter {
     background: var(--section-alt);
     border-radius: 16px;
     padding: 48px 40px;
     margin-top: 56px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     border: 1px solid rgba(0, 0, 0, 0.07);
     position: relative;
     overflow: hidden;
 }

 .blog-page .newsletter::before {
     content: '';
     position: absolute;
     right: -40px;
     top: -40px;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.07) 0%, transparent 65%);
     pointer-events: none;
 }

 .blog-page .nl-text h3 {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 6px;
     letter-spacing: -0.01em;
 }

 .blog-page .nl-text p {
     font-size: 0.85rem;
     color: var(--text-muted);
     max-width: 420px;
     line-height: 1.6;
 }

 .blog-page .nl-form p {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .blog-page .nl-input {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.12);
     border-radius: 6px;
     padding: 12px 18px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.88rem;
     color: var(--text-primary);
     outline: none;
     width: 260px;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .blog-page .nl-input:focus {
     border-color: var(--orange);
     box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
 }

 .blog-page .nl-btn {
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 12px 24px;
     border-radius: 6px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.88rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.2s;
     white-space: nowrap;
     box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25);
 }

 .blog-page .nl-btn:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 /* ── BLOG LAYOUT (main + sidebar) ── */
 .blog-page .blog-layout {
     display: grid;
     grid-template-columns: 1fr 300px;
     gap: 48px;
     align-items: start;
     margin-top: 0;
 }

 .blog-page .sidebar {
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 .blog-page .sidebar-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     padding: 28px 24px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-page .sidebar-card h4 {
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--text-muted);
     margin-bottom: 18px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .blog-page .topic-list {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .blog-page .topic-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 12px;
     border-radius: 8px;
     cursor: pointer;
     transition: background 0.15s;
     text-decoration: none;
 }

 .blog-page .topic-item:hover {
     background: var(--section-alt);
 }

 .blog-page .topic-item .tl {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.85rem;
     font-weight: 500;
     color: var(--text-secondary);
 }

 .blog-page .topic-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .blog-page .topic-item .count {
     font-size: 0.7rem;
     font-weight: 700;
     padding: 2px 8px;
     border-radius: 20px;
     background: var(--section-alt);
     color: var(--text-muted);
 }

 .blog-page .recent-posts {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .blog-page .recent-post {
     display: flex;
     gap: 12px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .blog-page .recent-post:last-child {
     border-bottom: none;
 }

 .blog-page .recent-post:hover {
     opacity: 0.75;
 }

 .blog-page .rp-img {
     width: 56px;
     height: 56px;
     border-radius: 8px;
     overflow: hidden;
     flex-shrink: 0;
 }

 .blog-page .rp-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .blog-page .rp-title {
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--text-primary);
     line-height: 1.4;
     margin-bottom: 4px;
 }

 .blog-page .rp-date {
     font-size: 0.7rem;
     color: var(--text-muted);
 }

 /* ── CTA BAND ── */
 .blog-page .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 80px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .blog-page .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }

 .blog-page .cta-band h2 {
     font-size: clamp(1.6rem, 3vw, 2.4rem);
     font-weight: 800;
     line-height: 1.2;
     color: #fff;
     max-width: 580px;
     position: relative;
 }

 .blog-page .cta-band h2 em {
     font-style: normal;
     color: var(--orange2);
 }

 .blog-page .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .blog-page .btn-orange {
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .blog-page .btn-orange:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .blog-page .btn-ghost {
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .blog-page .btn-ghost:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* ── SCROLL REVEAL ── */
 .blog-page .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ── RESPONSIVE ── */
 @media (max-width: 1100px) {
     .blog-page .blog-layout {
         grid-template-columns: 1fr;
     }

     .blog-page .sidebar {
         flex-direction: row;
         flex-wrap: wrap;
     }

     .blog-page .sidebar-card {
         flex: 1;
         min-width: 260px;
     }
 }

 @media (max-width: 960px) {
     .blog-page .featured-banner {
         grid-template-columns: 1fr;
     }

     .blog-page .fb-img {
         min-height: 260px;
     }

     .blog-page .blog-grid {
         grid-template-columns: 1fr 1fr;
     }

     .blog-page .newsletter {
         flex-direction: column;
         gap: 24px;
     }

     .blog-page .nl-input {
         width: 100%;
     }
 }

 @media (max-width: 600px) {
     .blog-page .blog-section {
         padding: 40px 5% 60px;
     }

     .blog-page .blog-grid {
         grid-template-columns: 1fr;
     }

     .blog-page .fb-body {
         padding: 28px 24px;
     }

     .blog-page .newsletter {
         padding: 32px 24px;
     }
 }

 /* --------------------- Blog Details page ----------------------- */
 /* ── POST HERO ── */
 .blog-single .post-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 0 0 0 5%;
     position: relative;
     overflow: hidden;
     display: flex;
     gap: 40px;
 }

 .blog-single .post-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .blog-single .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 28px;
     letter-spacing: 0.04em;
     position: relative;
     z-index: 1;
 }

 .blog-single .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .blog-single .breadcrumb a:hover {
     color: var(--orange2);
 }

 .blog-single .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .blog-single .hero-meta {
     display: flex;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 .blog-single .post-cat {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     padding: 4px 14px;
     border-radius: 20px;
     background: rgba(232, 93, 4, 0.18);
     color: var(--orange2);
     border: 1px solid rgba(232, 93, 4, 0.3);
 }

 .blog-single .hero-meta .sep {
     width: 3px;
     height: 3px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
 }

 .blog-single .hero-meta span {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.5);
 }

 .blog-single .post-hero h1 {
     font-size: clamp(1.9rem, 4vw, 2.7rem);
     font-weight: 800;
     line-height: 1.12;
     letter-spacing: -0.025em;
     color: #ffffff;
     max-width: 820px;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 .blog-details-hero {
     width: 45%;
     padding: 50px 0px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .blog-single .post-hero .post-lead {
     font-size: 1.05rem;
     color: rgba(255, 255, 255, 0.6);
     line-height: 1.8;
     max-width: 680px;
     margin-bottom: 40px;
     position: relative;
     z-index: 1;
 }

 /* ── FEATURED IMAGE ── */
 .blog-single .featured-img-wrap {
     width: 55%;
     overflow: hidden;
     position: relative;
 }

 .blog-single .featured-img-wrap img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     display: block;
 }

 /* ── ARTICLE LAYOUT ── */
 .blog-single .article-wrap {
     padding: 72px 5%;
     display: grid;
     grid-template-columns: 1fr 300px;
     gap: 64px;
     align-items: start;
     background: #ffffff;
 }

 /* ── ARTICLE BODY ── */
 .blog-single .article-body h2 {
     font-size: 1.55rem;
     font-weight: 700;
     letter-spacing: -0.015em;
     color: var(--text-primary);
     margin: 40px 0 16px;
     line-height: 1.25;
 }

 .blog-single .article-body h2:first-child {
     margin-top: 0;
 }

 .blog-single .article-body h3 {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--text-primary);
     margin: 32px 0 12px;
 }

 .blog-single .article-body p {
     font-size: 1rem;
     color: var(--text-secondary);
     line-height: 1.9;
     margin-bottom: 20px;
 }

 .blog-single .article-body ul,
 .blog-single .article-body ol {
     padding-left: 22px;
     margin-bottom: 20px;
 }

 .blog-single .article-body li {
     font-size: 1rem;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 6px;
 }

 .blog-single .article-body strong {
     color: var(--text-primary);
     font-weight: 700;
 }

 /* Pullquote */
 .blog-single .pullquote {
     border-left: 4px solid var(--orange);
     background: rgba(232, 93, 4, 0.04);
     padding: 24px 28px;
     margin: 32px 0;
     border-radius: 0 10px 10px 0;
 }

 .blog-single .pullquote p {
     font-size: 1.1rem;
     font-style: italic;
     color: var(--text-primary);
     font-weight: 500;
     margin: 0;
     line-height: 1.7;
 }

 .blog-single .pullquote cite {
     display: block;
     margin-top: 10px;
     font-size: 0.8rem;
     font-style: normal;
     color: var(--text-muted);
     font-weight: 600;
     letter-spacing: 0.04em;
     text-transform: uppercase;
 }

 /* Inline highlight box */
 .blog-single .highlight-box {
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 12px;
     padding: 28px 28px;
     margin: 32px 0;
 }

 .blog-single .highlight-box h4 {
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.16em;
     color: var(--orange);
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .blog-single .highlight-box h4::before {
     content: '';
     width: 14px;
     height: 2px;
     background: var(--orange);
 }

 .blog-single .highlight-box p {
     font-size: 0.9rem;
     color: var(--text-secondary);
     line-height: 1.75;
     margin: 0;
 }

 /* Stat cards inline */
 .blog-single .stat-row {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin: 32px 0;
 }

 .blog-single .stat-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     padding: 20px 18px;
     text-align: center;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-single .stat-card .num {
     font-size: 1.8rem;
     font-weight: 900;
     color: var(--orange);
     line-height: 1;
     letter-spacing: -0.02em;
     margin-bottom: 4px;
 }

 .blog-single .stat-card .lbl {
     font-size: 0.75rem;
     color: var(--text-muted);
     font-weight: 500;
 }

 /* Tags */
 .blog-single .article-tags {
     display: flex;
     align-items: center;
     gap: 8px;
     flex-wrap: wrap;
     margin-top: 48px;
     padding-top: 28px;
     border-top: 1px solid rgba(0, 0, 0, 0.08);
 }

 .blog-single .tags-label {
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--text-muted);
     margin-right: 4px;
 }

 .blog-single .tag {
     font-size: 0.75rem;
     font-weight: 600;
     padding: 5px 14px;
     border-radius: 20px;
     background: var(--section-alt);
     color: var(--text-secondary);
     border: 1px solid rgba(0, 0, 0, 0.08);
     text-decoration: none;
     transition: all 0.2s;
 }

 .blog-single .tag:hover {
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
     border-color: rgba(232, 93, 4, 0.2);
 }

 /* ── POST NAVIGATION ── */
 .blog-single .post-nav {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-top: 40px;
     padding-top: 32px;
     border-top: 1px solid rgba(0, 0, 0, 0.08);
 }

 .blog-single .post-nav-card {
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 12px;
     padding: 20px 20px;
     text-decoration: none;
     transition: all 0.25s;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .blog-single .post-nav-card:hover {
     border-color: rgba(232, 93, 4, 0.25);
     background: rgba(232, 93, 4, 0.04);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
 }

 .blog-single .nav-dir {
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--orange);
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .blog-single .post-nav-card.next .nav-dir {
     justify-content: flex-end;
 }

 .blog-single .nav-title {
     font-size: 0.88rem;
     font-weight: 700;
     color: var(--text-primary);
     line-height: 1.4;
 }

 .blog-single .post-nav-card.next .nav-title {
     text-align: right;
 }

 /* ── SIDEBAR ── */
 .blog-single .sidebar {
     display: flex;
     flex-direction: column;
     gap: 24px;
     position: sticky;
     top: 88px;
 }

 .blog-single .sidebar-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     padding: 24px 22px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-single .sidebar-card h4 {
     font-size: 0.7rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.16em;
     color: var(--text-muted);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 7px;
 }

 /* TOC */
 .blog-single .toc-list {
     display: flex;
     flex-direction: column;
     gap: 2px;
     list-style: none;
 }

 .blog-single .toc-list li a {
     display: block;
     padding: 7px 10px;
     border-radius: 7px;
     font-size: 0.82rem;
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 500;
     transition: all 0.15s;
     border-left: 2px solid transparent;
 }

 .blog-single .toc-list li a:hover,
 .blog-single .toc-list li a.active {
     background: rgba(232, 93, 4, 0.07);
     color: var(--orange);
     border-left-color: var(--orange);
     padding-left: 14px;
 }

 /* Related posts */
 .blog-single .related-post {
     display: flex;
     gap: 12px;
     padding: 10px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .blog-single .related-post:last-child {
     border-bottom: none;
 }

 .blog-single .related-post:hover {
     opacity: 0.72;
 }

 .blog-single .rp-img {
     width: 54px;
     height: 54px;
     border-radius: 8px;
     overflow: hidden;
     flex-shrink: 0;
 }

 .blog-single .rp-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .blog-single .rp-title {
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--text-primary);
     line-height: 1.4;
     margin-bottom: 3px;
 }

 .blog-single .rp-cat {
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--orange);
 }

 /* Newsletter sidebar card */
 .blog-single .nl-card {
     background: linear-gradient(135deg, #111827, #1a2744);
     border-color: rgba(255, 255, 255, 0.06);
 }

 .blog-single .nl-card h4 {
     color: rgba(255, 255, 255, 0.4);
 }

 .blog-single .nl-card p {
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.65;
     margin-bottom: 14px;
 }

 .blog-single .nl-input {
     width: 100%;
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 6px;
     padding: 10px 14px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.85rem;
     color: #fff;
     outline: none;
     margin-bottom: 8px;
     transition: border-color 0.2s;
 }

 .blog-single .nl-input::placeholder {
     color: rgba(255, 255, 255, 0.3);
 }

 .blog-single .nl-input:focus {
     border-color: var(--orange);
 }

 .blog-single .nl-btn {
     width: 100%;
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 11px;
     border-radius: 6px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.88rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.2s;
 }

 .blog-single .nl-btn:hover {
     background: var(--orange2);
 }

 /* ── RELATED ARTICLES SECTION ── */
 .blog-single .related-section {
     background: var(--section-alt);
     padding: 72px 5%;
 }

 .blog-single .section-head {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 20px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .blog-single .s-label {
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .blog-single .s-label::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .blog-single .view-all {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--orange);
     text-decoration: none;
     white-space: nowrap;
     transition: gap 0.2s;
 }

 .blog-single .view-all:hover {
     gap: 10px;
 }

 .blog-single .related-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .blog-single .r-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 14px;
     overflow: hidden;
     text-decoration: none;
     display: flex;
     flex-direction: column;
     transition: all 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .blog-single .r-card:hover {
     border-color: rgba(232, 93, 4, 0.2);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
     transform: translateY(-4px);
 }

 .blog-single .r-card-img {
     width: 100%;
     overflow: hidden;
     position: relative;
 }

 .blog-single .r-card-img img {
     width: 100%;
     height: 190px;
     object-fit: cover;
     display: block;
     transition: transform 0.5s;
 }

 .blog-single .r-card:hover .r-card-img img {
     transform: scale(1.04);
 }

 .blog-single .r-cat {
     position: absolute;
     top: 12px;
     left: 12px;
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 3px 10px;
     border-radius: 20px;
     background-color: var(--orange);
     color: var(--white);
 }

 .blog-single .r-card-body {
     padding: 20px;
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .blog-single .r-card-title {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text-primary);
     line-height: 1.4;
     transition: color 0.2s;
 }

 .blog-single .r-card:hover .r-card-title {
     color: var(--orange);
 }

 .blog-single .r-card-meta {
     font-size: 0.72rem;
     color: var(--text-muted);
     margin-top: auto;
 }

 /* ── CTA BAND ── */
 .blog-single .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 80px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .blog-single .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }

 .blog-single .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .blog-single .btn-orange {
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .blog-single .btn-orange:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .blog-single .btn-ghost {
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .blog-single .btn-ghost:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* ── SCROLL REVEAL ── */
 .blog-single .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.65s ease, transform 0.65s ease;
 }

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

 /* ── RESPONSIVE ── */
 @media (max-width: 1024px) {
     .blog-single .article-wrap {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .blog-single .sidebar {
         position: static;
         flex-direction: row;
         flex-wrap: wrap;
     }

     .blog-single .sidebar-card {
         flex: 1;
         min-width: 260px;
     }
 }

 @media (max-width: 768px) {
	 .visual-scene{
		 width: 400px !important;
	 }
     .blog-single .post-hero {
         padding: 20px 14px;
         flex-direction: column-reverse;
         gap: 0;
     }

     .blog-details-hero {
         width: 100%;
     }

     .blog-single .featured-img-wrap {
         width: 100%;
     }

     .blog-details-hero {
         padding-bottom: 0;
     }

     .blog-single .featured-img-wrap img {
         height: 300px;
         border-radius: 10px;
     }

     .blog-single .stat-row {
         grid-template-columns: 1fr 1fr;
     }

     .blog-single .related-grid {
         grid-template-columns: 1fr 1fr;
     }

     .blog-single .post-nav {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 540px) {
     .blog-single .related-grid {
         grid-template-columns: 1fr;
     }

     .blog-single .stat-row {
         grid-template-columns: 1fr;
     }

     .blog-single .share-btns {
         display: none;
     }
 }

 /* -------------------- PARTNERSHIPS PAGE ------------------ */
 /* ── PAGE HERO ── */
 .partnerships-page .page-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 80px 5% 72px;
     position: relative;
     overflow: hidden;
 }

 .partnerships-page .page-hero::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .partnerships-page .page-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .partnerships-page .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 24px;
     letter-spacing: 0.04em;
     position: relative;
     z-index: 1;
 }

 .partnerships-page .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .partnerships-page .breadcrumb a:hover {
     color: var(--orange2);
 }

 .partnerships-page .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .partnerships-page .hero-inner {
     position: relative;
     z-index: 1;
     max-width: 780px;
     display: block;
     padding: 0;
     min-height: auto;
 }

 .partnerships-page .ph-eyebrow {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .partnerships-page .ph-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }

 .partnerships-page .page-hero p {
     font-size: 1.02rem;
     color: rgba(255, 255, 255, 0.62);
     line-height: 1.8;
     max-width: 580px;
     margin-bottom: 36px;
 }

 /* Hero CTA buttons */
 .partnerships-page .hero-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     position: relative;
     z-index: 1;
 }

 .partnerships-page .hero-btns .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .partnerships-page .hero-btns .btn-primary:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .partnerships-page .hero-btns .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.2s;
 }

 .partnerships-page .hero-btns .btn-outline:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* Hero trust badges */
 .partnerships-page .trust-strip {
     display: flex;
     align-items: center;
     gap: 24px;
     margin-top: 48px;
     padding-top: 32px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
     z-index: 1;
     flex-wrap: wrap;
 }

 .partnerships-page .trust-label {
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
     white-space: nowrap;
 }

 .partnerships-page .trust-badges {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
 }

 .partnerships-page .trust-badge {
     font-size: 0.72rem;
     font-weight: 700;
     padding: 5px 14px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.07);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.65);
     white-space: nowrap;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .partnerships-page .trust-badge::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--orange);
 }

 .partnerships-page .s-sub {
     font-size: 0.97rem;
     color: var(--text-muted);
     line-height: 1.85;
     max-width: 620px;
 }

 /* ── PARTNER TYPES ── */
 .partnerships-page .partner-types {
     background: #ffffff;
     padding: 88px 5%;
 }

 .partnerships-page .pt-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px;
 }

 .partnerships-page .pt-card {
     border-radius: 16px;
     padding: 36px 30px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     position: relative;
     overflow: hidden;
     transition: all 0.3s;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .partnerships-page .pt-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--pt-color, var(--orange));
 }

 .partnerships-page .pt-card:hover {
     border-color: rgba(0, 0, 0, 0.14);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
     transform: translateY(-5px);
 }

 .partnerships-page .pt-icon {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--pt-bg, rgba(232, 93, 4, 0.08));
     color: var(--pt-color, var(--orange));
 }

 .partnerships-page .pt-card h3 {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--text-primary);
     letter-spacing: -0.01em;
 }

 .partnerships-page .pt-card p {
     font-size: 0.87rem;
     color: var(--text-muted);
     line-height: 1.8;
     flex: 1;
 }

 .partnerships-page .pt-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .partnerships-page .pt-list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 0.83rem;
     color: var(--text-secondary);
 }

 .partnerships-page .pt-list li::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--pt-color, var(--orange));
     flex-shrink: 0;
     margin-top: 6px;
 }

 .partnerships-page .pt-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--pt-color, var(--orange));
     text-decoration: none;
     letter-spacing: 0.04em;
     transition: gap 0.2s;
     margin-top: auto;
 }

 .partnerships-page .pt-link:hover {
     gap: 10px;
 }

 /* ── STRATEGIC PARTNERS (Brands) ── */
 .partnerships-page .brands-section {
     background: var(--section-alt);
     padding: 88px 5%;
 }

 .partnerships-page .brands-head {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: end;
     margin-bottom: 56px;
 }

 /* Category tabs */
 .partnerships-page .brand-tabs {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     margin-bottom: 40px;
 }

 .partnerships-page .brand-tab {
     padding: 8px 20px;
     border-radius: 24px;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     border: 1.5px solid var(--orange);
     background: #fff;
     color: var(--orange);
/*      cursor: pointer; */
     font-family: 'Roboto', sans-serif;
     transition: all 0.2s;
 }

/*  .partnerships-page .brand-tab:hover {
     border-color: var(--orange);
     color: var(--orange);
 } */

 .partnerships-page .brand-tab.active {
     background: var(--orange);
     border-color: var(--orange);
     color: #fff;
 }

 .partnerships-page .brands-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .partnerships-page .brand-card {
     background: #fff;
     border-radius: 14px;
     border: 1px solid rgba(0, 0, 0, 0.07);
     padding: 28px 24px;
     display: flex;
     flex-direction: column;
     gap: 14px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     transition: all 0.3s;
 }

 .partnerships-page .brand-card:hover {
     border-color: rgba(232, 93, 4, 0.2);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
     transform: translateY(-4px);
 }

 .partnerships-page .brand-logo-box {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.72rem;
     font-weight: 900;
     letter-spacing: 0.04em;
     flex-shrink: 0;
 }

 .partnerships-page .brand-card-head {
     display: flex;
     align-items: center;
     gap: 14px;
     text-align: left;
 }

 .partnerships-page .brand-name {
     font-size: 1rem;
     font-weight: 700;
     color: var(--text-primary);
 }

 .partnerships-page .brand-type {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--text-muted);
     margin-top: 2px;
 }

 .partnerships-page .brand-desc {
     font-size: 0.83rem;
     color: var(--text-muted);
     line-height: 1.75;
     text-align: left;
 }

 .partnerships-page .brand-badge {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     padding: 3px 10px;
     border-radius: 20px;
     width: fit-content;
 }

 /* ── TELECOM OPERATORS ── */
 .partnerships-page .operators-section {
     background: #ffffff;
     padding: 88px 5%;
 }

 .partnerships-page .operators-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 56px;
 }

 .partnerships-page .op-card {
     border-radius: 14px;
     padding: 28px 22px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: all 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     position: relative;
     overflow: hidden;
 }

 .partnerships-page .op-card::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--op-color, var(--orange));
     transform: scaleX(0);
     transform-origin: center;
     transition: transform 0.3s;
 }

 .partnerships-page .op-card:hover {
     border-color: rgba(232, 93, 4, 0.18);
     box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
     transform: translateY(-5px);
 }

 .partnerships-page .op-card:hover::before {
     transform: scaleX(1);
 }

 .partnerships-page .op-abbr {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     font-size: 0.85rem;
     font-weight: 900;
     letter-spacing: 0.04em;
 }

 .partnerships-page .op-name {
     font-size: 1rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .partnerships-page .op-region {
     font-size: 0.72rem;
     color: var(--text-muted);
     font-weight: 500;
     margin-bottom: 14px;
 }

 .partnerships-page .op-markets {
     display: flex;
     flex-wrap: wrap;
     gap: 5px;
     justify-content: center;
 }

 .partnerships-page .op-market {
     font-size: 0.62rem;
     font-weight: 600;
     padding: 3px 9px;
     border-radius: 20px;
     background: var(--section-alt);
     color: var(--text-muted);
 }

 /* ── BECOME A PARTNER FORM ── */
 .partnerships-page .join-section {
     background: var(--section-alt);
     padding: 88px 5%;
 }

 .partnerships-page .join-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 72px;
     align-items: start;
 }

 .partnerships-page .join-benefits {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 36px;
 }

 .partnerships-page .benefit-item {
     display: flex;
     gap: 16px;
     align-items: flex-start;
 }

 .partnerships-page .benefit-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: rgba(232, 93, 4, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     flex-shrink: 0;
     transition: all 0.25s;
 }

 .partnerships-page .benefit-item:hover .benefit-icon {
     background: var(--orange);
     color: #fff;
 }

 .partnerships-page .benefit-text h4 {
     font-size: 0.92rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 3px;
 }

 .partnerships-page .benefit-text p {
     font-size: 0.82rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* Partner Form */
 .partnerships-page .partner-form-card {
     background: #fff;
     border-radius: 20px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     padding: 40px 36px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
 }

 .partnerships-page .form-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 6px;
     letter-spacing: -0.01em;
 }

 .partnerships-page .form-sub {
     font-size: 0.84rem;
     color: var(--text-muted);
     line-height: 1.65;
     margin-bottom: 28px;
 }

 .partnerships-page .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .partnerships-page .form-group {
     display: flex;
     flex-direction: column;
     gap: 6px;
	 width: 100%;
 }
.partnerships-page input.wpcf7-form-control.wpcf7-submit.has-spinner{
	background: none;
}
.partnerships-page input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
	background:none;
}
.partnerships-page .form-submit{
	background: var(--orange2);
}

 .partnerships-page .form-group.full {
     grid-column: span 2;
 }

 .partnerships-page .form-group label {
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--text-secondary);
     letter-spacing: 0.04em;
     text-transform: uppercase;
 }

 .partnerships-page .form-input,
 .partnerships-page .form-select,
 .partnerships-page .form-textarea {
     background: var(--section-alt);
     border: 1.5px solid rgba(0, 0, 0, 0.09);
     border-radius: 8px;
     padding: 11px 14px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.88rem;
     color: var(--text-primary);
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .partnerships-page .form-input:focus,
 .partnerships-page .form-select:focus,
 .partnerships-page .form-textarea:focus {
     border-color: var(--orange);
     box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
     background: #fff;
 }

 .partnerships-page .form-textarea {
     resize: vertical;
     min-height: 110px;
     line-height: 1.6;
 }

 .partnerships-page .form-select {
     appearance: none;
     cursor: pointer;
 }

 .partnerships-page .form-submit {
     width: 100%;
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.92rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.2s;
     margin-top: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     box-shadow: 0 4px 16px rgba(232, 93, 4, 0.28);
 }

 .partnerships-page .form-submit:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 .partnerships-page .form-note {
     font-size: 0.72rem;
     color: var(--text-muted);
     text-align: center;
     margin-top: 12px;
     line-height: 1.6;
 }

 /* Form success state */
 .partnerships-page .form-success {
     display: none;
     text-align: center;
     padding: 40px 20px;
 }

 .partnerships-page .form-success .check {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: rgba(29, 138, 78, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     color: var(--green);
 }

 .partnerships-page .form-success h3 {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 8px;
 }

 .partnerships-page .form-success p {
     font-size: 0.88rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* ── TESTIMONIALS ── */
 .partnerships-page .testimonials-section {
     background: #ffffff;
     padding: 88px 5%;
 }

 .partnerships-page .testi-head {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap;
     margin-bottom: 48px;
 }

 .partnerships-page .rating-summary {
     display: flex;
     align-items: center;
     gap: 14px;
     flex-shrink: 0;
 }

 .partnerships-page .rating-num {
     font-size: 2.6rem;
     font-weight: 900;
     color: var(--text-primary);
     line-height: 1;
     letter-spacing: -0.04em;
 }

 .partnerships-page .rating-stars {
     display: flex;
     gap: 3px;
     margin-bottom: 4px;
 }

 .partnerships-page .rating-stars svg {
     color: #f59e0b;
 }

 .partnerships-page .rating-count {
     font-size: 0.75rem;
     color: var(--text-muted);
 }

 .partnerships-page .testi-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
 }

 .partnerships-page .testi-card {
     background: #ffffff;
     border-radius: 14px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     padding: 28px;
     transition: all 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .partnerships-page .testi-card:hover {
     border-color: rgba(232, 93, 4, 0.18);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
     transform: translateY(-3px);
 }

 .partnerships-page .testi-stars {
     display: flex;
     gap: 3px;
     margin-bottom: 16px;
 }

 .partnerships-page .testi-stars svg {
     color: #f59e0b;
 }

 .partnerships-page .testi-text {
     font-size: 0.9rem;
     color: var(--text-secondary);
     line-height: 1.8;
     margin-bottom: 20px;
     font-style: italic;
 }

 .partnerships-page .testi-author {
     display: flex;
     align-items: center;
     gap: 12px;
     padding-top: 16px;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
 }

 .partnerships-page .testi-av {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
 }

 .partnerships-page .testi-av img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .partnerships-page .testi-name {
     font-size: 0.88rem;
     font-weight: 700;
     color: var(--text-primary);
 }

 .partnerships-page .testi-role {
     font-size: 0.72rem;
     color: var(--text-muted);
     margin-top: 1px;
 }

 .partnerships-page .testi-badge {
     margin-left: auto;
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     padding: 3px 10px;
     border-radius: 20px;
     background: rgba(232, 93, 4, 0.08);
     color: var(--orange);
     border: 1px solid rgba(232, 93, 4, 0.2);
     white-space: nowrap;
 }

 /* ── PARTNER EVENTS ── */
 .partnerships-page .events-section {
     background: var(--section-alt);
     padding: 88px 5%;
 }

 .partnerships-page .events-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 48px;
 }

 .partnerships-page .event-card {
     background: #fff;
     border-radius: 14px;
     overflow: hidden;
     border: 1px solid rgba(0, 0, 0, 0.07);
     transition: all 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .partnerships-page .event-card:hover {
     border-color: rgba(232, 93, 4, 0.18);
     box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
     transform: translateY(-4px);
 }

 .partnerships-page .event-img {
     height: 180px;
     overflow: hidden;
     position: relative;
 }

 .partnerships-page .event-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .partnerships-page .event-card:hover .event-img img {
     transform: scale(1.05);
 }

 .partnerships-page .event-date-badge {
     position: absolute;
     top: 14px;
     left: 14px;
     background: var(--orange);
     color: #fff;
     border-radius: 8px;
     padding: 6px 12px;
     text-align: center;
     line-height: 1.1;
 }

 .partnerships-page .event-date-badge .month {
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
 }

 .partnerships-page .event-date-badge .day {
     font-size: 1.3rem;
     font-weight: 900;
 }

 .partnerships-page .event-body {
     padding: 24px;
 }

 .partnerships-page .event-type {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--orange);
     margin-bottom: 8px;
 }

 .partnerships-page .event-title {
     font-size: 0.98rem;
     font-weight: 700;
     color: var(--text-primary);
     line-height: 1.35;
     margin-bottom: 10px;
 }

 .partnerships-page .event-meta {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 0.75rem;
     color: var(--text-muted);
     margin-bottom: 16px;
 }

 .partnerships-page .event-cta {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--orange);
     text-decoration: none;
     transition: gap 0.2s;
 }

 .partnerships-page .event-cta:hover {
     gap: 10px;
 }

 /* ── CTA BAND ── */
 .partnerships-page .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 88px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .partnerships-page .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }

 .partnerships-page .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 /* ── SCROLL REVEAL ── */
 .partnerships-page .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ── RESPONSIVE ── */
 @media (max-width: 1100px) {
     .partnerships-page .join-layout {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .partnerships-page .brands-head {
         grid-template-columns: 1fr;
         gap: 20px;
     }
 }

 @media (max-width: 960px) {
     .partnerships-page .pt-grid {
         grid-template-columns: 1fr;
     }

     .partnerships-page .brands-grid {
         grid-template-columns: 1fr 1fr;
     }

     .partnerships-page .operators-grid {
         grid-template-columns: 1fr 1fr;
     }

     .partnerships-page .testi-grid {
         grid-template-columns: 1fr;
     }

     .partnerships-page .events-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 640px) {
     .partnerships-page .brands-grid {
         grid-template-columns: 1fr;
     }

     .partnerships-page .operators-grid {
         grid-template-columns: 1fr 1fr;
     }

     .partnerships-page .events-grid {
         grid-template-columns: 1fr;
     }

     .partnerships-page .form-grid {
         grid-template-columns: 1fr;
     }

     .partnerships-page .form-group.full {
         grid-column: span 1;
     }
 }

 /* ------------------- Service page code --------------------- */
 /* ── PAGE HERO ── */
 .services-page .page-hero {
     background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
     padding: 80px 5% 72px;
     position: relative;
     overflow: hidden;
 }

 .services-page .page-hero::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 65%);
     pointer-events: none;
 }

 .services-page .page-hero::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--orange), var(--orange2), transparent 70%);
 }

 .services-page .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 24px;
     letter-spacing: 0.04em;
     position: relative;
     z-index: 1;
 }

 .services-page .breadcrumb a {
     color: rgba(255, 255, 255, 0.45);
     text-decoration: none;
     transition: color 0.2s;
 }

 .services-page .breadcrumb a:hover {
     color: var(--orange2);
 }

 .services-page .breadcrumb span {
     color: rgba(255, 255, 255, 0.25);
 }

 .services-page .hero-inner {
     position: relative;
     z-index: 1;
     max-width: 780px;
     display: block;
     padding: 0;
     min-height: auto;
 }

 .services-page .ph-eyebrow {
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .services-page .ph-eyebrow::before {
     content: '';
     width: 20px;
     height: 2px;
     background: var(--orange);
 }



 .services-page .page-hero p {
     font-size: 1.02rem;
     color: rgba(255, 255, 255, 0.62);
     line-height: 1.8;
     max-width: 580px;
 }

 /* Hero stat strip */
 .services-page .hero-stats {
     display: flex;
     gap: 0;
     margin-top: 48px;
     position: relative;
     z-index: 1;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 32px;
     flex-wrap: wrap;
 }

 .services-page .hero-stat {
     flex: 1;
     min-width: 120px;
     padding-right: 32px;
     margin-right: 32px;
     border-right: 1px solid rgba(255, 255, 255, 0.1);
 }

 .services-page .hero-stat:last-child {
     border-right: none;
 }

 .services-page .hero-stat .num {
     font-size: 2rem;
     font-weight: 900;
     color: #ffffff;
     letter-spacing: -0.03em;
     line-height: 1;
 }

 .services-page .hero-stat .num span {
     color: var(--orange);
 }

 .services-page .hero-stat .lbl {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.45);
     margin-top: 4px;
     font-weight: 500;
 }

 /* ── SECTION SHARED ── */

 .services-page .s-sub {
     font-size: 0.97rem;
     color: var(--text-muted);
     line-height: 1.85;
     max-width: 620px;
 }

 /* ── SERVICE NAV TABS ── */
 .services-page .service-tabs {
     background: #ffffff;
     border-bottom: 1px solid rgba(0, 0, 0, 0.07);
     padding: 0 5%;
     position: sticky;
     top: 68px;
     z-index: 900;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .services-page .tabs-inner {
     display: flex;
     gap: 0;
     overflow-x: auto;
     scrollbar-width: none;
 }

 .services-page .tabs-inner::-webkit-scrollbar {
     display: none;
 }

 .services-page .stab {
     padding: 18px 24px;
     border: none;
     background: none;
     font-family: 'Roboto', sans-serif;
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--text-muted);
     cursor: pointer;
     white-space: nowrap;
     border-bottom: 2px solid transparent;
     transition: color 0.2s, border-color 0.2s;
     letter-spacing: 0.02em;
     text-transform: uppercase;
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .services-page .stab:hover {
     color: var(--orange);
 }

 .services-page .stab.active {
     color: var(--orange);
     border-bottom-color: var(--orange);
 }

 .services-page .stab-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 /* ── CORE SERVICES GRID ── */
 .services-page .core-services {
     padding: 88px 5%;
     background: #ffffff;
 }

 .services-page .core-head {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: end;
     margin-bottom: 56px;
 }

 .services-page .services-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
 }

 .services-page .svc-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 16px;
     padding: 36px 32px;
     position: relative;
     overflow: hidden;
     transition: all 0.3s;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
     text-decoration: none;
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .services-page .svc-card::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--card-accent, var(--orange));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.3s ease;
 }

 .services-page .svc-card:hover {
     border-color: rgba(232, 93, 4, 0.18);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
     transform: translateY(-5px);
 }

 .services-page .svc-card:hover::before {
     transform: scaleX(1);
 }

 /* Featured (wider) card */
 .services-page .svc-card.featured {
     grid-column: span 2;
     flex-direction: row;
     gap: 48px;
 }

 .services-page .svc-card.featured .svc-content {
     flex: 1;
 }

 .services-page .svc-card.featured .svc-visual {
     flex-shrink: 0;
     width: 260px;
 }

 .services-page .svc-icon {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .services-page .svc-tag {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     padding: 4px 12px;
     border-radius: 20px;
     width: fit-content;
 }

 .services-page .svc-card h3 {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--text-primary);
     letter-spacing: -0.01em;
     line-height: 1.3;
 }

 .services-page .svc-card p {
     font-size: 0.88rem;
     color: var(--text-muted);
     line-height: 1.8;
 }

 .services-page .svc-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .services-page .svc-list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 0.85rem;
     color: var(--text-secondary);
 }

 .services-page .svc-list li::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     flex-shrink: 0;
     margin-top: 6px;
 }

 .services-page .svc-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.8rem;
     font-weight: 700;
     text-decoration: none;
     letter-spacing: 0.04em;
     margin-top: auto;
     transition: gap 0.2s;
 }

 .services-page .svc-link svg {
     transition: transform 0.2s;
 }

 .services-page .svc-link:hover {
     gap: 10px;
 }

 .services-page .svc-link:hover svg {
     transform: translateX(3px);
 }

 /* Visual placeholder in featured card */
 .services-page .svc-visual {
     background: var(--section-alt);
     border-radius: 12px;
     overflow: hidden;
     min-height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .services-page .svc-visual svg {
     opacity: 0.15;
 }

 /* ── COLOR SCHEMES PER SERVICE ── */
 /* Telecom — orange */
 .services-page .svc-card[data-svc="telecom"] {
     --card-accent: var(--orange);
 }

 .services-page .svc-card[data-svc="telecom"] .svc-icon {
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
     margin-top: 10px;
 }

 .services-page .svc-card[data-svc="telecom"] .svc-tag {
     background: rgba(232, 93, 4, 0.1);
     color: var(--orange);
 }

 .services-page .svc-card[data-svc="telecom"] .svc-list li::before {
     background: var(--orange);
 }

 .services-page .svc-card[data-svc="telecom"] .svc-link {
     color: var(--orange);
 }

 /* Market Entry — blue */
 .services-page .svc-card[data-svc="market"] {
     --card-accent: var(--blue);
 }

 .services-page .svc-card[data-svc="market"] .svc-icon {
     background: rgba(14, 111, 255, 0.1);
     color: var(--blue);
 }

 .services-page .svc-card[data-svc="market"] .svc-tag {
     background: rgba(14, 111, 255, 0.1);
     color: var(--blue);
 }

 .services-page .svc-card[data-svc="market"] .svc-list li::before {
     background: var(--blue);
 }

 .services-page .svc-card[data-svc="market"] .svc-link {
     color: var(--blue);
 }

 /* Logistics — green */
 .services-page .svc-card[data-svc="logistics"] {
     --card-accent: var(--green);
 }

 .services-page .svc-card[data-svc="logistics"] .svc-icon {
     background: rgba(29, 138, 78, 0.1);
     color: var(--green);
 }

 .services-page .svc-card[data-svc="logistics"] .svc-tag {
     background: rgba(29, 138, 78, 0.1);
     color: var(--green);
 }

 .services-page .svc-card[data-svc="logistics"] .svc-list li::before {
     background: var(--green);
 }

 .services-page .svc-card[data-svc="logistics"] .svc-link {
     color: var(--green);
 }

 /* Brand — purple */
 .services-page .svc-card[data-svc="brand"] {
     --card-accent: #7c3aed;
 }

 .services-page .svc-card[data-svc="brand"] .svc-icon {
     background: rgba(124, 58, 237, 0.1);
     color: #7c3aed;
 }

 .services-page .svc-card[data-svc="brand"] .svc-tag {
     background: rgba(124, 58, 237, 0.1);
     color: #7c3aed;
 }

 .services-page .svc-card[data-svc="brand"] .svc-list li::before {
     background: #7c3aed;
 }

 .services-page .svc-card[data-svc="brand"] .svc-link {
     color: #7c3aed;
 }

 /* Partner Dev — cyan */
 .services-page .svc-card[data-svc="partner"] {
     --card-accent: #0891b2;
 }

 .services-page .svc-card[data-svc="partner"] .svc-icon {
     background: rgba(8, 145, 178, 0.1);
     color: #0891b2;
 }

 .services-page .svc-card[data-svc="partner"] .svc-tag {
     background: rgba(8, 145, 178, 0.1);
     color: #0891b2;
 }

 .services-page .svc-card[data-svc="partner"] .svc-list li::before {
     background: #0891b2;
 }

 .services-page .svc-card[data-svc="partner"] .svc-link {
     color: #0891b2;
 }

 /* After-Sales — amber */
 .services-page .svc-card[data-svc="aftersales"] {
     --card-accent: #d97706;
 }

 .services-page .svc-card[data-svc="aftersales"] .svc-icon {
     background: rgba(217, 119, 6, 0.1);
     color: #d97706;
 }

 .services-page .svc-card[data-svc="aftersales"] .svc-tag {
     background: rgba(217, 119, 6, 0.1);
     color: #d97706;
 }

 .services-page .svc-card[data-svc="aftersales"] .svc-list li::before {
     background: #d97706;
 }

 .services-page .svc-card[data-svc="aftersales"] .svc-link {
     color: #d97706;
 }

 /* ── HOW WE WORK ── */
 .services-page .process-section {
     background: var(--section-alt);
     padding: 88px 5%;
 }

 .services-page .process-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 0;
     margin-top: 56px;
     position: relative;
 }

 /* Connector line between steps */
 .services-page .process-grid::before {
     content: '';
     position: absolute;
     top: 28px;
     left: 10%;
     right: 10%;
     height: 2px;
     background: linear-gradient(90deg, var(--orange), var(--blue), var(--green), #7c3aed, #0891b2);
     z-index: 0;
 }

 .services-page .process-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 12px;
     position: relative;
     z-index: 1;
 }

 .services-page .step-num {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: #ffffff;
     border: 2px solid var(--step-color, var(--orange));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     font-weight: 900;
     color: var(--step-color, var(--orange));
     margin-bottom: 20px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
 }

 .services-page .process-step:hover .step-num {
     background: var(--step-color, var(--orange));
     color: #fff;
     transform: scale(1.1);
 }

 .services-page .step-title {
     font-size: 0.88rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 8px;
 }

 .services-page .step-desc {
     font-size: 0.78rem;
     color: var(--text-muted);
     line-height: 1.65;
 }

 /* ── WHY OMNI — COMPETITIVE EDGE ── */
 .services-page .edge-section {
     background: #ffffff;
     padding: 88px 5%;
 }

 .services-page .edge-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 56px;
 }

 .services-page .edge-list {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .services-page .edge-item {
     display: flex;
     gap: 20px;
     align-items: flex-start;
 }

 .services-page .edge-icon {
     width: 44px;
     height: 44px;
     border-radius: 12px;
     background: rgba(232, 93, 4, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--orange);
     flex-shrink: 0;
     transition: all 0.25s;
 }

 .services-page .edge-item:hover .edge-icon {
     background: var(--orange);
     color: #fff;
 }

 .services-page .edge-text h4 {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .services-page .edge-text p {
     font-size: 0.84rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* Visual panel */
 .services-page .edge-visual {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     border-radius: 20px;
     padding: 44px 36px;
     position: relative;
     overflow: hidden;
 }

 .services-page .edge-visual::before {
     content: '';
     position: absolute;
     right: -60px;
     top: -60px;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, transparent 65%);
     pointer-events: none;
 }

 .services-page .ev-label {
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--orange);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .services-page .ev-label::before {
     content: '';
     width: 16px;
     height: 2px;
     background: var(--orange);
 }

 .services-page .ev-title {
     font-size: 1.6rem;
     font-weight: 700;
     color: #ffffff;
     line-height: 1.2;
     letter-spacing: -0.02em;
     margin-bottom: 28px;
 }

 .services-page .ev-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 28px;
 }

 .services-page .ev-stat {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     padding: 18px 16px;
 }

 .services-page .ev-stat .n {
     font-size: 1.6rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: -0.03em;
     line-height: 1;
 }

 .services-page .ev-stat .n span {
     color: var(--orange2);
 }

 .services-page .ev-stat .l {
     font-size: 0.72rem;
     color: rgba(255, 255, 255, 0.4);
     margin-top: 4px;
 }

 .services-page .ev-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--orange);
     color: #fff;
     padding: 12px 26px;
     border-radius: 6px;
     font-size: 0.88rem;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.2s;
     box-shadow: 0 4px 16px rgba(232, 93, 4, 0.3);
 }

 .services-page .ev-btn:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 /* ── INDUSTRIES ── */
 .services-page .industries-section {
     background: var(--section-alt);
     padding: 88px 5%;
 }

 .services-page .industries-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     margin-top: 48px;
 }

 .services-page .ind-card {
     background: #ffffff;
     border: 1px solid rgba(0, 0, 0, 0.07);
     border-radius: 14px;
     padding: 28px 22px;
     text-align: center;
     transition: all 0.3s;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
 }

 .services-page .ind-card:hover {
     border-color: rgba(232, 93, 4, 0.2);
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
     transform: translateY(-4px);
 }

 .services-page .ind-icon {
     font-size: 2rem;
     margin-bottom: 14px;
     display: block;
 }

 .services-page .ind-card h4 {
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 6px;
 }

 .services-page .ind-card p {
     font-size: 0.78rem;
     color: var(--text-muted);
     line-height: 1.65;
 }

 /* ── TESTIMONIAL ── */
 .services-page .testimonial-section {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 80px 5%;
     position: relative;
     overflow: hidden;
 }

 .services-page .testimonial-section::before {
     content: '';
     position: absolute;
     right: -100px;
     top: -100px;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 65%);
     pointer-events: none;
 }

 .services-page .testimonial-inner {
     max-width: 760px;
     margin: 0 auto;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .services-page .quote-mark {
     font-size: 5rem;
     line-height: 1;
     color: var(--orange);
     opacity: 0.5;
     font-family: Georgia, serif;
     margin-bottom: -16px;
     display: block;
 }

 .services-page .testimonial-text {
     font-size: clamp(1rem, 1.8vw, 1.3rem);
     color: rgba(255, 255, 255, 0.88);
     line-height: 1.8;
     font-style: italic;
     font-weight: 300;
     margin-bottom: 32px;
 }

 .services-page .testimonial-author {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 14px;
 }

 .services-page .ta-av {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     overflow: hidden;
     border: 2px solid rgba(232, 93, 4, 0.4);
     flex-shrink: 0;
 }

 .services-page .ta-av img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .services-page .ta-name {
     font-size: 0.9rem;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 2px;
 }

 .services-page .ta-role {
     font-size: 0.75rem;
     color: rgba(255, 255, 255, 0.45);
 }

 .services-page .stars {
     display: flex;
     gap: 3px;
     justify-content: center;
     margin-bottom: 20px;
 }

 .services-page .stars svg {
     color: #f59e0b;
 }

 /* ── FAQ ── */
 .services-page .faq-section {
     background: #ffffff;
     padding: 88px 5%;
 }

 .services-page .faq-layout {
     display: grid;
     grid-template-columns: 380px 1fr;
     gap: 80px;
     align-items: start;
     margin-top: 56px;
 }

 .services-page .faq-intro p {
     font-size: 0.92rem;
     color: var(--text-muted);
     line-height: 1.8;
     margin-bottom: 28px;
 }

 .services-page .faq-cta {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: var(--orange);
     color: #fff;
     padding: 12px 26px;
     border-radius: 6px;
     font-size: 0.88rem;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.2s;
     box-shadow: 0 4px 14px rgba(232, 93, 4, 0.28);
 }

 .services-page .faq-cta:hover {
     background: var(--orange2);
     transform: translateY(-1px);
 }

 .services-page .faq-list {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .services-page .faq-item {
     border-bottom: 1px solid rgba(0, 0, 0, 0.07);
 }

 .services-page .faq-item:first-child {
     border-top: 1px solid rgba(0, 0, 0, 0.07);
 }

 .services-page .faq-q {
     width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 0;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     font-family: 'Roboto', sans-serif;
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text-primary);
     transition: color 0.2s;
 }

 .services-page .faq-q:hover {
     color: var(--orange);
 }

 .services-page .faq-item.open .faq-q {
     color: var(--orange);
 }

 .services-page .faq-icon {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: var(--section-alt);
     border: 1px solid rgba(0, 0, 0, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: all 0.25s;
 }

 .services-page .faq-item.open .faq-icon {
     background: var(--orange);
     border-color: var(--orange);
 }

 .services-page .faq-icon svg {
     transition: transform 0.25s;
 }

 .services-page .faq-item.open .faq-icon svg {
     transform: rotate(45deg);
     color: #fff;
 }

 .services-page .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.3s;
 }

 .services-page .faq-item.open .faq-a {
     max-height: 300px;
 }

 .services-page .faq-a p {
     font-size: 0.88rem;
     color: var(--text-muted);
     line-height: 1.8;
     padding-bottom: 20px;
 }

 /* ── CTA BAND ── */
 .services-page .cta-band {
     background: linear-gradient(135deg, #111827 0%, #1a2744 100%);
     padding: 88px 5%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .services-page .cta-band::before {
     content: '';
     position: absolute;
     right: -80px;
     top: -80px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(232, 93, 4, 0.14) 0%, transparent 65%);
     pointer-events: none;
 }

 .services-page .cta-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     flex-shrink: 0;
     position: relative;
 }

 .services-page .btn-orange {
     background: var(--orange);
     color: #fff;
     padding: 14px 32px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
     box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
 }

 .services-page .btn-orange:hover {
     background: var(--orange2);
     transform: translateY(-2px);
 }

 .services-page .btn-ghost {
     border: 2px solid rgba(255, 255, 255, 0.25);
     color: #fff;
     padding: 13px 28px;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .services-page .btn-ghost:hover {
     border-color: var(--orange2);
     color: var(--orange2);
 }

 /* ── SCROLL REVEAL ── */
 .services-page .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

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

 /* ── RESPONSIVE ── */
 @media (max-width: 1100px) {
     .services-page .core-head {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .services-page .edge-layout {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .services-page .faq-layout {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .services-page .industries-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 900px) {
     .services-page .services-grid {
         grid-template-columns: 1fr;
     }

     .services-page .svc-card.featured {
         grid-column: span 1;
         flex-direction: column;
     }

     .services-page .svc-card.featured .svc-visual {
         width: 100%;
         min-height: 160px;
     }

     .services-page .process-grid {
         grid-template-columns: 1fr 1fr;
         gap: 32px;
     }

     .services-page .process-grid::before {
         display: none;
     }

     .services-page .ev-stats {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 600px) {
     .services-page .industries-grid {
         grid-template-columns: 1fr 1fr;
     }

     .services-page .process-grid {
         grid-template-columns: 1fr;
     }

     .services-page .hero-stats {
         gap: 24px;
     }

     .services-page .hero-stat {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding-bottom: 20px;
         margin-bottom: 4px;
     }

     .services-page .hero-stat:last-child {
         border-bottom: none;
     }
 }
 
 
 /*PARTNER SECTION*/
 .partner-section{
    padding:100px 20px;
    background:var(--black2);
}

.container{
    max-width:1200px;
    margin:auto;
}

.partner-heading{
    text-align:center;
    margin-bottom:60px;
}

.partner-heading h2{
    margin-bottom:15px;
    color: var(--orange);
}

.partner-heading p{
    color:var(--muted);
    max-width:700px;
    margin:auto;
}

.partner-card{
    display:flex;
    align-items:center;
    gap:40px;
    background:var(--black3);
    border:1px solid var(--border);
    border-radius:16px;
    padding:40px;
    transition:0.3s;
}

.partner-card:hover{
    border-color:var(--border-orange);
    box-shadow:0 0 25px var(--orange-glow);
}

.partner-logo img{
    width:270px;
    border-radius: 10px;
}

.partner-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#fff;
	text-transform: uppercase;
}

.partner-content p{
    color:var(--muted);
    margin-bottom:20px;
    width: 100%;
}

.partner-btn{
    display:inline-block;
    padding:12px 24px;
    background:var(--orange);
    color:var(--white);
    text-decoration:none;
    border-radius:6px;
    transition:0.3s;
}

.partner-btn:hover{
    background:var(--orange2);
}
.globe-circle{
    border-radius:0;
    overflow:hidden;
}
.hero-map iframe {
    border-radius: 10px;
}

  .partners-section {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* ---- Globe Rings ---- */
  .globe-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
  }
 
  .globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 255, 0.18);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 3s ease-in-out infinite;
  }
 
  .gr1 {
    width: 420px; height: 420px;
    animation-delay: 0s;
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.08), inset 0 0 30px rgba(0, 180, 255, 0.04);
  }
 
  .gr2 {
    width: 480px; height: 480px;
    animation-delay: 0.8s;
    border-color: rgba(0, 180, 255, 0.10);
  }
 
  .gr3 {
    width: 540px; height: 540px;
    animation-delay: 1.6s;
    border-color: rgba(0, 180, 255, 0.06);
  }
 
  @keyframes pulseRing {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
 
  .globe-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 180, 255, 0.3);
    box-shadow: 0 0 60px rgba(0, 180, 255, 0.15), 0 0 120px rgba(0, 100, 200, 0.1);
  }
 
  .globe-circle iframe {
    width: 100%; height: 100%;
    border: none;
    /*filter: saturate(0.4) brightness(0.6) contrast(1.2) hue-rotate(180deg);*/
    transform: scale(1.05);
    pointer-events: none;
  }
 
  /* Globe overlay tint */
/*   .globe-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, transparent 55%, rgba(5, 11, 24, 0.7) 100%);
    pointer-events: none;
  } */
 
  /* ---- SVG connector lines ---- */
  .connectors-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
  }
 
  .connector-line {
    stroke: rgba(0, 200, 255, 0.45);
    stroke-width: 1.2;
    fill: none;
    stroke-dasharray: 5 4;
    animation: dashMove 2s linear infinite;
  }
 
  @keyframes dashMove {
    to { stroke-dashoffset: -18; }
  }
 
  .connector-dot {
    fill: #00d4ff;
    filter: drop-shadow(0 0 4px #00d4ff);
    animation: dotPulse 2s ease-in-out infinite;
  }
 
  @keyframes dotPulse {
    0%, 100% { opacity: 0.7; r: 3; }
    50% { opacity: 1; r: 4.5; }
  }
 
  /* ---- Partner Logo Cards ---- */
  .logo-card {
    position: absolute;
    background: rgba(8, 20, 45, 0.92);
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 180, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
    min-width: 140px;
    z-index: 10;
    animation: cardFloat 4s ease-in-out infinite;
  }
 
  .logo-card:hover {
    border-color: rgba(0, 180, 255, 0.7);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 180, 255, 0.3);
    transform: translateY(-3px) scale(1.03) !important;
  }
 
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }
 
  /* Stagger floats */
  .card-cisco    { animation-delay: 0s; }
  .card-huawei   { animation-delay: 0.8s; }
  .card-ericsson { animation-delay: 1.6s; }
  .card-nokia    { animation-delay: 2.4s; }
  .card-telesens { animation-delay: 3.2s; }
 
  /* Positions around the globe (globe center ~450,310) */
  .card-cisco    { top:  30px; left: 410px; }
  .card-huawei   { top: 140px; left:  55px; }
  .card-ericsson { top: 290px; left:  35px; }
  .card-nokia    { top: 430px; left: 155px; }
  .card-telesens { top: 395px; left: 0px; }
 
  .logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
  }
 
  .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #e0f4ff;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
 
  /* Cisco logo inline SVG */
  .cisco-logo {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
  }
 
  /* Connection dot on card edge */
  .card-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d4ff;
    animation: dotPulse 1.5s ease-in-out infinite;
  }
 
  /* ---- Section title ---- */
  .section-title {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(0, 200, 255, 0.5);
    text-transform: uppercase;
  }
 
  /* Ambient glow behind globe */
  .glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* 50 - 50 */
    gap: 0;
    align-items: center;
    width: 100%;
}
.about-grid .partners-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}
.about-grid .about-text {
    width: 100%;
    padding: 40px 48px;
    box-sizing: border-box;
}

.services-page .expansion-section {
    background: linear-gradient(135deg, #111827 0%, #1a2744 60%, #111827 100%);
    padding: 88px 5%;
    position: relative;
    overflow: hidden;
}
 
.services-page .expansion-section::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 65%);
    pointer-events: none;
}
 
.services-page .expansion-section::after {
    content: '';
    position: absolute; left: -80px; bottom: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,111,255,0.08) 0%, transparent 65%);
    pointer-events: none;
}
 
.services-page .exp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative; z-index: 1;
}
 
.services-page .exp-left .s-label {
    color: var(--orange2);
}
 
.services-page .exp-left .s-label::before {
    background: var(--orange2);
}
 
.services-page .exp-left .s-title {
    color: #ffffff;
    margin-bottom: 20px;
}
 
.services-page .exp-left .s-title em {
    color: var(--orange2);
}
 
.services-page .exp-left .s-sub {
    color: rgba(255,255,255,0.62);
    margin-bottom: 16px;
}
 
.services-page .exp-left .s-sub-2 {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 36px;
}
 
.services-page .exp-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
 
.services-page .exp-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    padding: 13px 28px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(232,93,4,0.35);
}
 
.services-page .exp-btn-primary:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}
 
.services-page .exp-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
    padding: 12px 24px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 600;
    text-decoration: none; font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
}
 
.services-page .exp-btn-ghost:hover {
    border-color: var(--orange2);
    color: var(--orange2);
}
 
.services-page .exp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
 
.services-page .exp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s;
    text-decoration: none;
}
 
.services-page .exp-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(232,93,4,0.3);
    transform: translateX(6px);
}
 
.services-page .exp-card-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}
 
.services-page .exp-card:hover .exp-card-icon {
    transform: scale(1.1);
}
 
.services-page .exp-card-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}
 
.services-page .exp-card-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}
 
@media (max-width: 960px) {
    .services-page .exp-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
 
    .services-page .exp-left .s-sub-2 {
        max-width: 100%;
    }
}

/* ════════════════════════════════════════════════
   HOMEPAGE — Business Expansion Section
════════════════════════════════════════════════ */

.homepage .expansion-section {
    background: var(--section-alt);
    padding: 88px 5%;
    position: relative;
    overflow: hidden;
}

.homepage .expansion-section::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,93,4,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.homepage .expansion-section::after {
    content: '';
    position: absolute; left: -80px; bottom: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,111,255,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.homepage .exp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative; z-index: 1;
}

.homepage .exp-left .s-label {
    color: var(--orange);
}

.homepage .exp-left .s-label::before {
    background: var(--orange);
}

.homepage .exp-left .s-title {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.homepage .exp-left .s-title em {
    color: var(--orange);
}

.homepage .exp-left .s-sub {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.homepage .exp-left .s-sub-2 {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 36px;
}

.homepage .exp-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.homepage .exp-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    padding: 13px 28px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(232,93,4,0.28);
}

.homepage .exp-btn-primary:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}

.homepage .exp-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(0,0,0,0.15); color: var(--text-secondary);
    padding: 12px 24px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 600;
    text-decoration: none; font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
}

.homepage .exp-btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.homepage .exp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.homepage .exp-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.homepage .exp-card:hover {
    background: #fff;
    border-color: rgba(232,93,4,0.25);
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateX(6px);
}

.homepage .exp-card-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}

.homepage .exp-card:hover .exp-card-icon {
    transform: scale(1.1);
}

.homepage .exp-card-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.homepage .exp-card-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 960px) {
    .homepage .exp-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .homepage .exp-left .s-sub-2 {
        max-width: 100%;
    }
}

/* GRID */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* CF7 auto <p> fix */
.form-grid > p {
  display: contents;
}

/* COLUMN STRUCTURE */
.form-group {
  width: calc(50% - 10px);
}

.form-group.fg-full {
  width: 100%;
}

/* INPUTS */
.form-control,
.form-select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
}

/* ========================= */
/* ✅ CHECKBOX PERFECT FIX */
/* ========================= */

#consent {
    min-height: 15px !important;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
    background: var(--section-alt);
    padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output{
	color: #000;
}

.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

/* ========================= */
/* ✅ BUTTON PERFECT FIX */
/* ========================= */

.btn-send {
  width: auto !important;
  padding: 12px 28px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
}

/* Button wrapper align */
.form-group .btn-send {
  margin-top: 10px;
}

/* OPTIONAL alignment */
.form-group.fg-full:last-child {
  display: flex;
  justify-content: flex-start; /* left */
  /* justify-content: center; */ /* center karna ho to */
}
span.wpcf7-list-item-label {
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 400;
}
.form-group .btn-send {
    margin-top: 10px;
    background: var(--orange);
    color: #fff;
    transition: 0.2s;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #ff6a00;
    color: #fff;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
}



/* single post newsletter form output*/
/*.single-post .wpcf7-response-output {*/
/*    color: white !important;*/
/*}*/

 .wpcf7-response-output {
    color: #e85d04 !important;
}



.hero-map img {
    width: 500px;
    border-radius: 50%;
    height: 500px;
    object-fit: cover;
}
.card-telesens img {
    width: 175px;
    border-radius: 10px;
}
.globe-wrap iframe{
	width: 100%;
	height: 100%;
}


/**/
.footer-copy.footer-policy-link a {
    color: #888888 !important;
    text-decoration: none;
}

.footer-copy.footer-policy-link a:hover {
    color: #888888;
    text-decoration: underline;
}



/**/
.about-map {
    width: 600px !important;
    height: 450px !important;
}

/* Parent */
.has-dropdown {
  position: relative;
}

/* Dropdown box */
.has-dropdown .dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;

  z-index: 9999;
}

/* Show on hover */
.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Remove bullets */
.dropdown li {
  list-style: none;
}

/* Links */
.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: #063689;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.dropdown li a:hover {
  background: linear-gradient(90deg, #e85d04, #0e8e3c);
  color: #fff;
  padding-left: 22px;
}

/* Optional: arrow */
.visual-scene {
  position: relative;
}

.rotating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width:500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10;
}

.rotating-text span {
  position: absolute;
  left: 50%;
  top: 0;
  transform-origin: 0 250px; /* 🔥 HALF of 600 */
  font-size: 16px;
  font-weight:600;
  color:  #e85d04;
}

.rotating-text p {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  animation: rotateText 12s linear infinite;
}


@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media(max-width:768px){
	.rotating-text{
		width:350px;
		height:350px;
	}
	.rotating-text span{
		 transform-origin: 0 175px;
	}
	.about-grid .partners-section{
		height:auto !important;
	}
}

.vk-article-img{
	padding-bottom:20px;
}
.vk-article-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
	    height: 600px;
    object-fit: cover;
}

.vk-article-img img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}


/* ************* */
.vk-hero-video {
  position: relative;
  cursor: pointer; /* full area clickable */
 
}

/* VIDEO */
.vk-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
}

/* IMAGE */
.vk-hero-video img {
  width: 100%;
  display: block;
  z-index: 1;
}

/* PLAY BUTTON */
.vk-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  z-index:12;
}

/* ICON */
.vk-play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 18px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* ACTIVE */
.vk-hero-video.active video {
  opacity: 1;
}

.vk-hero-video.active img {
  opacity: 0;
}

/* ******* */
section#brand-partners{
	display:none !important;
}

/* Team Section css  */
/* Base Styles */
  .vk-coming-soon {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, sans-serif;
  }

  /* Enhanced Glow Effects */
  .vk-coming-soon::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.4), transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(100px);
    animation: floatGlow 8s ease-in-out infinite;
  }

  .vk-coming-soon::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 111, 255, 0.4), transparent 70%);
    bottom: -200px;
    right: -200px;
    filter: blur(100px);
    animation: floatGlow 8s ease-in-out infinite reverse;
  }

  @keyframes floatGlow {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translate(30px, -30px) scale(1.1);
      opacity: 0.8;
    }
  }

  /* Inner Container */
  .vk-cs-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }

  /* Badge Wrapper */
  .vk-cs-badge-wrapper {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
  }

  /* Enhanced Badge */
  .vk-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1.5px solid #e85d04;
    color: #e85d04;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(232, 93, 4, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: pulseBorder 2s ease-in-out infinite;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: #e85d04;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s ease-in-out infinite;
  }

  .badge-dot:first-child {
    animation-delay: 0s;
  }

  .badge-dot:last-child {
    animation-delay: 0.7s;
  }

  @keyframes blink {
    0%, 100% {
      opacity: 0.3;
      transform: scale(0.8);
    }
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }

  @keyframes pulseBorder {
    0%, 100% {
      border-color: #e85d04;
      box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.3);
    }
    50% {
      border-color: #ff7700;
      box-shadow: 0 0 0 8px rgba(232, 93, 4, 0);
    }
  }

  /* Title Styles */
  .vk-cs-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.1s both;
  }

  /* Gradient Text Effect */
  .gradient-text {
    background: linear-gradient(135deg, #e85d04, #ff8c42, #0e6fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
  }

  .launch-text {
    background: linear-gradient(135deg, #0e6fff, #3b8aff, #e85d04);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite reverse;
    display: inline-block;
    position: relative;
  }

  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  /* Description */
  .vk-cs-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .desc-star {
    display: inline-block;
    animation: rotateStar 3s linear infinite;
    font-size: 20px;
  }

  @keyframes rotateStar {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Button Wrapper */
  .vk-cs-btn-wrapper {
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  /* Creative Button */
  .vk-cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 38px;
    border: 2px solid #0e6fff;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(14, 111, 255, 0.05);
    backdrop-filter: blur(5px);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }

  .btn-text {
    position: relative;
    z-index: 2;
  }

  .btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-size: 18px;
  }

  /* Button Hover Effects */
  .vk-cs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e85d04, #0e6fff);
    transition: left 0.5s ease;
    z-index: 1;
  }

  .vk-cs-btn:hover::before {
    left: 0;
  }

  .vk-cs-btn:hover {
    border-color: transparent;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(14, 111, 255, 0.3);
  }

  .vk-cs-btn:hover .btn-icon {
    transform: translateX(8px);
  }

  /* Orbit Ring - Decorative Element */
  .orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(232, 93, 4, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
    pointer-events: none;
  }

  .orbit-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #e85d04;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px #e85d04;
    animation: pulseDot 1.5s ease-in-out infinite;
  }

  .orbit-ring::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    width: 12px;
    height: 12px;
    background: #0e6fff;
    border-radius: 50%;
    transform: translateX(50%);
    box-shadow: 0 0 15px #0e6fff;
    animation: pulseDot 1.5s ease-in-out infinite 0.75s;
  }

  @keyframes orbitRotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes pulseDot {
    0%, 100% {
      opacity: 0.4;
      transform: translateX(-50%) scale(0.8);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) scale(1.2);
    }
  }

  /* Floating Dots Animation */
  .floating-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .floating-dots::before,
  .floating-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e85d04;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatDot 12s linear infinite;
  }

  .floating-dots::before {
    top: 20%;
    left: 10%;
    box-shadow: 
      80px 200px 0 #0e6fff,
      250px 400px 0 #e85d04,
      500px 100px 0 #0e6fff,
      650px 550px 0 #e85d04,
      800px 300px 0 #0e6fff,
      1000px 450px 0 #e85d04,
      1200px 150px 0 #0e6fff;
    animation-duration: 18s;
  }

  .floating-dots::after {
    top: 70%;
    left: 85%;
    width: 3px;
    height: 3px;
    background: #0e6fff;
    box-shadow: 
      -150px -300px 0 #e85d04,
      -400px -100px 0 #0e6fff,
      -600px -450px 0 #e85d04,
      -850px -200px 0 #0e6fff,
      -1100px -500px 0 #e85d04;
    animation-duration: 22s;
    animation-direction: reverse;
  }

  @keyframes floatDot {
    0% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 0.6;
    }
    90% {
      opacity: 0.6;
    }
    100% {
      transform: translateY(-100vh) translateX(50px);
      opacity: 0;
    }
  }

  /* Fade In Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .vk-coming-soon {
      padding: 80px 20px;
    }

    .vk-cs-title {
      font-size: 36px;
    }

    .vk-cs-desc {
      font-size: 16px;
      padding: 0 20px;
    }

    .vk-cs-badge {
      padding: 8px 20px;
      font-size: 12px;
    }

    .orbit-ring {
      width: 200px;
      height: 200px;
    }

    .vk-cs-btn {
      padding: 12px 32px;
      font-size: 14px;
    }
	  
  }
/* ********** */
.vk-africa-expansion {
  padding: 100px 20px;
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* glow background */
.vk-africa-expansion::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #e85d04, transparent 60%);
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.vk-africa-expansion::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0e6fff, transparent 60%);
  bottom: -100px;
  right: -100px;
  filter: blur(120px);
}

.vk-africa-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* heading */
.vk-africa-inner h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.vk-africa-inner h2 span {
  background: linear-gradient(90deg, #e85d04, #0e6fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* text */
.vk-africa-inner p {
  color: #ccc;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 15px;
}
.hero-tiles{
	display:none;
}
.topbar .location {
    display: none !important;
}
.topbar{
	justify-content:end;
}
.footer-top .footer-col ul li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}
@media(max-width:768px)
{
	.cta-btns {
    flex-direction: column;
}
	.services-page .industries-grid {
    display: block;
	}
	.page-template-Service .services-page .industries-grid .ind-card.reveal {
    margin-bottom: 20px !important;
}
.page-template-Service	.services-page .industries-section .industries-grid .ind-card.reveal {
    margin-bottom: 20px;
}
	.services-page .page-hero .hero-inner {
    text-align: left;
}
.partnerships-page .hero-inner {
    text-align: left;
}
.partnerships-page .hero-btns {
   
    justify-content: flex-start;
}
	.partnerships-page .operators-section .operators-grid {
    display: block;
}
	.partnerships-page .operators-section .operators-grid .op-card {
    margin-bottom: 20px;
}
	.partnerships-page .operators-section {
    background: rgb(255, 255, 255);
    padding: 30px 5%;
}
}
.footer-top .footer-brand img {
    border-radius: 12px;
}
.apoint-point{
	font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px;
	color: #000;
	font-family: 'Roboto Flex', system-ui, sans-serif;
    line-height: 1.6;
}
.brand-card .brand-card-had{
	font-size: 0.95rem !important;
    font-weight: 700;
    margin-bottom: 8px;
	text-align: center;
	
}
.edge-item .edge-item-had{
	font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--orange);
}
.footer-col .footer-col-had
{
	font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}