@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/* =============================
   CSS CUSTOM PROPERTIES
============================= */
:root {
  --font-family: "Inter", sans-serif;

  /* Brand Colors (light, professional) */
  --primary: #1f6feb;
  --primary-dark: #155fc4;
  --primary-light: #4fa3ff;
  --primary-glow: rgba(31, 111, 235, 0.12);
  --accent: #0a8a72;
  --accent-dark: #066a55;
  --accent-glow: rgba(10, 138, 114, 0.08);

  /* Light Theme Backgrounds */
  --bg-base: #ffffff;
  --bg-secondary: #f6f8fa;
  --bg-tertiary: #eef2f6;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(2, 6, 23, 0.02);
  --bg-glass-hover: rgba(2, 6, 23, 0.04);

  /* Text */
  --text-primary: #0b1a2b;
  --text-secondary: #495d6b;
  --text-muted: #6b7785;
  --white: #ffffff;

  /* Borders */
  --border-color: rgba(31, 111, 235, 0.12);
  --border-glass: rgba(2, 6, 23, 0.06);
  --border-hover: rgba(31, 111, 235, 0.28);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #4f8ef7 0%, #00d4ff 100%);
  --gradient-brand-45: linear-gradient(45deg, #4f8ef7 0%, #00d4ff 100%);
  --gradient-brand-rev: linear-gradient(135deg, #00d4ff 0%, #4f8ef7 100%);
  --gradient-dark: linear-gradient(135deg, #050b18 0%, #0a1832 100%);
  --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(31, 111, 235, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(10, 138, 114, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fa 50%, #ffffff 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 26, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 26, 43, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 26, 43, 0.10);
  --shadow-glow: 0 0 30px rgba(31, 111, 235, 0.06);
  --shadow-glow-accent: 0 0 30px rgba(10, 138, 114, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-card-hover: 0 8px 40px rgba(79, 142, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Legacy compat */
  --black: #050b18;
  --primary-light-old: rgba(79, 142, 247, 0.1);
  --success: #22c55e;
  --error: #ef4444;
}

/* =============================
   RESET & BASE
============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  body {
    font-size: 15px;
  }
}

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

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

button,
input,
textarea {
  font-family: var(--font-family);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2,
.h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3,
.h3 {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
}

h4,
.h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
}

h5,
.h5 {
  font-size: 1.125rem;
}

h6,
.h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =============================
   CUSTOM SCROLLBAR
============================= */
::-webkit-scrollbar {
  width: 6px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* =============================
   PAGE LOADER
============================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* =============================
   GRADIENT TEXT UTILITY
============================= */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================
   SECTION LABEL (pill above headings)
============================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================
   SECTION TITLE FIVE (compat)
============================= */
.section-title-five {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 5;
}

.section-title-five h6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.25);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title-five h6::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title-five h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title-five p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 40px;
  }

  .section-title-five h2 {
    font-size: 1.6rem;
  }
}

/* =============================
   BUTTONS
============================= */
.btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.07);
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn.rounded-full {
  border-radius: 50px;
}

.btn.btn-sm {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.btn.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* Primary */
.primary-btn {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.primary-btn:hover,
.primary-btn:focus {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.deactive.primary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  pointer-events: none;
  box-shadow: none;
}

/* Outline */
.primary-btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-light);
}

.primary-btn-outline:hover,
.primary-btn-outline:focus {
  background: rgba(79, 142, 247, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.deactive.primary-btn-outline {
  color: var(--text-muted);
  border-color: var(--border-glass);
  pointer-events: none;
}

/* Ghost/light for CTA sections */
.light-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.light-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* =============================
   SCROLL TOP BUTTON
============================= */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  color: var(--white) !important;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-bounce);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--primary-glow);
  color: var(--white) !important;
}

/* =============================
   SCROLL REVEAL ANIMATIONS
============================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================
   NAVBAR
============================= */
.navbar-area.navbar-nine {
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 0 6px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-area.navbar-nine.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

@media (max-width: 991px) {
  .navbar-area.navbar-nine {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
  }
}

.navbar-area.navbar-nine .navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}

/* Toggler */
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  display: block;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
  position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
  position: relative;
}

/* Nav Collapse Mobile */
@media (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    z-index: 8;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glass);
  }
}

/* Nav items */
@media (min-width: 1200px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 60px;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
  margin: 10px 0;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

/* ---- Active nav link ---- */
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  color: var(--accent) !important;
  background: rgba(0, 212, 255, 0.1) !important;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
}

/* Desktop: gradient underline indicator */
@media (min-width: 992px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
  }
}

/* Mobile: remove !important override so active state is visible */
@media (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 4px;
    border-radius: 0;
    margin: 0;
    border-bottom: 1px solid var(--border-glass);
  }

  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
    color: var(--accent);
    background: transparent;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
  }
}

/* Navbar menu bar button */
.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 4px;
}

@media (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 10px;
  }
}

@media (max-width: 576px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    right: 52px;
  }
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 20px;
  color: var(--text-primary);
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  background: var(--bg-glass);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* =============================
   SIDEBAR
============================= */
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 1px solid var(--border-color);
  z-index: 9999;
  padding-top: 80px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
}

.sidebar-left.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 576px) {
  .sidebar-left {
    width: 270px;
  }
}

.sidebar-left .sidebar-close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.sidebar-left .sidebar-close .close {
  font-size: 20px;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  transition: var(--transition);
}

.sidebar-left .sidebar-close .close:hover {
  background: rgba(79, 142, 247, 0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}

.sidebar-left .sidebar-logo {
  padding: 0 28px 24px;
}

.sidebar-left .sidebar-logo img {
  height: 36px;
  width: auto;
}

.sidebar-left .text {
  color: var(--text-secondary);
  padding: 0 28px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.sidebar-left .sidebar-menu {
  padding: 0 28px;
}

.sidebar-left .sidebar-menu .menu-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-left .sidebar-menu ul li a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.sidebar-left .sidebar-menu ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.sidebar-left .sidebar-social {
  padding: 28px;
}

.sidebar-left .sidebar-social .social-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-left .sidebar-social ul {
  display: flex;
  gap: 10px;
}

.sidebar-left .sidebar-social ul li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 16px;
  transition: var(--transition);
}

.sidebar-left .sidebar-social ul li a:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary-light);
}

.overlay-left {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 24, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay-left.open {
  opacity: 1;
  visibility: visible;
}

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

/* Animated orbs */
.header-area.header-eight::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: orb-pulse 6s ease-in-out infinite;
}

.header-area.header-eight::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  border-radius: 50%;
  animation: orb-pulse 8s ease-in-out infinite reverse;
}

@keyframes orb-pulse {

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

  50% {
    transform: scale(1.15) translate(20px, -20px);
    opacity: 1;
  }
}

/* Grid overlay */
.header-area.header-eight .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.header-area.header-eight .container {
  position: relative;
  z-index: 1;
}

.header-area.header-eight .header-content .badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.header-area.header-eight .header-content .badge-chip .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.header-area.header-eight .header-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.header-area.header-eight .header-content h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-area.header-eight .header-content>p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.header-area.header-eight .header-content .button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.header-area.header-eight .header-image {
  position: relative;
}

.header-area.header-eight .header-image img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-glass);
  width: 100%;
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Hero image glow ring */
.header-area.header-eight .header-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(79, 142, 247, 0.15) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
}

/* Hero sub-pages (shorter) */
.header-area.header-eight.team-hero,
.header-area.header-eight.about-hero,
.header-area.header-eight.service-hero,
.header-area.header-eight.bpo-hero {
  min-height: 65vh;
  padding: 130px 0 70px;
}

.video-button {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  font-weight: 500;
  background: none !important;
}

.video-button:hover {
  color: var(--accent) !important;
}

.video-button .text {
  color: inherit;
}

.video-button .icon-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
  box-shadow: none !important;
}

.video-button:hover .icon-btn {
  background: var(--primary-glow) !important;
  border-color: var(--primary) !important;
}

/* =============================
   ABOUT SECTION
============================= */
.about-area.about-five {
  padding: 100px 0;
  background: var(--bg-base);
  position: relative;
}

.about-image-five {
  position: relative;
  padding: 20px;
}

.about-image-five img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border-glass);
}

.about-image-five .shape {
  display: none;
}

/* Decorative border */
.about-image-five::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-image: var(--gradient-brand) 1;
  border-radius: 24px;
  opacity: 0.3;
}

.about-five-content {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about-five-content h6.small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.about-five-content .main-title {
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* Nav tabs */
.about-five-tab .nav-tabs {
  border-bottom: 1px solid var(--border-glass);
  gap: 4px;
  margin-bottom: 24px;
}

.about-five-tab .nav-tabs .nav-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px 6px 0 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}

.about-five-tab .nav-tabs .nav-link:hover {
  color: var(--text-primary);
}

.about-five-tab .nav-tabs .nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

.about-five-tab .tab-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Custom list in about */
.custom-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  padding: 6px 0;
  font-size: 0.9rem;
}

.custom-list li i {
  color: var(--accent);
  font-size: 16px;
}

/* =============================
   SERVICES
============================= */
.services-area.services-eight {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-area.services-eight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0.2;
}

.single-services {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.single-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(79, 142, 247, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.single-services:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.single-services:hover::before {
  opacity: 1;
}

.single-services .service-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 15px var(--primary-glow);
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.single-services:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.single-services .service-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.single-services .service-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Service cards with images (BPO/WebDev pages) */
.single-service {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

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

.single-service .service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.single-service .service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-card));
}

.single-service .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.single-service:hover .service-image img {
  transform: scale(1.08);
}

.single-service .service-content {
  padding: 24px;
}

.single-service .service-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-service .service-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.single-service .service-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.single-service .service-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.single-service .service-meta .price {
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.2);
  color: var(--primary-light);
}

.single-service .service-meta .duration {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--accent);
}

.single-service .service-features {
  margin: 0 0 16px;
}

.single-service .service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
}

.single-service .service-features li i {
  color: var(--accent);
}

/* =============================
   STATS / COUNTERS
============================= */
.stats-section {
  background: var(--bg-base);
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-card .stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Legacy about-us-full stats compat */
.single-stat {
  text-align: center;
  padding: 24px 16px;
}

.single-stat h2 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.single-stat p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================
   PRICING
============================= */
.pricing-area {
  padding: 100px 0;
  background: var(--bg-base);
}

.pricing-area.pricing-fourteen.bg-light {
  background: var(--bg-secondary);
}

.pricing-style-fourteen {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.pricing-style-fourteen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition);
}

.pricing-style-fourteen:hover,
.pricing-style-fourteen.middle {
  border-color: rgba(79, 142, 247, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.pricing-style-fourteen:hover::before,
.pricing-style-fourteen.middle::before {
  opacity: 1;
}

.pricing-style-fourteen.middle {
  transform: scale(1.03);
  border-color: rgba(79, 142, 247, 0.4);
}

@media (max-width: 991px) {
  .pricing-style-fourteen.middle {
    transform: scale(1);
  }
}

.pricing-style-fourteen .table-head .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-style-fourteen .table-head>p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.pricing-style-fourteen .table-head .price {
  margin-bottom: 24px;
}

.pricing-style-fourteen .table-head .price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.pricing-style-fourteen .table-head .price .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-top: 6px;
}

.pricing-style-fourteen .table-head .price .duration {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 4px;
  margin-left: 4px;
}

.light-rounded-buttons {
  margin-bottom: 28px;
}

.light-rounded-buttons .btn {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
}

.table-list {
  margin-top: 4px;
}

.table-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-glass);
}

.table-list li:last-child {
  border-bottom: none;
}

.table-list li i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.table-list li i.deactive {
  color: var(--text-muted);
}

/* =============================
   CALL TO ACTION
============================= */
.call-action {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.call-action::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.call-action.bg-primary {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-color: rgba(79, 142, 247, 0.2);
}

.call-action .inner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.call-action .inner-content h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.call-action .inner-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   BLOG / WHY US
============================= */
.latest-news-area {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.single-news {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.single-news:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.single-news .image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.single-news .image a {
  display: block;
  height: 100%;
}

.single-news .image a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-card));
}

.single-news .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.single-news:hover .image img {
  transform: scale(1.08);
}

.single-news .content-body {
  padding: 24px;
}

.single-news .content-body .title a {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
  line-height: 1.4;
}

.single-news .content-body .title a:hover {
  color: var(--accent);
}

.single-news .content-body p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* =============================
   CLIENTS / BRAND STRIP
============================= */
.brand-area {
  padding: 80px 0;
  background: var(--bg-base);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 48px;
}

.single-image {
  opacity: 1;
  transition: var(--transition) transform 0.25s ease;
  filter: none;
}

.single-image:hover {
  transform: translateY(-4px) scale(1.03);
}

.single-image img {
  height: 48px;
  /* increased for better visibility */
  width: auto;
  object-fit: contain;
  max-width: 160px;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

/* Inline required star for dynamic mandatory fields */
.form-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 600;
}

.req-star {
  color: var(--accent);
  margin-left: 6px;
  font-weight: 700;
}

.req-star.hidden {
  visibility: hidden;
}

.form-error {
  color: #b62323;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-item-wrapper .row {
  gap: 16px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.contact-item:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: var(--shadow-card-hover);
}

.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.contact-item .contact-content h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item .contact-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

.contact-form-wrapper .section-title h2 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-form-wrapper .section-title span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.contact-form-wrapper .section-title p {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-form .row {
  margin-bottom: 16px;
}

/* Ensure form columns stack label + control nicely */
.contact-form .col-md-6,
.contact-form .col-12 {
  display: flex;
  flex-direction: column;
}

.contact-form .col-md-6 input,
.contact-form .col-md-6 textarea,
.contact-form .col-12 textarea,
.contact-form .col-12 input {
  width: 100%;
}

.contact-form .col-md-6 label.form-label {
  margin-bottom: 8px;
}

/* Make submit button responsive: full-width on small screens */
.contact-form .text-center #submitBtn {
  min-width: 220px;
}

@media (max-width: 576px) {
  .contact-form .text-center #submitBtn {
    width: 100%;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-family);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(79, 142, 247, 0.05);
  box-shadow: 0 0 0 3px rgba(79, 142, 247, 0.15);
}

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

/* =============================
   MAP
============================= */
.map-section {
  overflow: hidden;
}

.map-container {
  border-top: 1px solid var(--border-glass);
}

.map-container iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
}

/* =============================
   FOOTER
============================= */
.footer-area.footer-eleven {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
}

.footer-area .footer-top {
  padding: 70px 0 50px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .logo {
  margin-bottom: 20px;
}

.footer-widget .logo img {
  height: 36px;
  width: auto;
}

.footer-widget>p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-widget .copyright-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-widget .copyright-text .no-wrap {
  white-space: nowrap;
}

.f-link h5 {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.f-link ul li {
  margin-bottom: 10px;
}

.f-link ul li a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-link ul li a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.f-link ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.f-link ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-3px);
}

/* =============================
   TEAM CARDS
============================= */
.team-section {
  padding: 100px 0;
}

.team-section.bg-light {
  background: var(--bg-secondary) !important;
}

.single-team {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.single-team:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.single-team .team-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.single-team .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.single-team:hover .team-image img {
  transform: scale(1.08);
}

.single-team .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(5, 11, 24, 0.9));
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: var(--transition);
}

.single-team:hover .team-social {
  transform: translateY(0);
}

.single-team .team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.single-team .team-social a:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
}

.single-team .team-content {
  padding: 20px 22px 24px;
}

.single-team .team-content h4 {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.single-team .team-content>p {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.single-team .team-bio p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Careers job cards */
.single-team .team-content .btn {
  margin-top: 16px;
}

/* =============================
   BENEFITS LIST (BPO page)
============================= */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefits-list .benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.benefits-list .benefit-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefits-list .benefit-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* =============================
   MODALS (Legal)
============================= */
.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  color: var(--text-primary);
}

.modal-header {
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 28px;
}

.modal-title {
  color: var(--text-primary);
  font-weight: 700;
}

.btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.6;
}

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 28px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.modal-body h6 {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0 8px;
}

.modal-body h6:first-child {
  margin-top: 0;
}

.modal-body ul,
.modal-body ol {
  padding-left: 20px;
  list-style: disc;
  margin: 8px 0;
}

.modal-body ul li,
.modal-body ol li {
  margin-bottom: 4px;
}

.modal-body ol {
  list-style: decimal;
}

.modal-footer {
  border-top: 1px solid var(--border-glass);
  padding: 16px 28px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.modal-backdrop.show {
  opacity: 0.7;
}

/* API Status Modal */
.badge.bg-success {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
}

/* =============================
   BG HELPERS
============================= */
.bg-light {
  background: var(--bg-secondary) !important;
}

.section {
  padding: 100px 0;
}

/* =============================
   HERO SPECIFIC: no-gap below navbar
============================= */
.mb-100 {
  margin-bottom: 100px;
}

/* =============================
   NAVBAR TOGGLER focus
============================= */
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler {
  border: none;
  background: none;
}