/* =========================
   BASE
========================= */
/* RESET */
* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: clip; }  

:root {
  --primary: #00b8ff;
  --dark: #001f2b;
  --light: #ffffff;
  --border: #e5e7eb;
  --support-bg: #001f2b;
}
:root {
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-active: 0 20px 50px rgba(0,184,255,0.22);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--light);
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   SALES PANEL – FINAL FIX
========================= */

/* Overlay */
.sales-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.3s ease;
}

.sales-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Panel wrapper */
.sales-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  pointer-events: none; /* 🔑 KEY */
  transition: right 0.35s ease;
}

/* Panel active */
.sales-panel.active {
  right: 0;
  pointer-events: auto;
}

/* Form MUST NOT intercept clicks unless active */
.sales-form {
  pointer-events: auto;
}
/* =====================================================
   SALES MODAL – FINAL, CLEAN, CENTERED (ORBITEL)
   ===================================================== */

/* ---------- OVERLAY ---------- */
.sales-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 31, 43, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.3s ease;
}

.sales-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ---------- MODAL PANEL ---------- */
.sales-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  padding: 28px 26px;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.sales-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- CLOSE BUTTON ---------- */
.sales-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- HEADING ---------- */
.sales-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.sales-subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 22px;
}

/* ---------- FORM ---------- */
.sales-form {
  display: flex;
  flex-direction: column;
}

.sales-form input,
.sales-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}

.sales-form textarea {
  resize: none;
  min-height: 90px;
}

.sales-form input:focus,
.sales-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0,184,255,0.15);
}

/* ---------- CTA BUTTON ---------- */
.sales-form .btn-primary {
  width: 100%;
  margin-top: 10px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
}

/* ---------- MOBILE ---------- */
@media (max-width: 480px) {
  .sales-panel {
    max-width: calc(100% - 32px);
    padding: 24px 20px;
    border-radius: 16px;
  }
}
/* =========================
   CUSTOM SELECT – INTERESTED IN
========================= */

.custom-select {
  position: relative;
  margin-bottom: 18px;
  font-family: inherit;
}

.select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.select-trigger i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

/* Dropdown */
.select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 10;
}

/* Options */
.select-options .option {
  padding: 12px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.select-options .option:hover {
  background: #f1f9ff;
}

/* OPEN STATE */
.custom-select.open .select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select.open .select-trigger i {
  transform: rotate(180deg);
}


/* =========================
   TOP SUPPORT BAR
========================= */

.top-support-bar {
  background: var(--support-bg);
  color: #ffffff;
  font-size: 0.85rem;
}

.support-container {
  max-width: 1320px;
  margin: auto;
  padding: 0.45rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.support-item a {
  color: #ffffff;
  font-weight: 500;
}

/* Hide support bar on mobile */
@media (max-width: 900px) {
  .top-support-bar {
    display: none;
  }
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.header-container {
  max-width: 1320px;
  margin: auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Logo */

.logo img {
  height: 52px;
}

/* Right Side */

.header-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

/* Navigation */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-outline {
  border: 1.5px solid #d1d5db;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #fff;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(0,184,255,0.28);
}

/* Mobile Toggle */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .logo img {
    height: 40px;
  }

  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .header-right {
    gap: 1rem;
  }
}
/* Header end */

/* Hero section Start */
.hero-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, rgba(0,184,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,184,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-container {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT CONTENT */

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #334155;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ACTIONS */

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  border: 1.5px solid #cbd5e1;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
}

/* RIGHT VISUAL */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CHANNEL SELECTOR */

.channel-selector {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
}

.channel-btn.active {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(0,184,255,0.35);
}

/* SYSTEM PANEL */

.system-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.8rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.system-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.system-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.step {
  background: #f8fafc;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 500;
}

.step.highlight {
  background: #e0f2fe;
  color: #0369a1;
}

.arrow {
  opacity: 0.6;
}

/* =========================
   TRUST BAR
========================= */

.trust-bar {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.2rem 2rem;
}

.trust-container {
  max-width: 1320px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
  color: #374151;
  flex-wrap: wrap;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-container {
    justify-content: center;
  }
}
/* =========================
   ENHANCED ENGINE FLOW
========================= */

/* Tabs upgrade */
.channel-btn {
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.channel-btn.active {
  transform: translateY(-1px);
}

/* System Panel depth */
.system-panel {
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
}

/* Flow layout */
.system-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* Flow nodes */
.flow-node {
  padding: 0.55rem 1.1rem;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  position: relative;
}

/* Active node */
.flow-node.active {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,184,255,0.35);
}

/* Connector line */
.flow-line {
  width: 26px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,184,255,0.2),
    rgba(0,184,255,0.6)
  );
}

/* Pulse animation for active step */
.flow-node.active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(0,184,255,0.15);
  animation: pulse 2.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.2; }
  100% { opacity: 0.6; }
}
/* Hero section end  */

/* TRUST & COMPLIANCE Start */
.trust-compliance {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 5rem 2rem;
}

.trust-container {
  max-width: 1320px;
  margin: auto;
}

.trust-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-header h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.trust-header p {
  font-size: 1rem;
  color: #475569;
}

/* Badges */

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.badge {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

/* Grid */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */

.trust-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 2.2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,184,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-header h2 {
    font-size: 1.8rem;
  }
}
/* TRUST & COMPLIANCE end  */

/* PLATFORM OVERVIEW Start */
.platform-overview {
  background: #ffffff;
  padding: 5.5rem 2rem;
}

.platform-container {
  max-width: 1320px;
  margin: auto;
}

/* Header */

.platform-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.platform-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-header h2 {
  font-size: 2.3rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.platform-header p {
  font-size: 1rem;
  color: #475569;
}

/* Flow Layout */

.platform-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

/* Steps */

.platform-step {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 2.2rem;
  flex: 1;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.platform-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}

.step-icon {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.platform-step h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.platform-step p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* Connector */

.flow-connector {
  width: 36px;
  background: linear-gradient(
    to bottom,
    rgba(0,184,255,0.0),
    rgba(0,184,255,0.35),
    rgba(0,184,255,0.0)
  );
  align-self: center;
}

/* Responsive */

@media (max-width: 1024px) {
  .platform-flow {
    flex-direction: column;
  }

  .flow-connector {
    width: 100%;
    height: 24px;
    background: linear-gradient(
      to right,
      rgba(0,184,255,0.0),
      rgba(0,184,255,0.35),
      rgba(0,184,255,0.0)
    );
  }
}

@media (max-width: 640px) {
  .platform-header h2 {
    font-size: 1.9rem;
  }
}
/* =========================
   ENHANCED PLATFORM OVERVIEW
========================= */

.enhanced-platform {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* Background glow */
.platform-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,184,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0,184,255,0.08), transparent 45%);
  pointer-events: none;
}

/* Header */

.enhanced-platform .platform-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.enhanced-platform .platform-header h2 {
  font-size: 2.4rem;
}

/* Architecture layout */

.platform-architecture {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Node */

.platform-node {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  width: 100%;
  max-width: 260px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.platform-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

.platform-node.highlight {
  border: 1px solid rgba(0,184,255,0.5);
  box-shadow: 0 40px 90px rgba(0,184,255,0.25);
}

/* Icons */

.node-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

/* Text */

.platform-node h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.platform-node p {
  font-size: 0.9rem;
  color: #475569;
}

/* Flow line */

.platform-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,184,255,0.0),
    rgba(0,184,255,0.6),
    rgba(0,184,255,0.0)
  );
  position: relative;
}

/* Responsive */

@media (max-width: 1100px) {
  .platform-architecture {
    flex-direction: column;
  }

  .platform-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(
      to bottom,
      rgba(0,184,255,0.0),
      rgba(0,184,255,0.6),
      rgba(0,184,255,0.0)
    );
  }
}

@media (max-width: 640px) {
  .enhanced-platform .platform-header h2 {
    font-size: 1.9rem;
  }
}
/* PLATFORM OVERVIEW end  */

/* CHANNELS SECTION Start */
/* Section */
.channels-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.channels-container {
  max-width: 1320px;
  margin: auto;
}

/* Header */
.channels-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.channels-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0284c7;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.channels-header h2 {
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
}

.channels-header p {
  color: #475569;
}

/* Grid */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Card */
.channel-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  padding: 1.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.channel-card.active {
  box-shadow: var(--shadow-active);
  border-color: rgba(0,184,255,0.5);
}

/* Recommended tag */
.channel-card.recommended::after {
  content: "Recommended";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  background: rgba(0,184,255,0.12);
  color: #0284c7;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

/* Icon system */
.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0284c7;
  flex-shrink: 0;
}

.channel-icon.sms::after { content: "SMS"; }
.channel-icon.voice::after { content: "V"; }
.channel-icon.whatsapp::after { content: "WA"; }
.channel-icon.email::after { content: "@"; }
.channel-icon.rcs::after { content: "RCS"; }

/* Text */
.channel-text h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.channel-text p {
  font-size: 0.85rem;
  color: #475569;
}

/* Details */
.channel-details {
  max-width: 720px;
  margin: auto;
  text-align: center;
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  min-height: 180px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.channel-details.fade {
  opacity: 0;
  transform: translateY(6px);
}

.channel-details h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.channel-details p {
  color: #475569;
}

/* Metrics */
.channel-metrics {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.channel-metrics li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 0.4rem;
}

/* =========================
   MOBILE (FINAL FIX)
========================= */

@media (max-width: 640px) {

  .channels-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }

  .channel-card {
    min-width: 85%;
    scroll-snap-align: center;
    opacity: 0.4;
    transform: scale(0.95);
  }

  .channel-card.active {
    opacity: 1;
    transform: scale(1);
  }

  .channels-grid::-webkit-scrollbar {
    display: none;
  }
}
/* CHANNELS SECTION end  */

/* Industry Use-Cases Section Start */
/* =========================
   INDUSTRY FINAL SECTION
========================= */


.industry-final-section {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.industry-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,184,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(0,184,255,0.08), transparent 45%);
}

.industry-final-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.industry-final-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.industry-final-header h2 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

/* Layout */
.industry-final-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

/* Navigation */
.industry-final-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.industry-nav-item {
  padding: 1rem 1.4rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-nav-item.active {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0,184,255,0.35);
}

/* Panel */
.industry-final-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 40px 90px rgba(0,0,0,0.1);
}

.industry-final-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

/* Channels */
.industry-channels {
  display: flex;
  gap: 0.6rem;
  margin: 1.4rem 0;
  flex-wrap: wrap;
}

.channel-tag {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0,184,255,0.12);
  color: #0284c7;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Use cases */
.industry-usecases {
  list-style: none;
  padding: 0;
}

.industry-usecases li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #334155;
  padding-left: 1.4rem;
  position: relative;
}

.industry-usecases li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Mobile */
@media (max-width: 900px) {
  .industry-final-layout {
    grid-template-columns: 1fr;
  }

  .industry-final-nav {
    flex-direction: row;
    overflow-x: auto;
  }

  .industry-nav-item {
    white-space: nowrap;
  }
}

/* Industry Use-Cases Section end  */

/* HOW ORBITEL WORKS Start */
/* =========================
   HOW ORBITEL WORKS – PIPELINE
========================= */

.how-pipeline {
  position: relative;
  padding: 6.5rem 2rem;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.pipeline-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(0,184,255,0.12), transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(0,184,255,0.08), transparent 45%);
}

.pipeline-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.pipeline-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.pipeline-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.pipeline-header p {
  color: #475569;
}

/* Pipeline */
.pipeline {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Step */
.pipeline-step {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pipeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.pipeline-step p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

/* Arrow */
.pipeline-arrow {
  width: 36px;
  position: relative;
}

.pipeline-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,184,255,0.0),
    rgba(0,184,255,0.6),
    rgba(0,184,255,0.0)
  );
}

/* Mobile */
@media (max-width: 900px) {
  .pipeline {
    flex-direction: column;
  }

  .pipeline-arrow {
    height: 28px;
    width: auto;
  }

  .pipeline-arrow::before {
    width: 2px;
    height: 100%;
    margin: auto;
    background: linear-gradient(
      to bottom,
      rgba(0,184,255,0.0),
      rgba(0,184,255,0.6),
      rgba(0,184,255,0.0)
    );
  }
}
.pipeline-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pipeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
/* HOW ORBITEL WORKS end  */

/* PLATFORM CAPABILITIES Start */
/* =========================
   PLATFORM CAPABILITIES – VISUAL
========================= */

.platform-capabilities-visual {
  position: relative;
  padding: 7.5rem 2rem;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  overflow: hidden;
}

/* Background depth */
.capabilities-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,184,255,0.15), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(0,184,255,0.1), transparent 45%);
}

.capabilities-visual-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.capabilities-visual-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}

.capabilities-visual-header h2 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

/* Flow grid */
.capabilities-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

/* Vertical spine */
.capabilities-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0,184,255,0.0),
    rgba(0,184,255,0.35),
    rgba(0,184,255,0.0)
  );
}

/* Card */
.capability-visual-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.6rem 2.4rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
  position: relative;
}

/* Icon */
.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.capability-visual-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.capability-visual-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

/* Subtle hover */
.capability-visual-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.capability-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 55px 110px rgba(0,0,0,0.16);
}

/* Mobile */
@media (max-width: 900px) {
  .capabilities-flow {
    grid-template-columns: 1fr;
  }

  .capabilities-flow::before {
    display: none;
  }
}
/* PLATFORM CAPABILITIES end  */

/* WHY ORBITEL Start */
.why-orbitel-enhanced {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.why-enhanced-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,184,255,0.14), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,184,255,0.1), transparent 45%);
}

/* Container */
.why-enhanced-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.why-enhanced-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 5rem;
}

.why-enhanced-header h2 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.why-enhanced-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* Layout */
.why-enhanced-layout {
  display: grid;
  grid-template-columns: 1fr 60px 0.85fr;
  gap: 3rem;
  align-items: stretch;
}

/* Cards */
.why-enhanced-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 45px 100px rgba(0,0,0,0.12);
}

/* Orbitel emphasis */
.why-enhanced-card.orbitel {
  border-color: rgba(0,184,255,0.5);
  box-shadow: 0 60px 130px rgba(0,184,255,0.28);
}

/* Card head */
.why-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.badge-primary {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Lists */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.9rem;
}

.why-list .icon {
  color: var(--primary);
}

/* Metrics */
.why-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2.2rem;
}

.why-metrics div {
  text-align: center;
}

.why-metrics strong {
  font-size: 1.2rem;
  display: block;
}

.why-metrics span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Spine */
.why-spine {
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0,184,255,0),
    rgba(0,184,255,0.6),
    rgba(0,184,255,0)
  );
  margin: auto;
}

/* Muted side */
.why-enhanced-card.others {
  opacity: 0.7;
}

.why-list.muted li {
  color: #64748b;
}

/* Mobile */
@media (max-width: 900px) {
  .why-enhanced-layout {
    grid-template-columns: 1fr;
  }

  .why-spine {
    display: none;
  }

  .why-enhanced-header h2 {
    font-size: 2.2rem;
  }
}
/* =========================
   WHY ORBITEL – MOBILE FIX
========================= */

@media (max-width: 900px) {

  /* Section spacing */
  .why-orbitel-enhanced {
    padding: 4.5rem 1.2rem;
  }

  /* Header */
  .why-enhanced-header {
    margin-bottom: 3rem;
  }

  .why-enhanced-header h2 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .why-enhanced-header p {
    font-size: 0.95rem;
  }

  /* Layout becomes single column */
  .why-enhanced-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Cards */
  .why-enhanced-card {
    padding: 2rem 1.6rem;
    border-radius: 20px;
  }

  /* Orbitel card emphasis reduced (mobile calm) */
  .why-enhanced-card.orbitel {
    box-shadow: 0 30px 70px rgba(0,184,255,0.2);
  }

  /* Card header */
  .why-card-head {
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .why-card-head h3 {
    font-size: 1.15rem;
  }

  /* Badge smaller */
  .badge-primary {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  /* List items */
  .why-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  /* Icons smaller */
  .why-list .icon {
    font-size: 0.9rem;
    margin-top: 0.15rem;
  }

  /* Metrics stack */
  .why-metrics {
    margin-top: 1.8rem;
    gap: 1.2rem;
    justify-content: space-between;
  }

  .why-metrics strong {
    font-size: 1.05rem;
  }

  .why-metrics span {
    font-size: 0.7rem;
  }

  /* Remove spine & competitor emphasis */
  .why-spine {
    display: none;
  }

  .why-enhanced-card.others {
    opacity: 0.55;
    padding: 1.8rem 1.4rem;
  }
}

/* WHY ORBITEL end  */

/*  CUSTOMER PROOF SECTION Start */
.customer-proof-band {
  position: relative;
  padding: 6rem 2rem;
  background: #001f2b;
  color: #ffffff;
  overflow: hidden;
}

/* Hard separator from previous section */
.customer-proof-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}

/* Subtle grid texture */
.customer-proof-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.customer-proof-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.customer-proof-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.customer-proof-header .platform-eyebrow {
  color: #38bdf8;
}

.customer-proof-header h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin: 0.6rem 0;
}

.customer-proof-header p {
  color: rgba(255,255,255,0.75);
}

/* LOGO STRIP */
.logo-strip-wrapper {
  position: relative;
  overflow: hidden;
  /* background: rgba(255,255,255,0.06); */
  /* border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; */
  padding: 1.4rem 0;
  margin-bottom: 3.5rem;
}

.logo-strip {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}

.logo-strip-wrapper:hover .logo-strip {
  animation-play-state: paused;
}

.logo-strip img {
  height: 55px;
  max-width: 140px;
  object-fit: contain;
  
  
  transition: all 0.3s ease;
}

.logo-strip img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

/* Infinite scroll */
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* COUNTERS */
.trust-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.counter {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
}

.counter strong {
  font-size: 2rem;
  display: block;
  color: #38bdf8;
}

.counter span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 900px) {
  .trust-counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-counters {
    grid-template-columns: 1fr;
  }
}
/*  CUSTOMER PROOF SECTION end  */

/* Customer Testimonials Start */
/* =========================
   CUSTOMER TESTIMONIALS – ENHANCED
========================= */

.customer-testimonials-enhanced {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
}

/* Soft background glow */
.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,184,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,184,255,0.08), transparent 45%);
  pointer-events: none;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.testimonials-header {
  max-width: 720px;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin: 0.6rem 0;
}

.testimonials-header p {
  color: #475569;
}

/* Layout */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: stretch;
}

/* Featured */
.testimonial-featured {
  background: #ffffff;
  border-radius: 26px;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 50px 120px rgba(0,0,0,0.12);
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: rgba(0,184,255,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-featured .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #0f172a;
  margin-bottom: 2.2rem;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stack */
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-compact {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid #e5e7eb;
}

.testimonial-compact p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.testimonial-compact span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 2.1rem;
  }
}
/* Customer Testimonials end  */

/* DEVELOPER FIRST section Start */
.developer-first {
  padding: 7rem 2rem;
  background: #0b1220; /* deep tech blue */
  color: #ffffff;
}

.developer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Content */
.developer-content h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0.8rem 0 1.2rem;
}

.developer-content p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.developer-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
}

.developer-points li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-left: 1.2rem;
}

.developer-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* Actions */
.developer-actions {
  display: flex;
  gap: 1rem;
}

/* Code */
.developer-code {
  background: #020617;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.code-block {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #e5e7eb;
  white-space: pre-wrap;
}

.code-caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive (same layout, stacked) */
@media (max-width: 900px) {
  .developer-container {
    grid-template-columns: 1fr;
  }

  .developer-content h2 {
    font-size: 2.1rem;
  }
}
/* DEVELOPER FIRST section end  */

/*  SECURITY & RELIABILITY Start */
.security-reliability {
  position: relative;
  padding: 7rem 2rem;
  background: #020617; /* deep infra */
  color: #ffffff;
  overflow: hidden;
}

/* Subtle grid background */
.security-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
}

.security-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.security-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

.security-header .platform-eyebrow {
  color: #38bdf8;
}

.security-header h2 {
  font-size: 2.5rem;
  margin: 0.6rem 0;
}

.security-header p {
  color: rgba(255,255,255,0.75);
}

/* Grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Cards */
.security-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2.4rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.security-card.highlight {
  border-color: rgba(56,189,248,0.6);
  box-shadow: 0 35px 80px rgba(56,189,248,0.25);
}

.security-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.security-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-card li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
}

.security-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* Metrics */
.security-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
}

.metric strong {
  font-size: 1.4rem;
  display: block;
  color: #38bdf8;
}

.metric span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-header h2 {
    font-size: 2.1rem;
  }
}
/* SECURITY & RELIABILITY end  */

/* FAQ SECTION Start */
.faq-section {
  padding: 6.5rem 2rem;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-size: 2.4rem;
  margin: 0.6rem 0;
}

.faq-header p {
  color: #475569;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 1.4rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #f1f5f9;
}

/* Icon */
.faq-icon {
  font-size: 1.2rem;
  color: #0284c7;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 1.2rem 1.6rem 1.6rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 640px) {
  .faq-header h2 {
    font-size: 2rem;
  }
}
.faq-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

/* Soft background texture */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,184,255,0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0,184,255,0.06), transparent 45%);
  pointer-events: none;
}

/* Container lift */
.faq-container {
  position: relative;
  z-index: 1;
}
/* FAQ list container polish */
.faq-list {
  background: #ffffff;
  border-radius: 22px;
  padding: 0.6rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}
/* Item refinement */
.faq-item {
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* Active item emphasis */
.faq-item.active {
  border-color: rgba(0,184,255,0.35);
}
.faq-header {
  margin-bottom: 3rem;
}

.faq-header p {
  max-width: 620px;
}
/* FAQ SECTION end  */

/*FINAL CTA  Start */
.final-cta-compact {
  padding: 4.5rem 2rem;
  background: #020617;
  display: flex;
  justify-content: center;
}

/* CTA card */
.cta-card {
  background: linear-gradient(180deg, #020617, #020617);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  max-width: 720px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

/* Eyebrow */
.cta-card .platform-eyebrow {
  color: #38bdf8;
}

/* Heading */
.cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.25;
  margin: 0.8rem 0 1rem;
  color: #ffffff;
}

/* Text */
.cta-card p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-outline.light {
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}

/* Trust points */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Mobile */
@media (max-width: 640px) {
  .cta-card {
    padding: 2.5rem 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}
/* FINAL CTA end  */

/* FOOTER WITH CONTACT :start */
/* =========================
   CONTACT BAND
========================= */

.footer-contact-band {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 4rem 2rem;
}

.contact-band-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-band-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.contact-band-text p {
  color: #475569;
  max-width: 420px;
  margin-bottom: 1.2rem;
}

.contact-quick {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
}

.contact-quick li {
  margin-bottom: 0.4rem;
}

/* Form */
.contact-band-form {
  display: grid;
  gap: 0.8rem;
}

.contact-band-form input,
.contact-band-form textarea {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-band-form textarea {
  min-height: 90px;
  resize: none;
}

.contact-band-form input:focus,
.contact-band-form textarea:focus {
  outline: none;
  border-color: #00b8ff;
  box-shadow: 0 0 0 3px rgba(0,184,255,0.15);
}

.contact-band-form button {
  width: fit-content;
  padding: 0.6rem 1.4rem;
  background: #00b8ff;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.contact-band-form button:hover {
  background: #009edc;
  box-shadow: 0 8px 20px rgba(0,184,255,0.35);
}

.contact-band-form button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0,184,255,0.25);
}

/* =========================
   FOOTER CORE
========================= */

.footer-core-advanced {
  background: #020617;
  color: #ffffff;
  padding: 3.5rem 2rem 2.5rem;
}

.footer-core-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-brand h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.6;
}

/* Footer nav */
.footer-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #38bdf8;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #38bdf8;
  transition: width 0.25s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Newsletter */
.footer-newsletter {
  max-width: 1200px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.6rem;
}

.footer-newsletter form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: none;
}

.footer-newsletter button {
  padding: 0.6rem 1.2rem;
  background: #00b8ff;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copyright {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 900px) {
  .contact-band-inner,
  .footer-core-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}

@media (max-width: 640px) {
  .footer-contact-band {
    padding: 3rem 1.25rem;
  }

  .footer-core-advanced {
    padding: 3rem 1.25rem 2rem;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
  }
}
/* =========================
   FOOTER SITEMAP
========================= */

.footer-sitemap {
  background: #020617;
  padding: 4rem 2rem;
  color: #ffffff;
}

.footer-sitemap-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

.footer-col h5 {
  color: #38bdf8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: inherit;
}

.footer-col a:hover {
  color: #38bdf8;
}

/* =========================
   BRAND STRIP
========================= */

.footer-brand-strip {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem 2rem;
}

.footer-brand-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-brand-inner h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.footer-brand-inner p {
  max-width: 620px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copyright {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .footer-sitemap-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-sitemap-inner {
    grid-template-columns: 1fr;
  }

  .footer-sitemap {
    padding: 3rem 1.25rem;
  }

  .footer-brand-strip {
    padding: 2rem 1.25rem;
  }
}
/* =========================
   FOOTER COLUMN ALIGNMENT
========================= */

.footer-sitemap-inner {
  align-items: start;
}

/* Normalize column spacing */
.footer-col {
  padding-right: 0.5rem;
}

.footer-col h5 {
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

/* Address block readability */
.footer-col p {
  max-width: 240px;
}

/* =========================
   BRAND STRIP (ENHANCED)
========================= */

.footer-brand-strip {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 2.8rem 2rem;
}

.footer-brand-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: center;
}

/* Logo */
.footer-logo {
  height: 36px;
  margin-bottom: 0.8rem;
}

/* Brand text */
.footer-brand-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.6;
}

/* Socials */
.footer-brand-right span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
}
/* =========================
   MOBILE FOOTER FIX
========================= */

@media (max-width: 900px) {

  .footer-brand-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-brand-right {
    align-self: flex-start;
  }

  .footer-socials {
    gap: 1rem;
  }

  .footer-col p {
    max-width: 100%;
  }
}
/* =========================
   FOOTER SOCIAL 
========================= */

.footer-follow {
  background: linear-gradient(180deg, #050816, #02030f);
  padding: 40px 60px;
}

.follow-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c7d0ea; /* brighter */
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ICON CONTAINER */
.footer-socials {
  display: flex;
  gap: 14px;
}

/* ICON CIRCLES */
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  /* FIX: brighter contrast */
  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  /* FIX: brighter icon */
  color: #ffffff;

  font-size: 16px;
  transition: all 0.3s ease;
}

/* HOVER */
.footer-socials a:hover {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  transform: translateY(-2px);
}

/* FOOTER WITH CONTACT end */
/* Index page End */

/* About Us page Start */
/* Hero section start */
/* =========================
   ABOUT HERO SECTION
========================= */

.about-hero {
  padding: 5.5rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(0,184,255,0.12), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0,184,255,0.08), transparent 45%);
}

.about-hero-container {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Content */

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.about-hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-hero-content h1 span {
  color: var(--primary);
}

.about-hero-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  opacity: 0.9;
}

/* Stats */

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.2rem 0;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.stat span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

/* Actions */

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right Visual */

.about-hero-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  width: 100%;
}

.glass-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.glass-card li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.glass-card i {
  color: var(--primary);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .about-hero-content p {
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .about-hero {
    padding: 4rem 1.2rem;
  }

  .about-hero-content h1 {
    font-size: clamp(1.9rem, 6vw, 2.3rem);
    line-height: 1.25;
  }

  .about-hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  /* Stack stats vertically */
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  /* Full width buttons */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-actions a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .glass-card {
    padding: 1.6rem;
  }
}

/*Hero section end */

/*  WHO WE ARE section start */

.who-we-are {
  padding: 5.5rem 2rem;
  background: #ffffff;
}

.who-container {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

/* Left Content */

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.who-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.who-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Right Cards */

.who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.who-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
}

.who-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.who-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.who-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .who-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }
}
/* WHO WE ARE section end */

/*WHY ORBITEL EXISTS start */
.purpose-section {
  padding: 5.5rem 2rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}

.purpose-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.purpose-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
  margin-bottom: 4rem;
}

.purpose-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.purpose-header p {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Cards */

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.purpose-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
}

/* Highlight Vision */

.purpose-card.highlight {
  background:
    linear-gradient(180deg, rgba(0,184,255,0.08), rgba(0,184,255,0.02));
  border-color: rgba(0,184,255,0.25);
}

/* Icon */

.purpose-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.purpose-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}

/* Text */

.purpose-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.purpose-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    padding: 2rem;
  }
}
/*WHY ORBITEL EXISTS end */

/*TRUST & COMPLIANCE  start */
.trust-section {
  padding: 5.5rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(0,184,255,0.08), transparent 45%),
    radial-gradient(circle at bottom right, rgba(0,184,255,0.05), transparent 45%);
}

.trust-container {
  max-width: 1320px;
  margin: auto;
}

/* Header */

.trust-header {
  text-align: center;
  max-width: 780px;
  margin: auto;
  margin-bottom: 4rem;
}

.trust-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.trust-header p {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Grid */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
}

/* Icon */

.trust-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* Text */

.trust-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 1.8rem;
  }
}
/*TRUST & COMPLIANCE  end */

/*How We Operate start */
.operate-section {
  padding: 5.5rem 2rem;
  background: #ffffff;
}

.operate-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.operate-header {
  text-align: center;
  max-width: 780px;
  margin: auto;
  margin-bottom: 4.5rem;
}

.operate-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.operate-header p {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Steps */

.operate-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}

.operate-step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.operate-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
}

/* Step Number */

.step-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

/* Text */

.operate-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.operate-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   TABLET & MOBILE
========================= */

@media (max-width: 1100px) {
  .operate-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .operate-steps {
    grid-template-columns: 1fr;
  }
}
/*How We Operate end */

/*WHO WE SERVE start */
.industries-scenarios {
  padding: 6rem 2rem;
  background: #ffffff;
}

.industries-scenarios-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.industries-scenarios-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 3.5rem;
}

/* Rail */

.industry-rail {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.rail-item {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 500;
  cursor: pointer;
}

.rail-item.active {
  background: rgba(0,184,255,0.1);
  border-color: rgba(0,184,255,0.4);
}

/* Scenario Panel */

.industry-scenario-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.scenario {
  display: none;
}

.scenario.active {
  display: block;
}

.scenario h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.scenario-context {
  margin: 0.8rem 0 1.6rem;
  opacity: 0.9;
}

/* Flow */

.scenario-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.scenario-flow span {
  background: rgba(0,184,255,0.08);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
}

/* Points */

.scenario-points {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.scenario-points li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 0.6rem;
}
/*WHO WE SERVE end */

/*OUR VALUES start */

.values-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff, #f9fbfc);
}

.values-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */

.values-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 4.5rem;
}

.values-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.values-header p {
  font-size: 1.02rem;
  opacity: 0.9;
}

/* Timeline */

.values-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  position: relative;
}

.values-timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

/* Item */

.value-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.value-index {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,184,255,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Content */

.value-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .values-timeline::before {
    display: none;
  }

  .value-item {
    gap: 1.2rem;
  }
}
/*OUR VALUES end */

/*LEADERSHIP & TEAM start */
/* =========================
   SECTION
========================= */

.leadership-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff, #f9fbfc);
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.leadership-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
  margin-bottom: 4rem;
}

/* =========================
   WRAPPER (Manual Scroll Enabled)
========================= */

.leadership-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
}

.leadership-wrapper::-webkit-scrollbar {
  display: none;
}

/* =========================
   TRACK (Auto Scroll Animation)
========================= */

.leadership-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: autoScroll 40s linear infinite;
}

/* Pause on hover */
.leadership-wrapper:hover .leadership-track {
  animation-play-state: paused;
}

/* Infinite movement */
@keyframes autoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   CARD
========================= */

.leader-card {
  width: 340px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.leader-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.leader-details {
  padding: 1.6rem;
}

@media (max-width: 768px) {
  .leader-card {
    width: 260px;
  }

  .leader-photo img {
    height: 240px;
  }
}

/* LEADERSHIP & TEAM end */

/* =========================
   TEAM SIZE & CULTURE
========================= */

.culture-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.culture-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.culture-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
  margin-bottom: 4.5rem;
}

.culture-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.culture-header p {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Layout */

.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Stats */

.culture-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.stat-box span {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Principles */

.culture-principles {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.principle h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.principle p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .culture-layout {
    grid-template-columns: 1fr;
  }

  .culture-stats {
    grid-template-columns: 1fr;
  }
}
/*LEADERSHIP & TEAM end */

/*Company Details start */
.company-details-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff, #f9fbfc);
}

.company-details-container {
  max-width: 900px;
  margin: auto;
}

/* Header */

.company-details-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 4rem;
}

.company-details-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.company-details-header p {
  font-size: 1.02rem;
  opacity: 0.9;
}

/* Grid */

.company-details-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Rows */

.detail-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  opacity: 0.85;
}

.detail-value {
  font-weight: 500;
}

.detail-value a {
  color: var(--primary);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .detail-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
/*Company Details end */

/*CTA start */
.primary-cta {
  padding: 6.5rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(0,184,255,0.35), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,184,255,0.25), transparent 40%),
    linear-gradient(135deg, #001f2b, #00151f);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.primary-cta-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Content */

.cta-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ddcff;
  margin-bottom: 0.8rem;
}

.primary-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.primary-cta p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 2.4rem;
  opacity: 0.95;
}

/* Buttons */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
}

/* Outline button override for dark bg */

.primary-cta .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}

.primary-cta .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .primary-cta {
    padding: 5rem 1.6rem;
  }
}
/*CTA  end */
/* About Us page End */

/*  Contact us page start */
/*HERO SECTION start */
.contact-hero {
  padding: 5.5rem 2rem 4.5rem;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fbfc 100%
  );
}

.contact-hero-container {
  max-width: 1200px;
  margin: auto;
}

/* Content */

.contact-hero-content {
  max-width: 720px;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.contact-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2.4rem;
}

/* Meta Info */

.contact-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.meta-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.meta-item span {
  font-size: 0.95rem;
  color: #475569;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {
  .contact-hero-meta {
    grid-template-columns: 1fr;
  }
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* RIGHT PANEL */

.contact-hero-panel {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f8fbfd
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-hero-panel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* Points */

.contact-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-points li {
  font-size: 0.95rem;
  color: #334155;
}

/* Footer */

.contact-panel-footer {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: #64748b;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-panel {
    margin-top: 2rem;
  }
}
/*HERO SECTION end */

/* Primary Contact Form start */
.contact-enterprise-section {
  padding: 7rem 2rem;
  background: #ffffff;
}

.contact-enterprise-container {
  max-width: 1200px;
  margin: auto;
}

.contact-enterprise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: flex-start;
}

/* LEFT CONTENT */

.contact-enterprise-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.enterprise-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2rem;
}

.enterprise-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}

.enterprise-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.6rem;
}

.enterprise-meta span {
  font-size: 0.9rem;
  color: #64748b;
}

/* RIGHT FORM */

.contact-enterprise-form {
  background: #d0ebf7;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.8rem;
}

.contact-enterprise-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.enterprise-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enterprise-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.enterprise-form input,
.enterprise-form select,
.enterprise-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: #ffffff;
}

.enterprise-form input:focus,
.enterprise-form select:focus,
.enterprise-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,184,255,0.12);
}

/* CHECKBOX FIX */

.checkbox-row {
  margin-top: 0.6rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #334155;
}

.checkbox-item input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-item a {
  color: var(--primary);
  text-decoration: underline;
}

/* BUTTON */

.enterprise-form button {
  margin-top: 1.2rem;
}

/* NOTE */

.form-note {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.6rem;
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-enterprise-grid {
    grid-template-columns: 1fr;
  }
}

/* Make right form scrollable */
.contact-enterprise-form {
  max-height: 78vh;           /* keeps form contained */
  overflow-y: auto;
}

/* Optional: smooth scrollbar styling */
.contact-enterprise-form::-webkit-scrollbar {
  width: 6px;
}

.contact-enterprise-form::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.contact-enterprise-form::-webkit-scrollbar-track {
  background: transparent;
}

/* Mobile tweak */
@media (max-width: 900px) {
  .contact-enterprise-form {
    max-height: none;        /* let it flow naturally on mobile */
    overflow: visible;
  }
}
/* Primary Contact Form end */
/*CONTACT INFORMATION start */
.contact-info-section {
  padding: 6.5rem 2rem;
  background: #f9fbfd;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.contact-info-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.contact-info-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.contact-info-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

/* Grid */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Cards */

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.6rem;
}

.contact-info-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.2rem;
}

/* List */

.contact-info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
}

/* Mobile */

@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
/*CONTACT INFORMATION end */

/*Location Section start */
.location-section {
  padding: 6.5rem 2rem;
  background: #ffffff;
}

.location-container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Content */

.location-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.location-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2.2rem;
}

.location-details p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Map */

.location-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 300px;
  }
}
/*Location Section end */

/*Trust & Compliance start */
.trust-compliance-section {
  padding: 7rem 2rem;
  background: #f9fbfd;
}

.trust-compliance-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.trust-compliance-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

.trust-compliance-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.trust-compliance-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

/* Grid */

.trust-compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* Cards */

.trust-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.trust-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Highlights Bar */

.compliance-highlights {
  margin-top: 4rem;
  padding: 1.6rem 2rem;
  border-radius: 16px;
  background: #001f2b;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px) {
  .trust-compliance-grid {
    grid-template-columns: 1fr;
  }

  .compliance-highlights {
    text-align: center;
    justify-content: center;
  }
}
/*Trust & Compliance end */

/*Contact FAQ start */
.contact-faq-section {
  padding: 7rem 2rem;
  background: #ffffff;
}

.contact-faq-container {
  max-width: 900px;
  margin: auto;
}

.contact-faq-header {
  margin-bottom: 3.5rem;
}

.contact-faq-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.contact-faq-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

/* FAQ LIST */

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* DETAILS ITEM */

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

/* SUMMARY */

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* CONTENT */

.faq-content {
  padding: 0 1.8rem 1.6rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

/* OPEN STATE */

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* HOVER */

.faq-item summary:hover {
  background: #f9fbfd;
}

/* MOBILE */

@media (max-width: 600px) {
  .faq-item summary {
    font-size: 0.95rem;
  }
}
/*Contact FAQ end */

/*CTA start */
.final-cta-section {
  padding: 7rem 2rem;
  background: linear-gradient(
    135deg,
    #001f2b 0%,
    #002f44 100%
  );
  color: #ffffff;
}

.final-cta-container {
  max-width: 1200px;
  margin: auto;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

/* Content */

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.final-cta-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e5f3fa;
}

/* Actions */

.final-cta-actions {
  display: flex;
  gap: 1.4rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.final-cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

/* Mobile */

@media (max-width: 900px) {
  .final-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 2rem;
  }

  .final-cta-actions {
    justify-content: center;
  }

  .final-cta-content h2 {
    font-size: 2rem;
  }
}
/*CTA end */
/*  Contact us page end */

/* Terma and condition  page start */
/* Hero start */
.legal-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 20px;
      font-family: 'Manrope', sans-serif;
    }
    .legal-page h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .legal-page p {
      line-height: 1.8;
      color: #444;
      margin-bottom: 16px;
    }
    .legal-page h2 {
      margin-top: 40px;
      font-size: 22px;
      color: #111;
    }
    .legal-page ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    .legal-page ul li {
      margin-bottom: 10px;
      color: #444;
    }
/*Herro end */
/* Terms and condition page end */

/*Privacy policy start */
/* same as terms and condition */
/*Privacy policy  end */

/*solutions page start */
/*HERO SECTION start */
.solutions-hero {
  padding: 130px 0 100px;
  background:
    radial-gradient(600px at 85% 20%, rgba(0,184,255,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff, #f9fbfd);
}

.solutions-hero-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.solutions-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,184,255,0.12);
  border-radius: 999px;
}

.solutions-hero-content h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--dark);
}

.solutions-hero-content h1 span {
  color: var(--primary);
}

.solutions-hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  max-width: 560px;
  margin-bottom: 36px;
}

.solutions-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* RIGHT */

.solutions-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-standard),
              box-shadow 0.35s var(--ease-standard);
}

.solution-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.solution-card span {
  font-size: 0.85rem;
  color: #475569;
}

.solution-card.accent {
  border-color: rgba(0,184,255,0.4);
  box-shadow: var(--shadow-active);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .solutions-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .solutions-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .solutions-hero-content h1 {
    font-size: 2.2rem;
  }

  .solutions-hero-visual {
    grid-template-columns: 1fr;
  }
}
/* =========================
   ROUTE GAME
========================= */

.route-game {
  display: flex;
  justify-content: center;
}

.game-card {
  width: 100%;
  max-width: 420px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}

.game-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.game-sub {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 22px;
}

.game-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.game-options button {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #f8fafc;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-standard);
}

.game-options button:hover {
  background: rgba(0,184,255,0.1);
  border-color: var(--primary);
}

.game-result {
  border-top: 1px dashed var(--border);
  padding-top: 18px;
  text-align: center;
}

.result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.result-output {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
/*HERO SECTION end */

/*INDUSTRY SOLUTIONS SECTION start */
.industry-paths {
  padding: 90px 0;
  background:
    radial-gradient(800px at 18% 22%, rgba(0,184,255,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.industry-paths-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* =========================
   HEADER
========================= */

.industry-paths-header {
  max-width: 520px;
  margin-bottom: 44px;
}

.industry-paths-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--dark);
}

.industry-paths-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

/* =========================
   LAYOUT
========================= */

.industry-game {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: flex-start;
}

/* =========================
   LEFT SELECTOR (CONTROL PANEL)
========================= */

.industry-selector {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(0,184,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.industry-selector button {
  display: block;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.industry-selector button:last-child {
  margin-bottom: 0;
}

.industry-selector button:hover {
  transform: translateX(4px);
  border-color: rgba(0,184,255,0.45);
  box-shadow: 0 10px 26px rgba(0,184,255,0.18);
}

.industry-selector button.active {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  border: none;
  box-shadow: 0 14px 34px rgba(0,184,255,0.45);
}

/* =========================
   RIGHT DISPLAY (SOLUTION CANVAS)
========================= */

.industry-display {
  position: relative;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid rgba(0,184,255,0.18);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(0,184,255,0.12);
}

.industry-display::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(520px at 88% 18%, rgba(0,184,255,0.12), transparent 60%);
  pointer-events: none;
}

/* =========================
   CONTENT HIERARCHY
========================= */

.industry-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.industry-display h3 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--dark);
}

.industry-display p {
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
  max-width: 560px;
  margin-bottom: 22px;
}

.industry-channels {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,184,255,0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 26px;
}

/* =========================
   CTA
========================= */

.industry-display .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0,184,255,0.35);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .industry-game {
    grid-template-columns: 1fr;
  }

  .industry-selector {
    order: 2;
  }

  .industry-display {
    order: 1;
  }
}

@media (max-width: 576px) {
  .industry-paths {
    padding: 70px 0;
  }

  .industry-paths-header h2 {
    font-size: 1.9rem;
  }

  .industry-display {
    padding: 32px;
  }
}
/* =========================
   BOTPENGUIN HARD FIX
========================= */

/* Disable full-screen iframe blocking */
iframe[src*="botpenguin"],
iframe[id*="botpenguin"] {
  pointer-events: none !important;
}

/* Re-enable clicks ONLY on the visible chat bubble */
#botpenguin-widget,
#botpenguin-widget iframe {
  pointer-events: auto !important;
}
.industry-paths {
  position: relative;
  z-index: 99999;
}
.industry-selector button,
.industry-display .btn-primary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/*INDUSTRY SOLUTIONS SECTION end */

/*SOLUTION DETAIL SECTION start */

.solution-detail {
  padding: 90px 0;
  background: #ffffff;
}

.solution-detail-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.solution-detail-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.solution-detail-header .eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.solution-detail-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--dark);
}

.solution-detail-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

/* GRID */

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* COLUMNS */

.solution-col {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
}

.solution-col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--dark);
}

.solution-col ul {
  list-style: none;
  padding: 0;
}

.solution-col li {
  font-size: 0.95rem;
  color: #475569;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}

.solution-col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* HIGHLIGHT (Orbitel Solution) */

.solution-col.highlight {
  background:
    radial-gradient(400px at 80% 10%, rgba(0,184,255,0.15), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.4);
  box-shadow: var(--shadow-active);
}

/* CTA */

.solution-detail-cta {
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .solution-col {
    padding: 26px;
  }

  .solution-detail-header h2 {
    font-size: 1.9rem;
  }
}

/*SOLUTION DETAIL SECTION end */

/* CHANNEL TO SOLUTION MAPPING start */
.channel-mapping {
  padding: 90px 0;
  background: #ffffff;
}

.channel-mapping-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.channel-mapping-header {
  max-width: 560px;
  margin-bottom: 50px;
}

.channel-mapping-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--dark);
}

.channel-mapping-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

/* GRID */

.channel-mapping-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* CARD */

.channel-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--ease-standard);
}

.channel-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.channel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.channel-card li {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}

.channel-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* HIGHLIGHT (WhatsApp / Key Channel) */

.channel-card.highlight {
  border-color: rgba(0,184,255,0.45);
  box-shadow: var(--shadow-active);
}

/* HOVER */

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-active);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .channel-mapping-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .channel-mapping-grid {
    grid-template-columns: 1fr;
  }

  .channel-mapping-header h2 {
    font-size: 1.9rem;
  }
}
/* Grid tightening */
.channel-mapping-grid {
  align-items: stretch;
}

/* Card layout correction */
.channel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 22px;
  min-height: 100%;
}

/* Channel title (SMS, Voice, WhatsApp…) */
.channel-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

/* Divider under title */
.channel-card h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: var(--primary);
  border-radius: 2px;
}

/* List reset */
.channel-card ul {
  margin-top: 18px;
}

/* Compact, readable bullets */
.channel-card li {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 10px;
  padding-left: 14px;
  word-break: normal;
}

/* Remove visual heaviness */
.channel-card:hover {
  transform: translateY(-3px);
}

/* Highlight card refinement */
.channel-card.highlight {
  background:
    linear-gradient(180deg, #ffffff, #f4fbff);
}

/* =========================
   MOBILE FIX (CRITICAL)
========================= */

@media (max-width: 700px) {
  .channel-mapping {
    padding: 70px 0;
  }

  .channel-mapping-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .channel-card {
    padding: 22px 20px;
  }

  .channel-card h4 {
    font-size: 1.05rem;
  }

  .channel-card li {
    font-size: 0.88rem;
  }
}
/* CHANNEL TO SOLUTION MAPPING end */

/*why orbitel for solution start */
.why-orbitel {
  padding: 90px 0;
  background:
    radial-gradient(700px at 85% 20%, rgba(0,184,255,0.14), transparent 60%),
    #ffffff;
}

.why-orbitel-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.why-orbitel-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.why-orbitel-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-orbitel-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

/* GRID */

.why-orbitel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--ease-standard);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}

/* HOVER */

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-active);
  border-color: rgba(0,184,255,0.35);
}

/* CTA */

.why-orbitel-cta {
  margin-top: 60px;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .why-orbitel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-orbitel {
    padding: 70px 0;
  }

  .why-orbitel-grid {
    grid-template-columns: 1fr;
  }

  .why-orbitel-header h2 {
    font-size: 1.9rem;
  }
}
/*why orbitel for solution end */

/*WORKFLOW / ARCHITECTURE SECTION start */
/* =========================
   INTERACTIVE ARCHITECTURE
========================= */

.interactive-architecture {
  padding: 110px 0;
  background: #ffffff;
}

.ia-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.ia-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.ia-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
  display: inline-block;
}

.ia-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.ia-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
}

/* LAYOUT */

.ia-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

/* DIAGRAM */

.ia-diagram {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ia-layer {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ia-layer:hover {
  border-color: var(--primary);
}

.ia-layer.active {
  background:
    radial-gradient(400px at 80% 10%, rgba(0,184,255,0.15), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.5);
  box-shadow: var(--shadow-active);
}

/* DETAIL PANEL */

.ia-detail-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  background: #ffffff;
  min-height: 420px;
}

.ia-detail {
  display: none;
}

.ia-detail.active {
  display: block;
}

.ia-detail h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.ia-detail p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}

.ia-detail ul {
  padding-left: 18px;
}

.ia-detail li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #334155;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ia-layout {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   INTERACTIVE ARCHITECTURE – ENHANCED DESIGN
===================================================== */

.interactive-architecture {
  padding: 120px 0;
  background:
    radial-gradient(1200px at 20% -10%, #f1f9ff, transparent 60%),
    #ffffff;
}

/* ---------- HEADER ---------- */

.ia-header h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.ia-header p {
  font-size: 1.05rem;
  max-width: 640px;
}

/* ---------- LAYOUT ---------- */

.ia-layout {
  align-items: flex-start;
}

/* ---------- DIAGRAM (LEFT) ---------- */

.ia-diagram {
  position: relative;
  padding-left: 18px;
}

/* vertical spine (architecture flow line) */
.ia-diagram::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,184,255,0.5),
    transparent
  );
}

/* architecture layer buttons */
.ia-layer {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.25s ease;
}

/* left dot indicator */
.ia-layer::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

/* hover */
.ia-layer:hover {
  border-color: var(--primary);
  background: #f8fcff;
}

/* ACTIVE STATE (IMPORTANT) */
.ia-layer.active {
  background:
    linear-gradient(180deg, #ffffff, #f4fbff);
  border-color: rgba(0,184,255,0.6);
  box-shadow: 0 20px 50px rgba(0,184,255,0.25);
  color: var(--dark);
}

.ia-layer.active::before {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,184,255,0.25);
}

/* ---------- DETAIL PANEL (RIGHT) ---------- */

.ia-detail-panel {
  background:
    linear-gradient(180deg, #ffffff, #f8fcff);
  border-radius: 20px;
  padding: 42px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* subtle top indicator */
.ia-detail-panel::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  margin-bottom: 24px;
}

/* content animation */
.ia-detail {
  animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* headings */
.ia-detail h4 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

/* description */
.ia-detail p {
  font-size: 0.97rem;
  max-width: 620px;
}

/* bullet list as specs */
.ia-detail ul {
  margin-top: 18px;
  padding-left: 0;
}

.ia-detail li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #334155;
}

.ia-detail li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .ia-header h2 {
    font-size: 2.1rem;
  }

  .ia-detail-panel {
    padding: 30px 26px;
  }

  .ia-diagram::before {
    display: none;
  }

  .ia-layer::before {
    display: none;
  }
}
/*WORKFLOW / ARCHITECTURE SECTION end */

/*Use Case Highlight start */
/* =========================
   USE CASE HIGHLIGHTS
========================= */

.usecase-highlight {
  padding: 120px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.usecase-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.usecase-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.usecase-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
  display: inline-block;
}

.usecase-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.usecase-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
}

/* LAYOUT */

.usecase-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

/* USE CASE LIST */

.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usecase-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}

.usecase-item:hover {
  border-color: var(--primary);
  background: #f8fcff;
}

.usecase-item.active {
  background:
    radial-gradient(400px at 80% 10%, rgba(0,184,255,0.15), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.5);
  box-shadow: var(--shadow-active);
}

.uc-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.uc-sub {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
  color: #64748b;
}

/* DETAIL PANEL */

.usecase-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 40px 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.usecase-detail {
  display: none;
  animation: fadeSlide 0.35s ease;
}

.usecase-detail.active {
  display: block;
}

.usecase-detail h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.usecase-detail p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}

.usecase-detail ul {
  padding-left: 0;
  margin-bottom: 22px;
}

.usecase-detail li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #334155;
}

.usecase-detail li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.usecase-outcome {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #f1f9ff;
  font-size: 0.9rem;
  color: #334155;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .usecase-layout {
    grid-template-columns: 1fr;
  }

  .usecase-panel {
    padding: 28px 26px;
  }
}
/*Use Case Highlight end */

/*SECURITY & COMPLIANCE start */
/* =========================
   SECURITY ASSURANCE MODEL
========================= */

.security-assurance {
  padding: 140px 0;
  background: #ffffff;
}

.sa-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.sa-header {
  max-width: 720px;
  margin-bottom: 90px;
}

.sa-header h2 {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
}

.sa-header p {
  font-size: 1.05rem;
  color: #475569;
}

/* TIMELINE */

.sa-timeline {
  position: relative;
  padding-left: 60px;
}

/* vertical line */
.sa-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,184,255,0.5),
    transparent
  );
}

/* ITEM */

.sa-item {
  margin-bottom: 50px;
}

.sa-head {
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
}

.sa-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* title */
.sa-head h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

/* BODY */

.sa-body {
  margin-left: 58px;
  margin-top: 18px;
  padding-left: 22px;
  border-left: 1px dashed var(--border);
  display: none;
}

.sa-item.open .sa-body {
  display: block;
}

/* list */
.sa-body ul {
  padding-left: 0;
}

.sa-body li {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #334155;
}

.sa-body li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ACTIVE STATE */

.sa-item.open .sa-index {
  background: var(--primary);
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .sa-timeline {
    padding-left: 36px;
  }

  .sa-body {
    margin-left: 42px;
  }

  .sa-header h2 {
    font-size: 2.1rem;
  }
}
/*SECURITY & COMPLIANCE end */
/*faq start */
/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 130px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.faq-header {
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.faq-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 640px;
}

/* FAQ LIST */

.faq-list {
  border-top: 1px solid var(--border);
}

/* ITEM */

.faq-item {
  border-bottom: 1px solid var(--border);
}

/* QUESTION */

.faq-question {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--primary);
}

/* ICON */

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

/* ANSWER */

.faq-answer {
  display: none;
  padding-bottom: 26px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  max-width: 760px;
}

/* OPEN STATE */

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}
/*faq end */

/*CTA start */
/* =========================
   FINAL CTA
========================= */

.final-cta {
  padding: 140px 0;
  background:
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}

.final-cta-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* CONTENT */

.final-cta-content {
  background: #ffffff;
  border-radius: 28px;
  padding: 70px 80px;
  text-align: center;
  box-shadow: 0 50px 120px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

/* HEADLINE */

.final-cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--dark);
}

/* DESCRIPTION */

.final-cta-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 36px;
  color: #475569;
}

/* POINTS */

.final-cta-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 46px;
  max-width: 520px;
  display: grid;
  gap: 12px;
}

.final-cta-points li {
  font-size: 0.95rem;
  color: #334155;
}

/* ACTIONS */

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

/* SECONDARY LINK */

.cta-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  border-bottom: 1px solid transparent;
}

.cta-secondary:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* NOTE */

.final-cta-note {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .final-cta-content {
    padding: 48px 28px;
  }

  .final-cta-content h2 {
    font-size: 2.1rem;
  }

  .final-cta-actions {
    flex-direction: column;
  }
}
/*CTA end */
/* solutions page end */


/* Pricing page start */
/*Pricing start */
.pricing-hero {
  padding: 160px 0 120px;
  background:
    radial-gradient(900px at 10% -20%, #f1f9ff, transparent 60%),
    #ffffff;
}

.pricing-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.pricing-hero-content {
  max-width: 720px;
}

/* EYEBROW */

.pricing-hero .eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

/* HEADLINE */

.pricing-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--dark);
}

/* DESCRIPTION */

.pricing-hero p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 34px;
  max-width: 680px;
}

/* POINTS */

.pricing-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 42px;
  display: grid;
  gap: 12px;
}

.pricing-hero-points li {
  font-size: 0.95rem;
  color: #334155;
}

/* ACTIONS */

.pricing-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pricing-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  border-bottom: 1px solid transparent;
}

.pricing-secondary:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .pricing-hero {
    padding: 120px 0 90px;
  }

  .pricing-hero h1 {
    font-size: 2.2rem;
  }

  .pricing-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* ENGINE PANEL */

.pricing-engine {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

.pricing-engine h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--dark);
}

/* ROWS */

.engine-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.engine-row span {
  font-size: 0.85rem;
  color: #475569;
}

/* BAR */

.engine-row .bar {
  height: 8px;
  background: #e5f4ff;
  border-radius: 999px;
  overflow: hidden;
}

.engine-row .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  border-radius: 999px;
}

/* FOOTER */

.engine-footer {
  margin-top: 26px;
  font-size: 0.75rem;
  color: #64748b;
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pricing-engine {
    order: -1;
  }
}
/*Pricing HEro end */

/*How Our Pricing Works start */
.pricing-model {
  padding: 140px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.pricing-model-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.pricing-model-header {
  max-width: 680px;
  margin-bottom: 90px;
}

.pricing-model-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.pricing-model-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* FLOW */

.pricing-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* STEP */

.pricing-step {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
}

.pricing-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.pricing-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* STEP NUMBER */

.step-index {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color:white;
  margin-bottom: 18px;
}

/* HIGHLIGHT FINAL STEP */

.pricing-step:hover {
  background:
    radial-gradient(300px at 80% 10%, rgba(0,184,255,0.18), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.4);
  box-shadow: var(--shadow-active);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .pricing-flow {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .pricing-flow {
    grid-template-columns: 1fr;
  }

  .pricing-model-header h2 {
    font-size: 2rem;
  }
}
/*How Our Pricing Works end */
/* CHANNEL PRICING start */
.pricing-channels {
  padding: 160px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-channels-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.pricing-channels-header {
  max-width: 720px;
  margin-bottom: 90px;
}

.pricing-channels-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-channels-header p {
  font-size: 1.05rem;
  color: #475569;
}

/* GRID */

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* CARD */

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 26px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.pricing-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.price-tag {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 22px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.pricing-card li {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 10px;
}

/* CTA */

.card-cta {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #e6f6ff;
  color: var(--primary);
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* HOVER EFFECT */

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* GLOW */

.card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    300px at top,
    rgba(0,184,255,0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-card:hover .card-glow {
  opacity: 1;
}

/* FEATURED */

.pricing-card.featured {
  border-color: rgba(0,184,255,0.5);
  box-shadow: var(--shadow-active);
}

.pricing-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .pricing-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-card-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   STARTING PRICE STYLING
========================= */

.starting-price {
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.starting-price span {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.starting-price strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.starting-price small {
  font-size: 0.75rem;
  color: #64748b;
}
/* ////1111 */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}
.pricing-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
}

.pricing-card .badge {
  font-size: 0.65rem;
  padding: 6px 12px;
  border-radius: 999px;
  top: 20px;
  right: 20px;
}
.starting-price {
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.starting-price span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
}

.starting-price strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.starting-price small {
  font-size: 0.8rem;
  color: #64748b;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.pricing-card li {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.card-cta {
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  background: #e6f6ff;
  color: var(--primary);
  transition: all 0.25s ease;
}

.card-cta:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}
.pricing-card.featured {
  border: 1.5px solid rgba(0, 184, 255, 0.6);
  box-shadow: 0 35px 90px rgba(0, 184, 255, 0.22);
  transform: translateY(-6px);
}
.pricing-card-grid {
  gap: 34px;
}
/* CHANNEL PRICING end */

/*DETAILED PRICING TABLE start */
.pricing-table-section {
  padding: 160px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.pricing-table-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.pricing-table-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.pricing-table-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-table-header p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* TABLE WRAPPER */

.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--border);
}

/* TABLE */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

/* HEAD */

.pricing-table thead th {
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  color: #334155;
  border-bottom: 1px solid var(--border);
}

/* BODY */

.pricing-table tbody td {
  padding: 20px 22px;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* EMPHASIS */

.pricing-table td strong {
  color: var(--dark);
  font-weight: 600;
}

/* ROW HOVER */

.pricing-table tbody tr:hover {
  background: #f8fbff;
}

/* NOTE */

.pricing-table-note {
  margin-top: 26px;
  font-size: 0.8rem;
  color: #64748b;
  max-width: 860px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .pricing-table-header h2 {
    font-size: 2rem;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
  }

  .pricing-table td {
    border: none;
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
}
/* =========================
   DETAILED PRICING TABLE
========================= */

.detailed-pricing {
  padding: 160px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.detailed-pricing-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.detailed-pricing-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.detailed-pricing-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.detailed-pricing-header p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* TABLE */

.pricing-table-wrap {
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.pricing-table thead th {
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  color: #334155;
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody td {
  padding: 18px 20px;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.pricing-table tbody tr:hover {
  background: #f8fbff;
}

.pricing-table strong {
  color: var(--dark);
  font-weight: 600;
}

/* DISCLAIMER */

.pricing-disclaimer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #64748b;
  max-width: 900px;
}

/* MOBILE */

@media (max-width: 768px) {
  .detailed-pricing-header h2 {
    font-size: 2rem;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .pricing-table td {
    padding: 8px 0;
    border: none;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
}
/* =====================================================
   ENHANCED PRICING TABLE STYLING
===================================================== */

/* Table container polish */
.pricing-table-wrap {
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Header row */
.pricing-table thead th {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

/* Base row */
.pricing-table tbody tr {
  transition: background 0.25s ease;
}

/* Hover clarity */
.pricing-table tbody tr:hover {
  background: #f8fbff;
}

/* Cells */
.pricing-table tbody td {
  padding: 18px 20px;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

/* CHANNEL COLUMN — make it bold & anchored */
.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

/* GROUP VISUAL SEPARATOR (when channel name exists) */
.pricing-table tbody tr td:first-child strong {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 255, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* PRICE COLUMN — draw attention */
.pricing-table tbody td:nth-child(4) {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

/* NOTES — softer */
.pricing-table tbody td:last-child {
  color: #64748b;
  font-size: 0.9rem;
}

/* ALTERNATE STRIPING (very subtle) */
.pricing-table tbody tr:nth-child(even) {
  background: #fcfdff;
}

/* =====================================================
   MOBILE ENHANCEMENT
===================================================== */

@media (max-width: 768px) {

  .pricing-table-wrap {
    border-radius: 16px;
  }

  .pricing-table tbody tr {
    padding: 18px 16px;
    background: #ffffff;
  }

  .pricing-table tbody tr:not(:last-child) {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .pricing-table tbody td {
    padding: 6px 0;
    font-size: 0.92rem;
  }

  .pricing-table tbody td:nth-child(4) {
    font-size: 1.1rem;
  }
}
/* =========================
   PRICING PDF DOWNLOAD CTA
========================= */

.pricing-download-cta {
  padding: 120px 0;
  background:
    radial-gradient(500px at 10% 20%, rgba(0,184,255,0.12), transparent 60%),
    #f8fbff;
  border-top: 1px solid var(--border);
}

.pricing-download-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

.pricing-download-content {
  max-width: 720px;
}

.pricing-download-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.pricing-download-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 28px;
}

.pricing-download-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pricing-download-actions .btn-primary {
  padding: 0.75rem 2.2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-active);
}

.pricing-download-actions .helper-text {
  font-size: 0.8rem;
  color: #64748b;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .pricing-download-cta {
    padding: 90px 0;
  }

  .pricing-download-content h2 {
    font-size: 1.9rem;
  }

  .pricing-download-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*DETAILED PRICING TABLE end */

/*VOLUME & ENTERPRISE PRICING start */
/* =========================
   VOLUME & ENTERPRISE PRICING
========================= */

.enterprise-pricing {
  padding: 140px 0;
  background:
    radial-gradient(600px at 15% 20%, rgba(0,184,255,0.12), transparent 60%),
    #ffffff;
  border-top: 1px solid var(--border);
}

.enterprise-pricing-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.enterprise-pricing-header {
  max-width: 760px;
  margin-bottom: 70px;
}

.enterprise-pricing-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.enterprise-pricing-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* SLABS */

.pricing-slabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.slab-card {
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
}

.slab-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.slab-range {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 18px;
}

.slab-card ul {
  list-style: none;
  padding: 0;
}

.slab-card li {
  font-size: 0.95rem;
  color: #475569;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}

.slab-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* HIGHLIGHTED SLAB */

.slab-card.highlight {
  border-color: rgba(0,184,255,0.5);
  background:
    radial-gradient(400px at 80% 10%, rgba(0,184,255,0.15), transparent 60%),
    #ffffff;
  box-shadow: var(--shadow-active);
}

/* ENTERPRISE NOTES */

.enterprise-notes {
  max-width: 820px;
  margin-bottom: 60px;
}

.enterprise-notes h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.enterprise-notes ul {
  list-style: none;
  padding: 0;
}

.enterprise-notes li {
  font-size: 0.95rem;
  color: #475569;
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.enterprise-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* CTA */

.enterprise-pricing-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.enterprise-pricing-cta .btn-primary {
  padding: 0.75rem 2.4rem;
  box-shadow: var(--shadow-active);
}

.enterprise-pricing-cta .helper-text {
  font-size: 0.8rem;
  color: #64748b;
}

/* MOBILE */

@media (max-width: 900px) {
  .pricing-slabs {
    grid-template-columns: 1fr;
  }

  .enterprise-pricing-header h2 {
    font-size: 2rem;
  }

  .enterprise-pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*VOLUME & ENTERPRISE PRICING end */

/*cost estimator section start */
/* =========================
   COST ESTIMATOR
========================= */

.cost-estimator {
  padding: 150px 0;
  background:
    radial-gradient(600px at 10% 20%, rgba(0,184,255,0.12), transparent 60%),
    #f8fbff;
  border-top: 1px solid var(--border);
}

.cost-estimator-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* HEADER */

.cost-estimator-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.cost-estimator-header h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.cost-estimator-header p {
  font-size: 1.05rem;
  color: #475569;
}

/* GRID */

.estimator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* INPUTS */

.estimator-inputs {
  padding: 40px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #475569;
}

.input-group input,
.input-group select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

/* RESULT */

.estimator-result {
  padding: 40px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(400px at 80% 10%, rgba(0,184,255,0.18), transparent 60%),
    #ffffff;
  border: 1px solid rgba(0,184,255,0.4);
  box-shadow: var(--shadow-active);
}

.estimator-result h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.cost-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.result-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 24px;
}

/* MOBILE */

@media (max-width: 900px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .cost-estimator-header h2 {
    font-size: 2rem;
  }
}
/* =========================
   CHANNEL-SPECIFIC FIELDS
========================= */
.channel-fields {
  margin-bottom: 22px;
}

.hidden {
  display: none;
}
/*cost estimator section end */

/*Pricing faq start */
/* ===== FAQ WRAPPER ===== */

.pricing-faq {
  padding: 90px 0;
  background: #ffffff;
}

.pricing-faq-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */

.pricing-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-faq-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-faq-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* ===== FAQ CARD ===== */

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden; /* 🔑 important */
  transition: all 0.3s ease;
}

/* ===== QUESTION ===== */

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0f172a;
}

.faq-question span {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* ===== ANSWER ===== */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  background: #ffffff;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* ===== ACTIVE STATE ===== */

.faq-item.active {
  border-color: rgba(0,184,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
/*Pricing faq end */

/*Pricing CTA start */
.pricing-cta {
  padding: 90px 0;
  background:
    radial-gradient(600px at 80% 20%, rgba(0,184,255,0.12), transparent 60%),
    #0b1f2a;
  color: #ffffff;
}

.pricing-cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.pricing-cta-content {
  max-width: 720px;
}

.pricing-cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 14px;
}

.pricing-cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pricing-cta p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 36px;
}

.pricing-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Buttons */

.cta-primary {
  background: linear-gradient(135deg, #00b8ff, #0095ff);
  color: #ffffff;
  border: none;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,184,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,184,255,0.45);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* Responsive */

@media (max-width: 768px) {
  .pricing-cta {
    padding: 70px 0;
    text-align: center;
  }

  .pricing-cta-content {
    margin: auto;
  }

  .pricing-cta-actions {
    justify-content: center;
  }

  .pricing-cta h2 {
    font-size: 2rem;
  }
}
/*Pricing CTA end */
/* Pricing page end */

/* Career  page start */
/* Careers Hero start */
/* =========================
   CAREERS HERO
========================= */

.careers-hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(700px at 15% 20%, rgba(0,184,255,0.14), transparent 60%),
    radial-gradient(600px at 85% 80%, rgba(0,184,255,0.10), transparent 55%),
    #ffffff;
}

.careers-hero-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Content */

.careers-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.careers-hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #001f2b;
  margin-bottom: 22px;
}

.careers-hero h1 span {
  color: var(--primary);
}

.careers-hero p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #334155;
  max-width: 560px;
  margin-bottom: 38px;
}

/* Actions */

.careers-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 26px rgba(0,184,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,184,255,0.45);
}

.btn-secondary {
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid #d1d5db;
  font-weight: 500;
  font-size: 0.95rem;
  color: #001f2b;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.03);
}

/* Visual / Abstract */

.careers-hero-visual {
  display: grid;
  gap: 20px;
}

.signal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.signal-card span {
  font-size: 1.5rem;
}

.signal-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #001f2b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .careers-hero {
    padding: 90px 0 70px;
  }

  .careers-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .careers-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .careers-hero-actions {
    justify-content: center;
  }

  .careers-hero-visual {
    display: none; /* Keep mobile clean */
  }

  .careers-hero h1 {
    font-size: 2.3rem;
  }
}
/* Careers Hero end */

/* Life at orbitel start */
.life-orbitel {
  padding: 110px 0;
  background:
    radial-gradient(600px at 85% 20%, rgba(0,184,255,0.12), transparent 60%),
    #f8fbff;
  border-top: 1px solid var(--border);
}

.life-orbitel-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.life-orbitel-header {
  max-width: 680px;
  margin-bottom: 70px;
}

.life-orbitel-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.life-orbitel-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Grid */

.life-orbitel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Cards */

.life-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.life-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.life-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.life-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* Highlight Card */

.life-card.highlight {
  background:
    radial-gradient(300px at 80% 10%, rgba(0,184,255,0.18), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.45);
  box-shadow: var(--shadow-active);
}

/* Quote */

.life-orbitel-quote {
  max-width: 760px;
  margin-top: 70px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-soft);
}

.life-orbitel-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: #334155;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .life-orbitel {
    padding: 80px 0;
  }

  .life-orbitel-grid {
    grid-template-columns: 1fr;
  }

  .life-orbitel-header h2 {
    font-size: 2rem;
  }

  .life-card {
    padding: 26px;
  }

  .life-orbitel-quote {
    margin-top: 50px;
    padding: 28px;
  }
}
/* Life at orbitel end */

/*Teams & Roles Overview start */
/* =========================
   TEAMS & ROLES OVERVIEW
========================= */

.teams-overview {
  padding: 120px 0;
  background:
    radial-gradient(700px at 20% 10%, rgba(0,184,255,0.25), transparent 60%),
    radial-gradient(600px at 80% 90%, rgba(0,184,255,0.18), transparent 55%),
    #001f2b;
  color: #ffffff;
}

.teams-overview-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.teams-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.teams-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.teams-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* Grid */

.teams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

/* Cards */

.team-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.team-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.team-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.team-card ul {
  list-style: none;
  padding: 0;
}

.team-card li {
  font-size: 0.9rem;
  padding-left: 14px;
  margin-bottom: 8px;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.team-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Highlight */

.team-card.highlight {
  background:
    radial-gradient(300px at 80% 10%, rgba(0,184,255,0.35), transparent 60%),
    rgba(255,255,255,0.08);
  border-color: rgba(0,184,255,0.6);
}

/* Footer CTA */

.teams-footer {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.teams-footer p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .teams-overview {
    padding: 90px 0;
  }

  .teams-header h2 {
    font-size: 2rem;
  }

  .teams-grid {
    grid-template-columns: 1fr;
  }

  .teams-footer {
    text-align: center;
    justify-content: center;
  }
}
/*Teams & Roles Overview end */

/*Open positions start */
/* =========================
   OPEN ROLES (ENTERPRISE)
========================= */

.open-roles {
  padding: 130px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-top: 1px solid var(--border);
}

.open-roles-inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.open-roles-header {
  max-width: 650px;
  margin-bottom: 80px;
}

.open-roles-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.open-roles-header p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
}

/* Groups */

.roles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.role-group h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--dark);
  position: relative;
}

.role-group h3::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* Role Row */

.role-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, padding 0.2s ease;
}

.role-row:hover {
  background: rgba(0,184,255,0.05);
  padding-left: 12px;
}

.role-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.role-meta {
  font-size: 0.9rem;
  color: #64748b;
}

.role-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Footer */

.open-roles-footer {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.open-roles-footer p {
  font-size: 1.05rem;
  color: #334155;
}

/* Responsive */

@media (max-width: 768px) {
  .role-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .open-roles-header h2 {
    font-size: 2.1rem;
  }

  .open-roles-footer {
    text-align: center;
    justify-content: center;
  }
}
/*Open positions end */
/*HIRING PROCESS start */

.career-hiring-flow {
  padding: 130px 0;
  background:
    radial-gradient(600px at 90% 15%, rgba(0,184,255,0.12), transparent 60%),
    #f8fbff;
  border-top: 1px solid var(--border);
}

.career-hiring-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.career-hiring-header {
  max-width: 700px;
  margin-bottom: 90px;
}

.career-hiring-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.career-hiring-header p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
}

/* List */

.career-hiring-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Item */

.career-hiring-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: flex-start;
}

/* Step Badge */

.career-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0,184,255,0.18);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */

.career-step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 38px;
  box-shadow: var(--shadow-soft);
}

.career-step-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.career-step-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

/* Highlight */

.career-hiring-item.is-highlight .career-step-badge {
  background: var(--primary);
  color: #ffffff;
}

.career-hiring-item.is-highlight .career-step-card {
  background:
    radial-gradient(300px at 80% 10%, rgba(0,184,255,0.18), transparent 60%),
    #ffffff;
  border-color: rgba(0,184,255,0.45);
  box-shadow: var(--shadow-active);
}

/* Responsive */

@media (max-width: 768px) {

  .career-hiring-flow {
    padding: 90px 0;
  }

  .career-hiring-header h2 {
    font-size: 2.1rem;
  }

  .career-hiring-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-step-badge {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .career-step-card {
    padding: 26px;
  }
}
/*HIRING PROCESS end */

/*Benefits & Perks start */
/* =========================
   THE ORBITEL WAY
========================= */

.orbitel-way {
  padding: 160px 0;
  background:
    radial-gradient(800px at 10% 20%, rgba(0,184,255,0.25), transparent 60%),
    #001f2b;
  color: #ffffff;
}

.orbitel-way-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* Intro */

.orbitel-way-intro {
  max-width: 650px;
  margin-bottom: 120px;
}

.orbitel-way-intro h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.orbitel-way-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* Lines */

.orbitel-way-lines {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.way-line {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  align-items: flex-start;
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 40px;
}

.way-line span {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(0,184,255,0.35);
}

.way-line p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 720px;
}

.way-line strong {
  color: #ffffff;
}

/* Highlight */

.way-line.highlight {
  border-left-color: var(--primary);
}

.way-line.highlight span {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 768px) {
  .orbitel-way {
    padding: 110px 0;
  }

  .orbitel-way-intro h2 {
    font-size: 2.3rem;
  }

  .way-line {
    grid-template-columns: 1fr;
    padding-left: 20px;
    gap: 16px;
  }

  .way-line span {
    font-size: 1.6rem;
  }

  .way-line p {
    font-size: 1.05rem;
  }
}
/*Benefits & Perks end */

/*CAREERS FAQ start */
/* =========================
   CAREER FAQ
========================= */

.career-faq {
  padding: 140px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.career-faq-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.career-faq-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.career-faq-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.career-faq-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

/* FAQ Items */

.career-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.career-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Summary */

.career-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}

.career-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Icon */

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--dark);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

/* Open State */

.career-faq-item[open] .faq-icon::after {
  transform: scaleY(0);
}

/* Content */

.faq-content {
  padding: 0 30px 30px;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

/* Hover */

.career-faq-item:hover {
  border-color: rgba(0,184,255,0.4);
}

/* Responsive */

@media (max-width: 768px) {
  .career-faq {
    padding: 100px 0;
  }

  .career-faq-header h2 {
    font-size: 2.2rem;
  }

  .career-faq-item summary {
    padding: 22px;
  }

  .faq-content {
    padding: 0 22px 22px;
  }
}
/*CAREERS FAQ end */

/*CAREERS CTA start */
.career-final-cta {
  padding: 160px 0;
  background:
    radial-gradient(900px at 50% 10%, rgba(0,184,255,0.35), transparent 60%),
    #001f2b;
  color: #ffffff;
}

.career-final-cta-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Content */

.career-cta-content {
  max-width: 600px;
}

.career-cta-content h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.career-cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Actions */

.career-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cta-primary {
  padding: 18px 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0,184,255,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(0,184,255,0.6);
}

.cta-subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* Responsive */

@media (max-width: 900px) {
  .career-final-cta {
    padding: 120px 0;
  }

  .career-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .career-cta-content h2 {
    font-size: 2.3rem;
  }
}
/*CAREERS CTA end */

/*  Blogs page start */
/*Hero blogs start */
.blog-hero {
  padding: 140px 0 110px;
  background:
    radial-gradient(700px at 20% 20%, rgba(0,184,255,0.12), transparent 60%),
    #ffffff;
  border-bottom: 1px solid var(--border);
}

.blog-hero-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
}

/* Breadcrumb */

.blog-breadcrumb {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 24px;
}

.blog-breadcrumb a {
  color: #64748b;
}

.blog-breadcrumb span {
  margin: 0 6px;
}

/* H1 */

.blog-hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Description */

.blog-hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
  max-width: 760px;
}

/* Topic Signals */

.blog-topic-signals {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-topic-signals span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,184,255,0.1);
  color: #0369a1;
}

/* Responsive */

@media (max-width: 768px) {
  .blog-hero {
    padding: 110px 0 90px;
  }

  .blog-hero h1 {
    font-size: 2.2rem;
  }

  .blog-hero-description {
    font-size: 1.05rem;
  }
}
/*Hero blogs end */

/*Featured article start */
/* =========================
   FEATURED ARTICLE
========================= */

.blog-featured {
  padding: 120px 0;
  background: #ffffff;
}

.blog-featured-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* Layout */

.featured-article {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px at 85% 15%, rgba(0,184,255,0.18), transparent 60%),
    #f8fbff;
  border: 1px solid var(--border);
}

/* Content */

.featured-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.featured-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
}

.featured-excerpt {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  max-width: 600px;
  margin-bottom: 24px;
}

.featured-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 26px;
}

.featured-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* Visual */

.featured-visual {
  display: flex;
  justify-content: center;
}

.visual-box {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #00b8ff, #0096d6);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,184,255,0.4);
}

/* Responsive */

@media (max-width: 900px) {
  .featured-article {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .featured-content h2 {
    font-size: 1.9rem;
  }

  .visual-box {
    width: 180px;
    height: 180px;
  }
}
/*Featured article end */

/*BLOG CATEGORIES start */
.blog-categories {
  padding: 130px 0;
  background:
    radial-gradient(600px at 80% 20%, rgba(0,184,255,0.12), transparent 60%),
    #ffffff;
  border-top: 1px solid var(--border);
}

.blog-categories-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.blog-categories-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.blog-categories-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--dark);
}

.blog-categories-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

/* Grid */

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Category Item */

.blog-category-item {
  padding: 36px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-category-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-category-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.blog-category-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-active);
  border-color: rgba(0,184,255,0.4);
}

/* Responsive */

@media (max-width: 900px) {
  .blog-categories {
    padding: 100px 0;
  }

  .blog-categories-header h2 {
    font-size: 2.2rem;
  }

  .blog-category-list {
    grid-template-columns: 1fr;
  }

  .blog-category-item {
    padding: 28px;
  }
}
/*BLOG CATEGORIES end */

/*LATEST ARTICLES start */
.blog-latest {
  padding: 140px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.blog-latest-inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.blog-latest-header {
  max-width: 600px;
  margin-bottom: 70px;
}

.blog-latest-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.blog-latest-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

/* List */

.blog-latest-list {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

/* Row */

.blog-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--border);
}

/* Category */

.blog-row-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
}

/* Content */

.blog-row-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-row-content h3 a {
  color: var(--dark);
}

.blog-row-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  max-width: 700px;
  margin-bottom: 12px;
}

.blog-row-meta {
  font-size: 0.85rem;
  color: #64748b;
}

/* Hover */

.blog-row-content h3 a:hover {
  text-decoration: underline;
}

/* Footer */

.blog-latest-footer {
  margin-top: 80px;
}

/* Responsive */

@media (max-width: 768px) {
  .blog-latest {
    padding: 100px 0;
  }

  .blog-latest-header h2 {
    font-size: 2.2rem;
  }

  .blog-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/*LATEST ARTICLES end */

/*Blog FAQ start */
.blog-faq {
  padding: 140px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.blog-faq-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
}

/* Header */

.blog-faq-header {
  max-width: 620px;
  margin-bottom: 80px;
}

.blog-faq-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--dark);
}

.blog-faq-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

/* FAQ List */

.blog-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item */

.blog-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Summary */

.blog-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Icon */

.blog-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.blog-faq-icon::before,
.blog-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--dark);
  transition: transform 0.2s ease;
}

.blog-faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.blog-faq-icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

/* Open State */

.blog-faq-item[open] .blog-faq-icon::after {
  transform: scaleY(0);
}

/* Content */

.blog-faq-content {
  padding: 0 30px 30px;
}

.blog-faq-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

/* Hover */

.blog-faq-item:hover {
  border-color: rgba(0,184,255,0.4);
}

/* Responsive */

@media (max-width: 768px) {
  .blog-faq {
    padding: 100px 0;
  }

  .blog-faq-header h2 {
    font-size: 2.2rem;
  }

  .blog-faq-item summary {
    padding: 22px;
  }

  .blog-faq-content {
    padding: 0 22px 22px;
  }
}
/* Blog FAQ end */

/*BLOG detailed page 1  */
.blog-detail {
  padding: 80px 20px;
  background: #fff;
}

.blog-container {
  max-width: 800px;
  margin: auto;
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-meta {
  color: #777;
  margin-bottom: 20px;
}

.blog-image img {
  width: 70%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-content h2 {
  margin-top: 30px;
  font-size: 24px;
}

.blog-content p {
  line-height: 1.7;
  margin-top: 10px;
}

.blog-content ul {
  padding-left: 20px;
}

.blog-content blockquote {
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border-left: 4px solid #000;
}

.back-btn {
  margin-top: 40px;
}
/* TITLE (H1) */
.blog-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
}

/* META */
.blog-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* INTRO / LEAD */
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
  margin-bottom: 20px;
}

/* H2 (MAIN SECTIONS) */
.blog-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #111827;
}

/* H3 (SUB SECTIONS) */
.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #1f2937;
}

/* PARAGRAPH */
.blog-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}

/* LIST */
.blog-content li {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

/* BLOCKQUOTE */
blockquote {
  font-size: 16px;
  color: #374151;
  font-style: italic;
}.blog-content {
  margin-top: 30px;
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content section {
  margin-bottom: 30px;
}.blog-container {
  max-width: 780px; /* THIS is key */
  margin: auto;
}/* TABLE WRAPPER */
.table-container {
  margin-top: 20px;
  overflow-x: auto;
}

/* TABLE BASE */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
}

/* HEADER */
th {
  text-align: left;
  font-weight: 600;
  color: #111827;
  padding: 14px 10px;
  border-bottom: 2px solid #e5e7eb;
}

/* BODY CELLS */
td {
  padding: 14px 10px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

/* ROW SPACING FEEL */
tr:last-child td {
  border-bottom: none;
}

/* HOVER (SUBTLE) */
tr:hover {
  background: #f9fafb;
}

/* RESPONSIVE SCROLL */
.table-container::-webkit-scrollbar {
  height: 6px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}
/*BLog detailed page 1 end */
/* start */
/* end */
/* start */
/* end */
/* start */
/* end */
/* start */
/* end */

/* Blogs  page end */


