/* ============================================================
       REAL AI AUTOMATION — REDESIGNED 2026
       Brand: Deep Navy #0D1B3E | Electric Blue #2D7DD2 | Cyan #5BC8F5
    ============================================================ */

 @import url('https://fonts.cdnfonts.com/css/sf-pro-display');

:root {
  --navy: #0A1628;
  --navy-mid: #0D1B3E;
  --navy-card: #111E3F;
  --navy-border: #1A3260;
  --blue: #2D7DD2;
  --cyan: #5BC8F5;
  --cyan-glow: rgba(91, 200, 245, 0.18);
  --blue-glow: rgba(45, 125, 210, 0.22);
  --white: #FFFFFF;
  --off: #F0F4FA;
  --text: #C8D6EB;
  /* --muted: #6B88AD; */
    --muted: #fff;
  --success: #22D3A3;
  --warn: #F5A623;

  /* --font-display: 'Bebas Neue', cursive; */
  --font-display:'Inter', sans-serif;
  /* --font-body: 'Outfit', sans-serif; */
  --font-body: 'SF Pro Display', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--cyan);
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(91, 200, 245, 0.08);
  border: 1px solid rgba(91, 200, 245, 0.22);
  padding: 7px 18px;
  border-radius: 100px;
  margin: 0 auto 20px;
}

.pill-label.common-quest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(91, 200, 245, 0.08);
  border: 1px solid rgba(91, 200, 245, 0.22);
  padding: 7px 18px;
  border-radius: 100px;
  margin: 0 0 20px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 163, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 211, 163, 0);
  }
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.sec-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(45, 125, 210, 0.12);
  padding: 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.nav-logo img {
  height: 110px;
  background:#fff;
  padding: 5px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(91, 200, 245, 0.06);
}

.nav-cta {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--cyan), var(--blue)) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(45, 125, 210, 0.45) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(91, 200, 245, 0.25);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  margin: 4px 0;
  border-radius: 2px;
}

@media(max-width:900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid rgba(45, 125, 210, 0.15);
    padding: 18px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 18px;
    width: 100%;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

/* Animated grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45, 125, 210, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 125, 210, 0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 55px 55px;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 125, 210, 0.22) 0%, transparent 65%);
  top: -150px;
  left: -180px;
}

.orb2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(91, 200, 245, 0.14) 0%, transparent 65%);
  bottom: -100px;
  right: -120px;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 163, 0.08) 0%, transparent 65%);
  top: 30%;
  right: 20%;
}

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

@media(max-width:900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-left {
  animation: fadeUp 0.9s var(--ease-out) both;
}

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

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.1s var(--ease-out) both;
}

.hero-eyebrow-line {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight:500;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.15s var(--ease-out) both;
}

.hero-h1 .line2 {
  display: block;
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
}

.hero-h1 .line3 {
  display: block;
  color: var(--cyan);
}

.hero-p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.9s 0.25s var(--ease-out) both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.35s var(--ease-out) both;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(45, 125, 210, 0.45);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid rgba(91, 200, 245, 0.2);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(91, 200, 245, 0.05);
}

.hero-stats {
  display: flex;
  gap: 0;
  animation: fadeUp 0.9s 0.45s var(--ease-out) both;
}

.hstat {
  padding: 0 28px 0 0;
}

.hstat:not(:last-child) {
  border-right: 1px solid rgba(45, 125, 210, 0.2);
  margin-right: 28px;
}

.hstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hstat-lbl {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero right — dashboard card */
.hero-right {
  animation: fadeLeft 1s 0.3s var(--ease-out) both;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.dashboard {
  background: rgba(17, 30, 63, 0.9);
  border: 1px solid rgba(45, 125, 210, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(91, 200, 245, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dash-top {
  background: rgba(13, 27, 62, 0.8);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(45, 125, 210, 0.15);
}

.dash-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dash-dot.r {
  background: #FF6058;
}

.dash-dot.y {
  background: #FFBD2E;
}

.dash-dot.g {
  background: #28CA42;
}

.dash-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 6px;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(13, 27, 62, 0.5);
  border: 1px solid rgba(45, 125, 210, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.3s;
  animation: agentIn 0.6s var(--ease-out) both;
}

.agent-row:nth-child(1) {
  animation-delay: 0.7s;
}

.agent-row:nth-child(2) {
  animation-delay: 0.85s;
}

.agent-row:nth-child(3) {
  animation-delay: 1.0s;
}

@keyframes agentIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.agent-row:hover {
  border-color: rgba(91, 200, 245, 0.3);
}

.agent-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.agent-ico.a {
  background: rgba(45, 125, 210, 0.2);
  color: var(--blue);
}

.agent-ico.b {
  background: rgba(91, 200, 245, 0.15);
  color: var(--cyan);
}

.agent-ico.c {
  background: rgba(245, 166, 35, 0.15);
  color: var(--warn);
}

.agent-info {
  flex: 1;
  min-width: 0;
}

.agent-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-status {
  font-size: 14px;
  font-weight: 500;
}

.status-green {
  color: var(--success);
}

.status-yellow {
  color: var(--warn);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse.green {
  background: var(--success);
  animation: pulseAnim 2s ease infinite;
}

.pulse.yellow {
  background: var(--warn);
  animation: pulseAnim 2s 0.5s ease infinite;
}

@keyframes pulseAnim {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 163, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 211, 163, 0);
  }
}

.dash-metrics {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  min-width: 120px;
}

.metric-bar {
  flex: 1;
  height: 6px;
  background: rgba(45, 125, 210, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: barGrow 1.2s 1.1s var(--ease-out) both;
  transform-origin: left;
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.metric-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  min-width: 36px;
  text-align: right;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 100px 0;
}

section:nth-child(even) {}

/* ===== LOGOS/TRUST BAR ===== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid rgba(45, 125, 210, 0.1);
  border-bottom: 1px solid rgba(45, 125, 210, 0.1);
  overflow: hidden;
}

.trust-label {
  font-size: 22px;
  /* font-family: var(--font-display); */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.trust-states {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.trust-state {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(45, 125, 210, 0.15);
  padding: 8px 18px;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.trust-state:hover {
  color: var(--cyan);
  border-color: rgba(91, 200, 245, 0.35);
  background:#fff;
}

/* ===== COMPARE SECTION ===== */
.compare-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(45, 125, 210, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 3rem;
}

@media(max-width:700px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.cmp-card {
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.cmp-bad {
  background: rgba(255, 77, 109, 0.04);
  border: 1px solid rgba(255, 77, 109, 0.15);
}

.cmp-good {
  background: rgba(45, 125, 210, 0.07);
  border: 1px solid rgba(91, 200, 245, 0.25);
}

.cmp-good::before {
  content: 'OUR SOLUTION';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
}

.cmp-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cmp-bad .cmp-icon {
  color: rgba(255, 77, 109, 0.6);
}

.cmp-good .cmp-icon {
  color: var(--cyan);
}

.cmp-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.cmp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cmp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.cmp-item i {
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cmp-bad .cmp-item i {
  color: rgba(255, 77, 109, 0.7);
}

.cmp-bad .cmp-item {
  color: var(--muted);
}

.cmp-good .cmp-item i {
  color: var(--success);
}

.cmp-good .cmp-item {
  color: var(--text);
}

/* ===== SOLUTIONS GRID ===== */
.solutions-section {
  /* background: linear-gradient(180deg, var(--navy) 0%, rgba(13, 27, 62, 0.5) 100%); */
  background:#031226;
  border-top: 2px solid #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 3rem;
}

.sol-card {
  background: var(--navy-card);
  border: 1px solid rgba(45, 125, 210, 0.15);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.sol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 200, 245, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.sol-card:hover::before {
  opacity: 1;
}

.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.si-a {
  background: rgba(45, 125, 210, 0.18);
  color: var(--blue);
}

.si-b {
  background: rgba(91, 200, 245, 0.14);
  color: var(--cyan);
}

.si-c {
  background: rgba(34, 211, 163, 0.14);
  color: var(--success);
}

.si-d {
  background: rgba(245, 166, 35, 0.14);
  color: var(--warn);
}

.sol-title h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.sol-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.sol-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.sol-link:hover {
  gap: 10px;
}

/* ===== MIDWEST SECTION ===== */
.midwest-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.midwest-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 125, 210, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.midwest-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:900px) {
  .midwest-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.states-map-card {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(45, 125, 210, 0.2);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.map-card-header i {
  color: var(--cyan);
  font-size: 1.1rem;
}

.map-card-header span {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.state-badge {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: rgba(91, 200, 245, 0.08);
  border: 1px solid rgba(91, 200, 245, 0.2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.state-badge:hover {
  background: rgba(91, 200, 245, 0.15);
  border-color: rgba(91, 200, 245, 0.4);
}

.map-note {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.midwest-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--text);
}

.check-item i {
  color: var(--success);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== POLITICAL SECTION ===== */
.political-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.political-section::after {
  content: '';
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 200, 245, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.political-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:900px) {
  .political-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.political-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
}

.pol-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(17, 30, 63, 0.7);
  border: 1px solid rgba(45, 125, 210, 0.12);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.pol-feature:hover {
  border-color: rgba(91, 200, 245, 0.3);
}

.pol-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 125, 210, 0.15);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pol-feat-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pol-feat-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.pol-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pol-stat {
  background: var(--navy-card);
  border: 1px solid rgba(45, 125, 210, 0.15);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s, border-color 0.25s;
}

.pol-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 200, 245, 0.3);
}

.pol-stat-ico {
  font-size: 1.3rem;
}

.ps-a {
  color: var(--cyan);
}

.ps-b {
  color: var(--success);
}

.ps-c {
  color: var(--blue);
}

.ps-d {
  color: var(--warn);
}

.pol-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}

.pol-stat-lbl {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== FOUNDER SECTION ===== */

.about-founder{
  padding: 140px 0px 100px;
}
.founder-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.founder-wrap {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: center;
}

@media(max-width:1000px) {
  .founder-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.founder-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(45, 125, 210, 0.2), 0 32px 80px rgba(0, 0, 0, 0.5);
}

.founder-img-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
}

.founder-name-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}

.founder-title p{
  font-size: 18px;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
}

.founder-li {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 125, 210, 0.2);
  border: 1px solid rgba(45, 125, 210, 0.3);
  color: var(--muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.founder-li:hover {
  background: var(--blue);
  color: var(--white);
}

.founder-content {}

.founder-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.founder-quote .qs {
  color: var(--cyan);
}

.founder-bio {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.ftag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(45, 125, 210, 0.2);
  padding: 6px 14px;
  border-radius: 8px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--navy-mid);
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid rgba(45, 125, 210, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--cyan);
}

.faq-q .faq-ico {
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}

.faq-q.open .faq-ico {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-a {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
  padding: 0 24px;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 125, 210, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-box {
  background: rgba(17, 30, 63, 0.85);
  border: 1px solid rgba(45, 125, 210, 0.18);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  text-align: left;
  margin-top: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media(max-width:600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.form-group.full {
  grid-column: 1 / -1;
}

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

.form-input,
.form-select,
.form-textarea {
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(45, 125, 210, 0.18);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 13px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 136, 173, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(91, 200, 245, 0.1);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-mid);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  margin-top: 8px;
  max-width:340px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(45, 125, 210, 0.1);
  padding: 60px 0 28px;
}

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

.footer-col.comp-col {
    padding-left: 40px;
}

@media(max-width:991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:767px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col.comp-col {
    padding-left: 0px !important;
}
/* .footer-col{
  padding-top:20px;
} */
.footer .row{
  row-gap: 30px;
}
}

.footer-brand img {
  height:110px;
  background:#fff;
  padding:5px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 16px;
  /* color: var(--muted); */
  color:#fff;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  padding-bottom:8px;
}

.f-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(45, 125, 210, 0.1);
  border: 1px solid rgba(45, 125, 210, 0.18);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.f-social-link:hover {
  background: rgba(45, 125, 210, 0.25);
  color: var(--white);
  border-color: var(--blue);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 18px;
  /* color: var(--muted); */
  color:#fff;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

.footer-contact-text {
  font-size: 18px;
  /* color: var(--muted); */
  color:#fff;
  line-height: 1.75;
  margin-bottom: 18px;
}

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

.footer-copy {
  font-size: 0.8rem;
  /* color: var(--muted); */
  color:#fff;
}

.footer-copy a {
  color: var(--cyan);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  /* color: var(--muted); */
  color:#fff;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--cyan);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-l.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-r.in-view {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.footer-schedule{
  display:inline-flex;
  font-size:14px;
  padding:11px 22px;
}


/* New Header css  */
/* ===== BASE HEADER ===== */
.rai-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #031226;
  border-bottom: 2px solid #00b4d8;
  font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding:20px 20px;
}

.rai-header.scrolled {
  background: #020e1c;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55), 0 2px 0 #00b4d8;
}

/* ===== BRAND BLOCK ===== */
.rai-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.rai-brand img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.rai-brand-name {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.rai-brand-tagline {
  display: block;
  color: #00b4d8;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 2px;
}

/* ===== NAV LINKS ===== */
.rai-nav .nav-link {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.02em;
  position: relative;
}

.rai-nav .nav-link:hover,
.rai-nav .nav-link:focus {
  color: #ffffff !important;
  background: rgba(0, 180, 216, 0.18);
}

/* Active underline indicator */
.rai-nav .nav-link.active-page::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #00b4d8;
  border-radius: 2px;
}

/* ===== DROPDOWN ===== */
.rai-nav .dropdown-toggle::after {
  border: none;
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.rai-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.rai-nav .dropdown-menu {
  background: #041830;
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: 12px;
  padding: 8px;
  margin-top: 10px !important;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 180, 216, 0.06);
  animation: dropFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.rai-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  line-height: 1.45;
  font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
}

.rai-nav .dropdown-item:hover,
.rai-nav .dropdown-item:focus {
  color: #00b4d8 !important;
  background: rgba(0, 180, 216, 0.18);
}

/* ===== CTA BUTTON ===== */
.rai-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00b4d8, #0077a8);
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  white-space: nowrap;
  border: none;
}

.rai-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.45);
  color: #ffffff !important;
}

.rai-cta i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.rai-cta:hover i {
  transform: translateX(3px);
}

/* ===== MOBILE TOGGLER ===== */
.rai-toggler {
  border: 1px solid rgba(0, 180, 216, 0.35) !important;
  background: transparent !important;
  padding: 8px 11px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: background 0.2s ease;
}

.rai-toggler:focus {
  box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.3) !important;
}

.rai-toggler:hover {
  background: rgba(0, 180, 216, 0.18) !important;
}

.rai-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.rai-toggler-icon span {
  display: block;
  height: 2px;
  background: #00b4d8;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.rai-toggler-icon span:nth-child(2) {
  width: 70%;
}

.rai-toggler[aria-expanded="true"] .rai-toggler-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rai-toggler[aria-expanded="true"] .rai-toggler-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.rai-toggler[aria-expanded="true"] .rai-toggler-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 991.98px) {
  .rai-header .navbar-collapse {
    background: #020e1c;
    border-top: 1px solid rgba(0, 180, 216, 0.35);
    padding: 16px 20px 20px;
    margin-top: 0;
  }

  .rai-nav .nav-link {
    padding: 10px 14px !important;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .rai-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 180, 216, 0.12);
    border-radius: 8px;
    margin-top: 4px !important;
    box-shadow: none;
    animation: none;
  }

  .rai-cta {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .rai-nav .dropdown-item {
    padding: 9px 14px;
  }
}

@media (min-width: 992px) {

    .navbar .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(5px);
        transition:all .15s ease;
    }

    .navbar .dropdown:hover .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }
}


/* banner css  */
/* ===== Brand Hero Section ===== */
.rai-brand-hero{
  padding: 0px;
}
.ai-banner{
    padding:140px 5% 80px;
    background:#031226;
    color:#fff;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
    border-bottom:3px solid #00b4d8;
}

.rai-brand-content{
    flex:1.2;
    min-width:320px;
}

.rai-brand-logo{
    height:65px;
    margin-bottom:25px;
    display:block;
}

.rai-brand-title{
    font-size:3.2rem;
    line-height:1.1;
    font-family:'Inter',sans-serif;
    margin-bottom:20px;
    color:#fff;
}

.rai-brand-text{
    font-size:1.25rem;
    color:#ccdbdc;
    margin-bottom:30px;
    max-width:600px;
}

.rai-brand-btn{
    background:#00b4d8;
    color:#031226;
    padding:18px 36px;
    font-weight:700;
    text-decoration:none;
    border-radius:6px;
    display:inline-block;
    transition:all .3s ease;
}

.rai-brand-btn:hover{
    background:#fff;
    color:#031226;
}

.rai-brand-image-wrap{
    flex:.8;
    min-width:280px;
    text-align:center;
}

.rai-brand-image{
    width:100%;
    /* max-width:380px; */
    border-radius:12px;
    border:2px solid #00b4d8;
    box-shadow:0 20px 40px rgba(0,180,216,.15);
    object-fit:cover;
}

/* Responsive */

@media (max-width:991px){

    .rai-brand-hero{
        text-align:center;
    }

    .rai-brand-title{
        font-size:2.5rem;
    }

    .rai-brand-logo{
        margin-left:auto;
        margin-right:auto;
        height:auto;
    }
}

@media (max-width:767px){

    .rai-brand-hero{
        padding:80px 10px 80px;
    }

    .rai-brand-title{
        font-size:2rem;
    }

    .rai-brand-text{
        font-size:1rem;
    }
    
    .rai-hero-title{
        font-size:38px !important;
    }
}

/* Enterprise Page css  */
/* =========================
   HERO SECTION
========================= */

.rai-hero-section{
    padding:140px 5% 80px;
    background:#031226;
    color:#fff;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
    border-bottom:3px solid #00b4d8;
}

.rai-hero-content{
    flex:1.2;
    min-width:320px;
}

.rai-hero-logo{
    height:65px;
    display:block;
    margin-bottom:25px;
}

.rai-hero-title{
    font-size:3.2rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:700;
}

.rai-hero-description{
    font-size:1.25rem;
    color:#ccdbdc;
    max-width:600px;
    margin-bottom:30px;
    line-height:1.7;
}

.rai-hero-btn{
    display:inline-block;
    padding:18px 36px;
    background:#00b4d8;
    color:#031226;
    text-decoration:none;
    border-radius:6px;
    font-weight:700;
    transition:.3s ease;
}

.rai-hero-btn:hover{
    transform:translateY(-3px);
}

.rai-hero-image-wrap{
    flex:0.8;
    min-width:280px;
    text-align:center;
}

.rai-hero-image{
    width:100%;
    /* max-width:380px; */
    border-radius:12px;
    border:2px solid #00b4d8;
    box-shadow:0 20px 40px rgba(0,180,216,.15);
    object-fit:cover;
}


/* =========================
   FAQ SECTION
========================= */

.rai-faq-section{
    padding:80px 5%;
    background:#031226;
}

.rai-faq-grid{
    /* max-width:1000px;
    margin:auto; */
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.rai-faq-card{
    background:#031226;
    border:2px solid #00b4d8;
    border-radius:8px;
    padding:40px;
}

.rai-faq-title{
    font-size:1.5rem;
    color:#00b4d8;
    margin-bottom:15px;
    font-weight:700;
}

.rai-faq-text{
    color:#ccdbdc;
    line-height:1.8;
    margin:0;
}


/* =========================
   SPECIALIZATION SECTION
========================= */

.rai-specialization-section{
    padding:90px 5%;
    background:#ffffff;
}

.rai-specialization-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    align-items:center;
}

.rai-specialization-content{
    flex:1.2;
    min-width:320px;
}

.rai-specialization-label{
    color:#00b4d8;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.rai-specialization-title{
    font-size:2.3rem;
    margin-top:5px;
    margin-bottom:20px;
    color:#031226;
}

.rai-specialization-quote{
    color:#5c677d;
    font-style:italic;
    border-left:3px solid #00b4d8;
    padding-left:15px;
    line-height:1.8;
}

.footer-col ul{
  padding-left: 0px;
}


/* Agentic ai page css  */
/* ==========================
   ENTERPRISE SECTION
========================== */

.rai-enterprise-section{
    padding:100px 5%;
    background:#ffffff;
    border-bottom:1px solid #e2e8f0;
}

.rai-enterprise-container{
    max-width:1200px;
    margin:0 auto;
}

.rai-enterprise-header{
    text-align:center;
    margin-bottom:60px;
    padding-top:20px;
}

.rai-enterprise-title{
    font-size:3.2rem;
    color:#031226;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}

.rai-enterprise-description{
    max-width:1000px;
    margin:0 auto;
    color:#5c677d;
    font-size:1.15rem;
    line-height:1.7;
}

.rai-enterprise-content{
    margin-bottom:50px;
}

.rai-enterprise-content-left{
    flex:1;
    min-width:320px;
}

.rai-enterprise-content-right{
    flex:1.2;
    min-width:320px;
    background:#031226;
    padding:40px;
    border-radius:12px;
    border:2px solid #00b4d8;
    box-shadow:0 15px 35px rgba(3,18,38,.10);
}

.rai-enterprise-label{
    display:inline-block;
    color:#00b4d8;
    font-size:.9rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.rai-enterprise-subtitle{
    font-size:1.8rem;
    color:#031226;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
}

.rai-enterprise-text{
    color:#5c677d;
    line-height:1.8;
    margin-bottom:15px;
}

.rai-enterprise-image{
    width:100%;
    display:block;
    border-radius:6px;
}

/* ==========================
   TESTIMONIAL CARD
========================== */

.rai-enterprise-testimonial{
    max-width:850px;
    margin:0 auto;
    padding:50px;
    border-radius:16px;
    background:linear-gradient(135deg,#031226 0%,#0b1d33 100%);
    border-left:6px solid #00b4d8;
    box-shadow:0 12px 30px rgba(3,18,38,.15);
    color:#ffffff;
}

.rai-enterprise-quote-mark{
    font-size:3rem;
    color:#00b4d8;
    line-height:1;
    margin-bottom:10px;
    font-weight:700;
}

.rai-enterprise-quote{
    font-size:1.25rem;
    line-height:1.7;
    color:#e2e8f0;
    margin-bottom:25px;
    font-style:italic;
    font-weight:300;
}

.rai-enterprise-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.rai-enterprise-author-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#00b4d8;
    color:#031226;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.rai-enterprise-author-name{
    margin:0;
    color:#ffffff;
    font-size:1.1rem;
    font-weight:600;
}

.rai-enterprise-author-role{
    display:block;
    color:#00b4d8;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

    .rai-enterprise-section{
        padding:120px 10px 80px;
    }

    .rai-enterprise-title{
        font-size:1.8rem;
    }

    .rai-enterprise-subtitle{
        font-size:1.5rem;
    }

    .rai-enterprise-testimonial{
        padding:35px 25px;
    }

.rai-verticals-header{
    margin-bottom:40px;
}
}

/* Industrial Page Css  */
/* ===========================
   PAGE 3 - AI VERTICALS
=========================== */

.rai-verticals-section{
    padding:100px 5%;
    background:#ffffff;
    color:#031226;
    font-family:'SF Pro Display',sans-serif;
}

.rai-verticals-container{
    max-width:1200px;
    margin:0 auto;
}

/* Header */

.rai-verticals-header{
  padding-top:20px;
    text-align:center;
    margin-bottom:60px;
}

.rai-verticals-label{
    display:inline-block;
    color:#00b4d8;
    font-size:.9rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.rai-verticals-title{
    font-size:3.2rem;
    color:#031226;
    margin-top:10px;
    font-weight:700;
    line-height:1.2;
}

/* Main Content */

.rai-verticals-main{
    margin-bottom:0px;
}

.rai-verticals-content{
    flex:1.2;
    min-width:320px;
}

.rai-verticals-category{
    display:block;
    margin-bottom:15px;
    color:#00b4d8;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.rai-verticals-card{
    margin-bottom:30px;
}

.rai-verticals-card:last-child{
    margin-bottom:0;
}

.rai-verticals-card-title{
    font-size:1.35rem;
    color:#031226;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.2;
}

.way-title{
  font-size:1.45rem;
   color:#031226;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.4;
}

.rai-verticals-card-text{
    color:#5c677d;
    font-size:1rem;
    line-height:1.8;
    margin:0;
}

/* Image */

.rai-verticals-image-box{
    flex:.8;
    min-width:300px;
    padding:40px;
    background:#031226;
    border:2px solid #00b4d8;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(3,18,38,.15);
    text-align:center;
}

.rai-verticals-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:6px;
}

/* Campaign Block */

.rai-campaign-section{
    background:#f8f9fa;
    padding:40px;
    border-radius:12px;
    border-left:4px solid #031226;
}

.rai-campaign-label{
    display:block;
    margin-bottom:5px;
    color:#00b4d8;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.rai-campaign-title{
    font-size:1.45rem;
    color:#031226;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.4;
}

.rai-campaign-text{
    color:#5c677d;
    font-size:1rem;
    line-height:1.8;
    margin:0;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:991px){

    .rai-verticals-main{
        gap:40px;
    }

    .rai-verticals-title{
        font-size:2rem;
    }

    .rai-campaign-section{
        padding:35px;
    }
}

@media (max-width:767px){

    .rai-verticals-section{
        padding:120px 10px 80px;
    }

    .rai-verticals-title{
        font-size:1.8rem;
    }

    .rai-verticals-card-title{
        font-size:1.2rem;
    }

    .rai-campaign-title{
        font-size:1.25rem;
    }

    .rai-campaign-section{
        padding:25px;
    }

    .rai-verticals-image-box{
        padding:20px;
    }
    
    .rai-verticals-image-box{
        flex:1;
    }
}


/* =========================
   FAQ SECTION
========================= */

.rai-faq-section{
    padding:100px 5%;
    background:#031226;
    color:#fff;
    border-top:3px solid #00b4d8;
    font-family:'SF Pro Display',sans-serif;
}

.rai-faq-container{
    max-width:950px;
    margin:0 auto;
}

.rai-faq-heading{
    text-align:center;
    margin-bottom:60px;
    padding-top:20px;
}

.rai-faq-label{
    display:inline-block;
    color:#00b4d8;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.9rem;
    font-family:'Inter',sans-serif;
    margin-bottom:10px;
}

.rai-faq-heading h1{
    font-size:3.2rem;
    color:#fff;
    margin:10px 0;
    font-family:'Inter',sans-serif;
    font-weight:700;
}

.rai-faq-heading p{
    max-width:700px;
    margin:0 auto;
    color:#ccdbdc;
    font-size:1.1rem;
    line-height:1.8;
}

.rai-faq-card{
    margin-bottom:35px;
    background:#0b1d33;
    padding:40px;
    border-radius:12px;
    border:1px solid rgba(0,180,216,.3);
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    transition:.4s ease;
}

.rai-faq-card:hover{
    transform:translateY(-6px);
    border-color:#00b4d8;
}

.rai-faq-card h3{
    font-size:1.45rem;
    line-height:1.3;
    color:#fff;
    margin:0 0 15px;
    font-family:'Inter',sans-serif;
    font-weight:700;
}

.rai-faq-card p{
    margin:0;
    color:#ccdbdc;
    line-height:1.8;
    font-size:1rem;
}

.rai-faq-card strong{
    color:#00b4d8;
}

/* =========================
   INSTAGRAM FOOTER CTA
========================= */

.rai-instagram-footer{
    margin-top:60px;
    text-align:center;
    padding:40px;
    border-radius:14px;
    background:linear-gradient(135deg,#0b1d33,#102947);
    border:1px solid rgba(0,180,216,.3);
}

.rai-instagram-footer span{
    display:block;
    color:#ccdbdc;
    margin-bottom:18px;
    font-size:1rem;
}

.rai-instagram-footer a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 32px;
    background:#00b4d8;
    color:#031226;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.4s ease;
}

.rai-instagram-footer a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,180,216,.35);
}

.rai-instagram-footer i{
    font-size:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .rai-faq-section{
        padding:120px 10px 80px;
    }

    .rai-faq-heading h2{
        font-size:28px;
    }

    .rai-faq-card{
        padding:25px;
    }

    .rai-faq-card h3{
        font-size:1.2rem;
    }

    .rai-instagram-footer{
        padding:30px 20px;
    }

    .rai-instagram-footer a{
        width:100%;
        justify-content:center;
    }

}


/* ===========================
   CONTACT SECTION
=========================== */

.rai-contact-section{
    padding:100px 0;
    background:#031226;
    font-family:'SF Pro Display',sans-serif;
    position:relative;
    overflow:hidden;
}

.rai-contact-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#00b4d8;
    opacity:.08;
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.rai-contact-content{
    color:#fff;
}

.rai-contact-label{
    display:inline-block;
    color:#00b4d8;
    font-family:'Inter',sans-serif;
    text-transform:uppercase;
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:15px;
}

.rai-contact-title{
    font-size:3rem;
    font-weight:700;
    line-height:1.15;
    margin-bottom:20px;
    color:#fff;
    font-family:'Inter',sans-serif;
}

.rai-contact-desc{
    color:#cbd5e1;
    font-size:1.05rem;
    line-height:1.8;
    margin-bottom:35px;
}

.rai-contact-office{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.rai-contact-icon{
    width:55px;
    height:55px;
    border-radius:12px;
    background:#00b4d8;
    color:#031226;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.rai-contact-office h6{
    color:#fff;
    font-family:'Inter',sans-serif;
    margin-bottom:5px;
    font-weight:700;
}

.rai-contact-office p,
.rai-contact-office a{
    margin:0;
    color:#cbd5e1;
    text-decoration:none;
}

.rai-contact-office a:hover{
    color:#00b4d8;
}

/* FORM */

.rai-contact-form-wrap{
    background:#081a31;
    border:1px solid rgba(0,180,216,.25);
    border-radius:24px;
    padding:45px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.rai-form-title{
    color:#fff;
    font-size:1.8rem;
    margin-bottom:30px;
    font-family:'Inter',sans-serif;
    font-weight:700;
}

.rai-contact-input{
    background:#031226 !important;
    border:1px solid rgba(255,255,255,.1) !important;
    color:#fff !important;
    padding:16px 20px !important;
    border-radius:14px !important;
    box-shadow:none !important;
}

.rai-contact-input::placeholder{
    color:#94a3b8;
}

.rai-contact-input:focus{
    border-color:#00b4d8 !important;
    box-shadow:0 0 0 3px rgba(0,180,216,.15) !important;
}

.rai-contact-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    border:none;
    background:#00b4d8;
    color:#031226;
    font-weight:700;
    padding:16px 32px;
    border-radius:60px;
    transition:.35s ease;
    font-family:'Inter',sans-serif;
}

.rai-contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,180,216,.35);
}

@media(max-width:991px){

    .rai-contact-section{
        padding:120px 0 80px;
    }

    .rai-contact-title{
        font-size:2.2rem;
    }

    .rai-contact-form-wrap{
        padding:30px;
    }
}

@media(max-width:767px){

    .rai-contact-title{
        font-size:1.9rem;
    }

    .rai-contact-form-wrap{
        padding:22px;
    }

    .rai-contact-btn{
        width:100%;
        justify-content:center;
    }
    .rai-brand{
                white-space: normal;
        max-width: 290px;
        line-height: 1.3;
        margin-right: 0px !important;
    }
    
    .ai-banner{
        justify-content:center;
        padding:60px 20px;
    }
    
    #raiHeader .container-fluid.px-4.px-lg-5{
        padding-top:10px;
        padding-bottom:10px;
    }
    .founder-quote{
        font-size:28px;
    }
    
    .sec-title{
        font-size:28px;
    }
    
    .contact-form-box{
        padding:22px;
    }
    
    .rai-hero-section{
        justify-content:center;
    }
    
    .rai-hero-section{
        padding:120px 20px 100px;
    }
    .rai-hero-image-wrap{
        flex:1;
    }
    .rai-brand-image-wrap{
        flex:1;
    }

    .rai-header{
      padding:20px 10px;
    }

    .rai-header .container-fluid{
      padding:0px !important;
    }
}

.founder-words{
  font-size:36px;
}

.founder-tags h3{
    font-size:14px;
}



/* ============================================================
   REAL AI AUTOMATION — BLOG STYLES (blog.css)
   Colors: Navy #031226 | Cyan #00b4d8 | White #ffffff
   Bootstrap utility-first — minimal custom classes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== GENERAL ===== */
.blog-page {
  background-color: #031226;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
}

.blog-page h1,
.blog-page h2,
.blog-page h3,
.blog-page h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.blog-page a {
  text-decoration: none;
}

/* ===== HERO BANNER ===== */
.blog-hero {
  background: linear-gradient(135deg, #031226 0%, #041f3d 100%);
  border-bottom: 2px solid #00b4d8;
  padding: 150px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
}

.blog-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 12px auto 0;
}

.blog-hero .badge-cyan {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  border: 1px solid #00b4d8;
  color: #00b4d8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.post-sidebar-box p a:hover{
    color:#00b4d8 !important;
}

.side-connect a i{
  padding-right:8px;
}

/* ===== BLOG CARDS (LISTING) ===== */
.blog-list-section {
  padding: 70px 0 90px;
}

.blog-card {
  background: #061a33;
  border: 1px solid rgba(0,180,216,0.18);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #00b4d8;
  box-shadow: 0 16px 40px rgba(0,180,216,0.15);
}

.blog-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #00b4d8;
}

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

.blog-card-tag {
  display: inline-block;
  color: #00b4d8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.blog-card-link {
  color: #00b4d8;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.blog-card-link:hover {
  color: #ffffff;
  gap: 12px;
}

/* ===== SINGLE POST ===== */
.post-hero {
  background: linear-gradient(135deg, #031226 0%, #041f3d 100%);
  border-bottom: 2px solid #00b4d8;
  padding: 140px 0 50px;
}

.post-hero .badge-cyan {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  border: 1px solid #00b4d8;
  color: #00b4d8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.post-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
}

.post-meta-row {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 18px;
}

.post-meta-row span + span::before {
  content: '·';
  margin: 0 10px;
  color: #00b4d8;
}

.post-body-section {
  padding: 60px 0;
}

.post-content {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 44px;
  margin-bottom: 18px;
  color: #00b4d8;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #ffffff;
}

.post-content p {
  margin-bottom: 18px;
}

.post-content ul {
  margin-bottom: 18px;
  padding-left: 0px;
}

.post-content ul li {
  margin-bottom: 8px;
}

.post-question-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #ffffff;
}
 
.post-question-list li i {
  color: #00b4d8;
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.post-content img {
  width: 100%;
  border: 1px solid rgba(0,180,216,0.25);
  margin: 30px 0;
}

.post-quote {
  border-left: 3px solid #00b4d8;
  background: rgba(0,180,216,0.06);
  padding: 22px 26px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.08rem;
  color: #ffffff;
  margin: 30px 0;
}

.post-faq-item {
  border-bottom: 1px solid rgba(0,180,216,0.18);
  padding: 18px 0;
}

.post-faq-item h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #00b4d8;
}

/* ===== AUTHOR BOX ===== */
.author-box {
  background: #061a33;
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 50px;
}

.author-box img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00b4d8;
  flex-shrink: 0;
}

.author-box h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.author-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== SIDEBAR / TOPICS ===== */
.post-side-col {
    position: sticky;
    top: 120px;
}
.post-sidebar-box {
  background: #061a33;
  border: 1px solid rgba(0,180,216,0.18);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}

.post-sidebar-box h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00b4d8;
  margin-bottom: 16px;
}

.topic-pill {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 0 6px 8px 0;
}

.contact-box-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00b4d8, #0077a8);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 100px;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-box-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.4);
  color: #ffffff !important;
}

/* ===== CTA BAND ===== */
.post-cta-band {
  background: linear-gradient(135deg, #041f3d, #031226);
  border-top: 2px solid #00b4d8;
  border-bottom: 2px solid #00b4d8;
  padding: 60px 0;
  text-align: center;
}

.post-cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.post-cta-band p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 26px;
}

.post-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00b4d8, #0077a8);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,180,216,0.45);
  color: #ffffff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .blog-hero h1 {
    font-size: 1.9rem;
  }

  .post-hero h1 {
    font-size: 1.7rem;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .post-content h2 {
    font-size: 1.3rem;
  }

  .post-content h3 {
    font-size: 1.1rem;
  }
}


.post-content p a{
  color:#00b4d8;
}

.post-meta-row span a{
  color:#00b4d8;
}

.post-meta-row span a:hover{
  color:#fff;
}

/*about page new section css */
.jack-contact-section{
    padding:80px 0px;
    border-top:2px solid #fff;
}

.jack-contact-card{
    background:linear-gradient(135deg,#0b1d33,#102947);
    border:1px solid rgba(0,180,216,.15);
    border-radius:24px;
    padding:50px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(13,27,62,.08);
    transition:.4s ease;
}

.jack-contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 80px rgba(13,27,62,.12);
}

.jack-contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#00b4d8;
}

.jack-contact-label{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(0,180,216,.08);
    color:#00b4d8;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.jack-contact-title{
    font-size:32px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.jack-contact-text{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    max-width:650px;
    margin-bottom:0;
}

.jack-contact-info{
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid rgba(13,27,62,.08);
}

.jack-contact-info h5{
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}

.jack-contact-info p{
    margin-bottom:4px;
    color:var(--cyan);
    font-weight:600;
}

.jack-contact-info small{
    color:#7a8499;
    font-size:14px;
}

.jack-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:240px;
    padding:16px 28px;
    border-radius:60px;
    background:#00b4d8;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(0,180,216,.25);
}

.jack-contact-btn:hover{
    background:#0D1B3E;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,180,216,.35);
}

@media(max-width:991px){

    .jack-contact-card{
        padding:35px 20px;
    }

    .jack-contact-title{
        font-size:38px;
    }

    .jack-contact-text{
        font-size:16px;
    }

    .jack-contact-btn{
        width:100%;
        margin-top:15px;
        gap:5px;
        padding: 16px 18px;
    }
}

@media(max-width:767px){

    .jack-contact-title{
        font-size:26px;
    }

    .jack-contact-card{
        border-radius:18px;
    }
}

.jack-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    justify-content: center;
}

.jack-contact-btn-outline{
    background:#fff;
    color:#0D1B3E;
    border:2px solid #00b4d8;
}

.jack-contact-btn-outline:hover{
    background:#00b4d8;
    color:#fff;
}

.jack-contact-btn-dark{
    background:#0D1B3E;
    color:#fff;
}

.jack-contact-btn-dark:hover{
    background:#081127;
    color:#fff;
}
.footer-col ul li {
    display: flex;
    align-items: start;
    gap:10px;
}

.footer-col ul li span,
.footer-col ul li a {
    white-space:unset;
}

section.footer-map-section{
  padding: 0px;
}

.footer-map-section{
    line-height: 0;
}

.footer-map-section iframe{
    display: block;
    width: 100%;
    height: 300px;
}

@media(min-width:1200px) and (max-width:1390px){
	.rai-brand{
		gap:10px;
	}
	
	.rai-brand-name{
		font-size:14px;
	}
	
	.rai-brand-tagline{
		font-size:10px;
	}
	
	.rai-nav .nav-link{
		font-size:13px;
		padding: 6px 10px !important;
	}
}

@media(min-width:1000px) and (max-width:1199px){
	.rai-nav .nav-link{
		font-size:13px;
		padding: 6px 10px !important;
	}

.rai-brand-tagline{
    white-space: normal;
    word-wrap: break-word;
}
}
