/* ============================================
   NKASH HOLDINGS — C0DEMINE INSPIRED DESIGN
   Ultra-dark futuristic with metallic gradients
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties (Light Theme) ---------- */
:root {
  /* Colors — Clean Light Theme */
  --primary: #ffffff;
  --primary-light: #f8fafc;
  --secondary: #f1f5f9;
  --card-bg: #ffffff;
  --card-bg-hover: #ffffff;

  /* Accent — Electric Sapphire & Cobalt Blue (Matching N-KASH Logo) */
  --accent: #0052cc;
  --accent-alt: #003da6;
  --accent-cyan: #00bfff;
  --accent-glow: rgba(0, 82, 204, 0.25);
  --accent-soft: rgba(0, 82, 204, 0.08);
  --accent-border: rgba(0, 82, 204, 0.18);

  /* Text */
  --text-light: #475569;
  --text-muted: #64748b;
  --text-heading: #0f172a;

  /* Glass / Borders */
  --glass: rgba(255, 255, 255, 0.9);
  --glass-border: #e2e8f0;
  --glass-border-light: #cbd5e1;

  /* Typography */
  --font-body: 'Be Vietnam Pro', sans-serif;
  --font-heading: 'Be Vietnam Pro', sans-serif;

  /* Spacing */
  --section-padding: 90px 0;
  --section-padding-sm: 50px 0;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Borders */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 100px;

  /* Card Shadows */
  --shadow-card-inset: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 15px 35px rgba(0, 82, 204, 0.12);
  --shadow-glow: 0 4px 20px rgba(0, 82, 204, 0.3);

  /* Button Shadows */
  --btn-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--accent);
  color: var(--primary);
}

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

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

::-webkit-scrollbar-thumb {
  background: #25253c;
  border-radius: 3px;
}

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

/* ---------- Light Theme Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, #0052cc 0%, #0077ff 50%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ---------- Utility Classes ---------- */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}

.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: var(--section-padding-sm);
}

.text-accent {
  color: var(--accent) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* ---------- Section Headings ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card-inset);
}

.section-header .section-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- Transparent Top & Glass Scroll Navbar ---------- */
.navbar {
  padding: 18px 0;
  transition: all 0.3s ease-in-out;
  z-index: 1050;
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar.scrolled .navbar-brand {
  color: var(--text-heading) !important;
}

.navbar-brand img.nav-logo,
.footer-brand img.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img.nav-logo {
  filter: none !important;
}

.navbar-brand:hover img.nav-logo,
.footer-brand:hover img.footer-logo {
  transform: scale(1.04);
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: #0f172a !important;
  padding: 6px 8px !important;
  position: relative;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  text-shadow: none !important;
  white-space: nowrap !important;
}

@media (min-width: 1400px) {
  .navbar .nav-link {
    font-size: 0.9rem;
    padding: 6px 12px !important;
  }
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0052cc !important;
  text-shadow: none !important;
}

.navbar.scrolled .nav-link {
  color: #0f172a !important;
  text-shadow: none !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #0052cc !important;
  text-shadow: none !important;
}

/* Unscrolled Navbar contrast for subpages with dark page-hero header (Desktop Only) */
@media (min-width: 992px) {
  body:has(.page-hero) .navbar:not(.scrolled) .nav-link {
    color: #ffffff !important;
  }

  body:has(.page-hero) .navbar:not(.scrolled) .nav-link:hover,
  body:has(.page-hero) .navbar:not(.scrolled) .nav-link.active {
    color: #38bdf8 !important;
  }

  body:has(.page-hero) .navbar:not(.scrolled) .nav-logo {
    filter: brightness(0) invert(1) !important;
  }
}

.navbar-toggler {
  border: 1px solid #cbd5e1 !important;
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar.scrolled .navbar-toggler {
  border: 1px solid #cbd5e1 !important;
}

.navbar-toggler-icon {
  filter: none !important;
  width: 1.2em;
  height: 1.2em;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: none !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 20px 24px !important;
    margin-top: 12px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.15), 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  }

  .navbar.scrolled .navbar-collapse {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.15) !important;
  }

  .navbar .nav-link {
    white-space: normal !important;
  }

  .navbar .dropdown-menu {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 8px 12px !important;
    margin-top: 6px !important;
    margin-bottom: 8px !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  }

  .navbar .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

.nav-cta,
.navbar .nav-link.nav-cta {
  background: #0052cc !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  margin-left: 6px;
  border: none !important;
  box-shadow: 0 4px 18px rgba(0, 82, 204, 0.45) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  white-space: nowrap !important;
  display: inline-block !important;
}

.nav-cta:hover,
.navbar .nav-link.nav-cta:hover,
.navbar .nav-link.nav-cta:focus,
.navbar .nav-link.nav-cta.active {
  background: #003da6 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(0, 82, 204, 0.6) !important;
  transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 191, 255, 0.08) 0%, rgba(0, 82, 204, 0.03) 50%, transparent 100%), #ffffff;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 75, 255, 0.15) 0%, transparent 70%);
  animation: float-orb 15s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 75, 255, 0.08) 0%, transparent 70%);
  animation: float-orb 20s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -50px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card-inset);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 850px;
  color: var(--text-heading);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat h3 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-heading);
}

.hero-stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0;
}

.stat-icon-badge {
  width: 46px;
  height: 46px;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Hero Visual / Float Cards */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.hero-image-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 12px 40px rgba(134, 75, 255, 0.2);
}

.hero-badge-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 17, 27, 0.92);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--shadow-card-inset);
  animation: float-badge 6s ease-in-out infinite;
}

.hero-badge-float .hero-card-icon {
  width: 38px;
  height: 38px;
  font-size: 1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero-badge-float h6 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-heading);
}

.hero-badge-float p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.badge-top-left {
  top: -15px;
  left: -25px;
  animation-delay: 0s;
  border-color: rgba(134, 75, 255, 0.4);
}

.badge-bottom-right {
  bottom: -15px;
  right: -25px;
  animation-delay: 1.5s;
  border-color: rgba(0, 242, 254, 0.4);
}

.badge-middle-right {
  top: 42%;
  right: -30px;
  animation-delay: 3s;
  border-color: rgba(255, 183, 3, 0.4);
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-primary-custom:hover {
  background: var(--accent-alt);
  border-color: var(--accent-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
  color: #ffffff;
}

.btn-outline-custom {
  background: #ffffff;
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: #f8fafc;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Cards ---------- */
.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 204, 0.3);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.08);
}

.glass-card .card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition-base);
}

/* ---------- Solutions Section ---------- */
.solutions-section {
  background: var(--primary);
  position: relative;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 204, 0.3);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.1);
}

.solution-card .sol-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
  transition: var(--transition-base);
}

.solution-card:hover .sol-icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.solution-card h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
}

/* ---------- Reference Service Card Redesign (.service-card-v2) ---------- */
.service-card-v2 {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  border-bottom: 3.5px solid #0052cc;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.14);
  border-color: rgba(0, 82, 204, 0.25);
  border-bottom-color: #0052cc;
}

.service-card-v2 .card-img-frame {
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-card-v2 .card-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-v2:hover .card-img-frame img {
  transform: scale(1.08);
}

.service-card-v2 .card-icon-badge {
  position: absolute;
  top: 142px;
  left: 32px;
  transform: none;
  width: 66px;
  height: 66px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.service-card-v2 .card-icon-badge .icon-inner {
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: 50%;
  color: #0052cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.service-card-v2:hover .card-icon-badge .icon-inner {
  background: #0052cc;
  color: #ffffff;
}

.service-card-v2 .card-body-content {
  padding: 44px 24px 26px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.service-card-v2 h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-align: left;
}

.service-card-v2 p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 100%;
  text-align: left;
}

.service-card-v2 .btn-read-details {
  margin-top: auto;
  margin-right: auto;
  background: #eef2ff;
  color: #0052cc !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-card-v2 .btn-read-details:hover {
  background: #0052cc;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
  transform: translateY(-1px);
}

/* ---------- Service Details Page Styles ---------- */
.step-num-badge {
  width: 44px;
  height: 44px;
  background: #0052cc;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.category-pill-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.category-pill-item:hover,
.category-pill-item.active {
  border-color: #0052cc;
  color: #0052cc !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.1) !important;
}

.icon-circle-badge {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}

.extra-small {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

/* ---------- ISS Framework Section ---------- */
.iss-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.iss-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(134, 75, 255, 0.1) 0%, transparent 70%);
}

.iss-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-inset);
}

.iss-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.iss-card:hover::after {
  transform: scaleX(1);
}

.iss-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card-inset), 0 12px 40px rgba(0,0,0,0.3);
}

.iss-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.iss-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

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

/* ---------- Partners Section (Light Theme Infinite Marquee + Grid) ---------- */
.partners-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid rgba(0, 82, 204, 0.08);
  border-bottom: 1px solid rgba(0, 82, 204, 0.08);
  position: relative;
  overflow: hidden;
}

.partners-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 82, 204, 0.12);
  border-radius: 18px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  height: 64px;
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.partner-card:hover {
  border-color: rgba(0, 82, 204, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fe 100%);
}

.partner-card .p-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 82, 204, 0.08);
  color: #0052cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.partner-card:hover .p-logo-icon {
  background: #0052cc;
  color: #ffffff;
}

.partner-card .p-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.partner-logo-wrapper:hover span {
  color: var(--text-muted);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  padding: 135px 0 75px !important;
  text-align: left !important;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-size: cover !important;
  background-position: center center !important;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(0, 61, 166, 0.88) 50%, rgba(0, 82, 204, 0.85) 100%) !important;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-img-wrap {
  position: relative;
  z-index: 2;
}

.breadcrumb-hero-img {
  width: 140px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.breadcrumb-img-wrap:hover .breadcrumb-hero-img {
  transform: scale(1.06);
  border-color: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 82, 204, 0.4);
}

.page-hero .breadcrumb {
  justify-content: flex-start !important;
  margin-bottom: 0;
  background: transparent !important;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.88rem;
  text-decoration: none;
}

.page-hero .breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.88rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  text-align: left !important;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 !important;
  text-align: left !important;
  position: relative;
  z-index: 1;
}

/* ---------- About / Content Sections ---------- */
.about-content-section {
  background: var(--primary);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-inset);
  border: 1px solid var(--glass-border);
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--primary), transparent);
  pointer-events: none;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.about-text .about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-text .about-list li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.about-text .about-list li i {
  color: var(--accent);
  font-size: 1rem;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-divider-left {
  margin: 0 0 1.5rem 0;
}

/* ---------- Values Section ---------- */
.values-grid .glass-card {
  text-align: center;
}

.values-grid .glass-card .card-icon {
  margin: 0 auto 20px;
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(134, 75, 255, 0.08);
  position: absolute;
  top: 16px;
  right: 24px;
}

/* ---------- Mission Cards ---------- */
.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition-base);
  height: 100%;
  box-shadow: var(--shadow-card-inset);
}

.mission-card:hover {
  border-color: var(--accent-border);
}

.mission-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0, 82, 204, 0.12);
  border: 1px solid rgba(0, 82, 204, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0052cc;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.1);
}

.mission-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Services Cards ---------- */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-inset);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-slow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card-inset), 0 12px 40px rgba(0,0,0,0.3);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  box-shadow: var(--btn-shadow), 0 0 20px var(--accent-glow);
}

.service-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-card .service-features li {
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card .service-features li i {
  color: var(--accent);
  font-size: 0.7rem;
}

.service-card .learn-more {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.service-card .learn-more:hover {
  gap: 12px;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--primary);
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card-inset);
}

.contact-form .form-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition-base);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(134, 75, 255, 0.15);
  color: var(--text-light);
}

.contact-form .form-control::placeholder {
  color: rgba(161, 161, 171, 0.4);
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1ab' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

.contact-form select.form-control option {
  background: var(--primary);
  color: var(--text-light);
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-card-inset);
}

.contact-info-card:hover {
  border-color: var(--accent-border);
}

.contact-info-card .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.contact-info-card h6 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-light);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

img.footer-logo {
  height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
  max-width: 300px;
  line-height: 1.7;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-base);
  box-shadow: var(--shadow-card-inset);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: #0052cc;
  border-color: #0052cc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: var(--text-heading);
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  color: rgba(161, 161, 171, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition-base);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 96px;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-card-inset);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--glass-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .navbar-collapse {
    background: rgba(9, 9, 17, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card-inset);
  }

  .navbar-inner {
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    display: inline-block;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat {
    width: calc(50% - 8px);
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

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

  .contact-form-wrapper {
    padding: 20px;
  }

  .site-footer {
    padding: 40px 0 0;
  }

  .hero-float-card:nth-child(2),
  .hero-float-card:nth-child(3) {
    display: none;
  }

  .glass-card {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- ISS Interactive Section (Light Theme 2-Column Layout) ---------- */
.iss-interactive-section {
  background: #f8fafc;
  padding: 100px 0;
}

.iss-category-tag {
  color: #0052cc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.iss-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.iss-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Nav Pills Switcher Container */
.iss-nav-pills-wrapper {
  background: #ffffff;
  border: 1px solid rgba(88, 70, 224, 0.12);
  box-shadow: 0 10px 30px rgba(88, 70, 224, 0.06);
}

.iss-tab-btn {
  background: #ffffff;
  border: none;
  color: #475569;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.iss-tab-btn .tab-num {
  color: #0052cc;
  font-weight: 800;
}

.iss-tab-btn:hover {
  color: #0f172a;
  background: #f8fafc;
}

.iss-tab-btn.active {
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(88, 70, 224, 0.3);
}

.iss-tab-btn.active .tab-num {
  color: #ffffff;
}

/* Main Card Container with Grid Overlay (Prevents UI Jumping) */
.iss-main-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7f9fe 100%);
  border: 1px solid rgba(88, 70, 224, 0.12);
  box-shadow: 0 20px 40px rgba(88, 70, 224, 0.05);
  border-radius: 28px !important;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 480px;
}

.iss-tab-pane {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.iss-tab-pane.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.iss-pillar-badge {
  display: inline-block;
  background: rgba(88, 70, 224, 0.08);
  border: 1px solid rgba(88, 70, 224, 0.15);
  color: #0052cc;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.iss-tab-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.iss-tab-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Checklist items */
.check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0052cc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Progress bar */
.progress-track {
  width: 100%;
  height: 7px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0052cc, #8066ff);
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* 3D Visual Glassmorphism Pillar Graphics */
.iss-3d-visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 270px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1000px;
}

.iss-podium {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iss-pillars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-bottom: -10px;
  z-index: 2;
}

.iss-pillar {
  width: 74px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 14px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 
    0 15px 35px rgba(88, 70, 224, 0.25),
    inset 0 2px 6px rgba(255, 255, 255, 0.7),
    inset -2px -2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass Shine Reflection Overlay */
.iss-pillar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    transparent 60%
  );
  pointer-events: none;
}

.iss-pillar:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 
    0 22px 45px rgba(88, 70, 224, 0.35),
    inset 0 3px 8px rgba(255, 255, 255, 0.9),
    inset -2px -2px 8px rgba(0, 0, 0, 0.15);
}

.iss-pillar.p-1 {
  height: 115px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.85) 0%, rgba(109, 40, 217, 0.92) 100%);
}

.iss-pillar.p-2 {
  height: 160px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.85) 0%, rgba(29, 78, 216, 0.92) 100%);
}

.iss-pillar.p-3 {
  height: 195px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.85) 0%, rgba(67, 56, 202, 0.92) 100%);
}

.p-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.p-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 2px;
}

/* Glass Podium Base */
.iss-podium-shadow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 70px;
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.9) 0%, rgba(219, 226, 254, 0.75) 100%);
  border-radius: 50%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 15px 35px rgba(88, 70, 224, 0.14),
    inset 0 3px 6px rgba(255, 255, 255, 0.9);
  z-index: 1;
}

/* Floating Glass Impact Pill */
.iss-floating-pill {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(88, 70, 224, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  white-space: nowrap;
}

.iss-floating-pill i {
  color: #0052cc;
}

/* ---------- CTA Section (Light Theme) ---------- */
.cta-section {
  background: #f8fafc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(88, 70, 224, 0.22);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-card h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.cta-btn-white {
  background: #ffffff;
  color: #0052cc !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.cta-btn-white:hover {
  background: #f8fafc;
  color: #4338ca !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cta-btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.cta-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ============================================
   NEW SECTIONS (REFERENCE DESIGNS MATCH)
   ============================================ */

/* ---------- 1. Work With Us Card Section ---------- */
.work-with-us-section {
  padding: 80px 0 40px;
  background: #ffffff;
}

.work-with-us-card {
  background: #ffffff;
  border: 2px solid #0052cc;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(88, 70, 224, 0.08);
}

.work-with-us-content {
  padding: 50px 40px;
}

.work-with-us-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.phone-widget {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-widget-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid #0052cc;
  border-radius: 50%;
  color: #0052cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.phone-widget-text .phone-num {
  color: #0052cc;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.phone-widget-text .phone-label {
  color: #64748b;
  font-size: 0.78rem;
}

.work-with-us-img-wrap {
  height: 100%;
  min-height: 320px;
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.work-with-us-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .work-with-us-img-wrap {
    clip-path: none;
    min-height: 250px;
  }
}

/* ---------- 2. Skills & Overlapping Photos Section ---------- */
.skills-tech-section {
  padding: 80px 0;
  background: #ffffff;
}

.skill-bar-item {
  margin-bottom: 22px;
}

.skill-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.skill-percent {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0052cc;
}

.skill-track {
  width: 100%;
  height: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 6px;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #0052cc 0%, #00bfff 100%);
  border-radius: 20px;
  transition: width 1.2s ease-in-out;
}

/* Overlapping Photos Stack */
.overlapping-photos-container {
  position: relative;
  width: 100%;
  height: 420px;
}

.photo-card-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 210px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.photo-card-2 {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 210px;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.photo-card-3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.photo-card-1 img,
.photo-card-2 img,
.photo-card-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .overlapping-photos-container {
    height: 340px;
  }
  .photo-card-1 { width: 170px; height: 160px; }
  .photo-card-2 { width: 160px; height: 150px; right: 0; }
  .photo-card-3 { width: 250px; height: 180px; }
}

/* ---------- 3. Video Demonstration Banner Section ---------- */
.video-demo-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.video-demo-card {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 25, 35, 0.35) 0%, rgba(15, 25, 35, 0.8) 100%);
  z-index: 1;
}

.play-pill-btn {
  position: relative;
  z-index: 2;
  background: #0052cc;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(88, 70, 224, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.play-pill-btn:hover {
  background: #4338ca;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(88, 70, 224, 0.6);
}

.play-pill-circle {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #0052cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------- 4. News & Insights Blog Grid Section ---------- */
.news-insights-section {
  padding: 90px 0;
  background: #ffffff;
}

.insight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(88, 70, 224, 0.12);
  border-color: rgba(88, 70, 224, 0.3);
}

.insight-img-wrap {
  height: 210px;
  width: 100%;
  overflow: hidden;
}

.insight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-img-wrap img {
  transform: scale(1.06);
}

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

.insight-badge {
  background: rgba(88, 70, 224, 0.08);
  color: #0052cc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
}

.insight-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
}

.insight-desc {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.insight-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
  font-size: 0.82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 12px;
}

.insight-author {
  color: #0052cc;
  font-weight: 700;
}

/* ---------- 5. Dark CTA Banner Section ---------- */
.dark-cta-banner-section {
  padding: 40px 0 80px;
  background: #ffffff;
}

.dark-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 28px;
  padding: 50px 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.dark-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dark-cta-tag {
  color: #818cf8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dark-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  max-width: 620px;
  margin: 12px auto 24px;
  line-height: 1.25;
}

.dark-cta-btn {
  background: #0052cc;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(88, 70, 224, 0.4);
  text-decoration: none;
}

.dark-cta-btn:hover {
  background: #4338ca;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 70, 224, 0.6);
}

/* ---------- 6. Empower About Us Section ---------- */
.empower-about-section {
  padding: 90px 0;
  background: #ffffff;
}

.empower-img-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 440px;
  margin: 0 auto;
}

.empower-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 82, 204, 0.12);
  z-index: 1;
  border: 4px solid #ffffff;
  transition: transform 0.4s ease, z-index 0.4s ease;
}

.empower-photo-main:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 4;
}

.empower-photo-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 290px;
  height: 290px;
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.18);
  z-index: 2;
  transition: transform 0.4s ease, z-index 0.4s ease;
}

.empower-photo-secondary:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 4;
}

.empower-photo-main img,
.empower-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empower-badge-exp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.35);
  border: 4px solid #ffffff;
  z-index: 3;
  min-width: 180px;
  text-align: center;
  transition: transform 0.3s ease;
}

.empower-badge-exp:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.empower-badge-exp h4 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1;
}

.empower-badge-exp p {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.2;
}

/* Tabs switcher */
.empower-tabs-nav {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
}

.empower-tab-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.empower-tab-btn.active {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 4px 15px rgba(88, 70, 224, 0.12);
}

.empower-tab-pane {
  display: none;
}

.empower-tab-pane.active {
  display: block;
  animation: fadeInPane 0.35s ease-in-out;
}

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

.empower-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.empower-check-list li {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.empower-check-list li i {
  color: var(--accent);
  font-size: 0.95rem;
}

/* ---------- 7. Blue Counter Strip ---------- */
.blue-counter-strip {
  background: linear-gradient(90deg, #4338ca 0%, #0052cc 50%, #00bfff 100%);
  padding: 50px 0;
  color: #ffffff;
}

.blue-stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.blue-stat-box:last-child {
  border-right: none;
}

.blue-stat-icon {
  font-size: 2.2rem;
  color: #ffffff;
  opacity: 0.9;
  flex-shrink: 0;
}

.blue-stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.blue-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .blue-stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
  }
  .blue-stat-box:last-child {
    border-bottom: none;
  }
}

/* ---------- Enhanced Integrated Solutions (ISS) Interactive Section ---------- */
.iss-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iss-tab-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.iss-tab-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0052cc;
  background: rgba(88, 70, 224, 0.08);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.iss-tab-text {
  flex-grow: 1;
}

.iss-tab-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.iss-tab-desc {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.45;
}

.iss-tab-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: all 0.35s ease;
  transform: translateX(0);
}

.iss-tab-item:hover {
  border-color: rgba(88, 70, 224, 0.4);
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(88, 70, 224, 0.1);
  background: #ffffff;
}

.iss-tab-item:hover .iss-tab-arrow {
  color: #0052cc;
  transform: translateX(4px);
}

.iss-tab-item.active {
  background: #ffffff;
  border-color: #0052cc !important;
  box-shadow: 0 12px 32px rgba(88, 70, 224, 0.18) !important;
}

.iss-tab-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0052cc 0%, #00bfff 100%);
  border-radius: 18px 0 0 18px;
}

.iss-tab-item.active .iss-tab-num {
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(88, 70, 224, 0.35);
}

.iss-tab-item.active .iss-tab-title {
  color: #0052cc !important;
}

.iss-tab-item.active .iss-tab-arrow {
  color: #0052cc !important;
  transform: translateX(4px);
}

/* Right Side Preview Card */
.iss-preview-card {
  background: #ffffff !important;
  border: 1px solid rgba(88, 70, 224, 0.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.iss-card-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 70, 224, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.icon-square-accent {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0052cc 0%, #7c66ff 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(88, 70, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 70, 224, 0.3) !important;
  box-shadow: 0 8px 20px rgba(88, 70, 224, 0.1);
}

/* ---------- Dark Appointment & Impact Banner Section ---------- */
.appointment-banner-section {
  background: #090d16;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.appointment-banner-card {
  background: #0f172a;
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack .avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0f172a;
  margin-left: -12px;
  transition: transform 0.25s ease;
}

.avatar-stack .avatar-img:first-child {
  margin-left: 0;
}

.avatar-stack .avatar-img:hover {
  transform: translateY(-4px) scale(1.15);
  z-index: 5;
}

.border-end-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .border-end-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}

.btn-appointment-pill {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 11px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-appointment-pill:hover {
  background: #0052cc;
  border-color: #0052cc;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.45);
  transform: translateY(-2px);
}

/* ---------- Navbar Dropdown Enhancements ---------- */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12) !important;
    min-width: 270px;
    padding: 10px;
  }
}

.dropdown-item {
  color: #1e293b;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.92rem;
}

.dropdown-item:hover {
  background: rgba(0, 82, 204, 0.08);
  color: #0052cc;
  transform: translateX(4px);
}

/* ---------- Vertical Slogan Badge ---------- */
.vertical-slogan {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0052cc;
  background: rgba(0, 82, 204, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 82, 204, 0.18);
}

/* ---------- Gallery Item Overlays ---------- */
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* ---------- Newsroom Card ---------- */
.news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.12);
  border-color: rgba(0, 82, 204, 0.3);
}

.news-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: #ffffff;
  border-color: #0052cc;
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.1);
  transform: translateY(-4px);
}

/* ---------- Careers Card ---------- */
.career-card:hover {
  border-color: #0052cc;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.08);
  transform: translateY(-3px);
}

/* ============================================
   HOMEPAGE SECTION REDESIGN STYLES
   ============================================ */

/* Radiant Hero Banner matching Reference Design */
.hero-radiant-section {
  background: #ffffff url('../images/hero.png') no-repeat right center / cover;
  position: relative;
  overflow: hidden;
  padding: 130px 0 60px;
  min-height: 640px;
}

.hero-accent-line {
  width: 38px;
  height: 3.5px;
  background: #0052cc;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-ref-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.hero-ref-title .text-blue-accent {
  color: #0052cc;
}

.hero-ref-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0052cc;
  border: 1.5px solid #0052cc;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-play:hover {
  background: rgba(0, 82, 204, 0.06);
  color: #0040a8;
  border-color: #0040a8;
  transform: translateY(-2px);
}

.hero-play-icon {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1.5px solid #0052cc;
  color: #0052cc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-metrics-ref {
  padding-top: 20px;
  margin-top: 24px;
}

.hero-metric-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-metric-icon {
  font-size: 1.8rem;
  color: #0052cc;
}

.hero-metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0052cc;
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.2;
}

.hero-metric-divider {
  border-right: 1.5px solid #cbd5e1;
}

@media (max-width: 991.98px) {
  .hero-radiant-section {
    background: #ffffff url('../images/hero.png') no-repeat bottom center / contain;
    padding: 110px 0 350px;
  }
  .hero-ref-title {
    font-size: 2.3rem;
  }
  .hero-ref-desc {
    max-width: 100%;
  }
  .hero-metric-divider {
    border-right: none;
  }
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.2);
  color: #0052cc;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background: #0052cc;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 82, 204, 0.6);
}

/* Hero Banner Image Showcase */
.hero-banner-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.15) 0%, rgba(0, 191, 255, 0.1) 100%);
  box-shadow: 0 25px 60px rgba(0, 82, 204, 0.18), 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-banner-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 75px rgba(0, 82, 204, 0.25), 0 15px 35px rgba(15, 23, 42, 0.08);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

/* Floating Hero Light Glass Stat Cards */
.hero-glass-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
}

.hero-glass-stat-card:hover {
  background: #ffffff;
  border-color: #0052cc;
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.12);
  transform: translateY(-4px);
}

/* Verticals Section (Clean White Theme) */
.light-verticals-section {
  background: #ffffff;
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.light-glass-vertical-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.03);
}

.light-glass-vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052cc 0%, #00bfff 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.light-glass-vertical-card:hover::before {
  opacity: 1;
}

.light-glass-vertical-card:hover {
  transform: translateY(-8px);
  border-color: #0052cc;
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.12);
}

.light-vertical-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0052cc;
  line-height: 1;
  opacity: 0.9;
}

.light-vertical-slogan {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0052cc;
  background: rgba(0, 82, 204, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(0, 82, 204, 0.18);
  margin-bottom: 14px;
}

/* Featured Project Showcase */
.featured-project-hero {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.featured-project-hero:hover {
  box-shadow: 0 22px 50px rgba(0, 82, 204, 0.14);
  transform: translateY(-4px);
}

.project-side-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.35s ease;
  display: flex;
  gap: 20px;
  align-items: center;
}

.project-side-card:hover {
  border-color: #0052cc;
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.1);
  transform: translateX(6px);
}

.project-side-thumb {
  width: 140px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Mosaic Masonry Gallery (Light Theme) */
.light-gallery-section {
  background: #ffffff;
  padding: 90px 0;
}

.mosaic-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.mosaic-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-gallery-item:hover img {
  transform: scale(1.08);
}

.mosaic-gallery-tall {
  height: 480px;
}

.mosaic-gallery-square {
  height: 230px;
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mosaic-gallery-item:hover .mosaic-overlay {
  opacity: 1;
}

/* Editorial Magazine Newsroom */
.magazine-news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.magazine-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.12);
  border-color: rgba(0, 82, 204, 0.3);
}

.news-horizontal-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.news-horizontal-item:hover {
  border-color: #0052cc;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.08);
  transform: translateX(4px);
}

.news-horizontal-img {
  width: 130px;
  height: 105px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ==========================================================================
   Redesigned "Our Verticals" Section Styles (.vertical-card-pro)
   ========================================================================== */
.light-verticals-section {
  position: relative;
  background: #ffffff !important;
}

.vertical-card-pro {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.vertical-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052cc 0%, #00bfff 100%);
  z-index: 5;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.vertical-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  border-color: rgba(0, 82, 204, 0.3);
}

.vertical-card-pro:hover::before {
  opacity: 1;
}

.vertical-card-pro .card-img-wrapper {
  position: relative;
  height: 190px;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.vertical-card-pro .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.92;
}

.vertical-card-pro:hover .card-img-wrapper img {
  transform: scale(1.08);
  opacity: 1;
}

.vertical-card-pro .img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
  z-index: 1;
}

.vertical-card-pro .division-badge-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #0052cc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vertical-card-pro .icon-badge-sphere {
  position: absolute;
  top: 164px;
  right: 24px;
  z-index: 10;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.35);
  border: 3.5px solid #ffffff;
  transition: all 0.3s ease;
}

.vertical-card-pro:hover .icon-badge-sphere {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.45);
}

.vertical-card-pro .card-content-body {
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vertical-slogan-badge {
  display: inline-flex;
  align-items: center;
  background: #f0f5ff;
  color: #0052cc;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  align-self: flex-start;
  border: 1px solid rgba(0, 82, 204, 0.15);
}

.vertical-card-pro .vertical-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.vertical-card-pro:hover .vertical-title {
  color: #0052cc;
}

.vertical-card-pro .vertical-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vertical-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.vertical-features-list li {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.vertical-features-list li i {
  color: #00bfff;
  font-size: 0.95rem;
  margin-right: 8px;
}

.vertical-card-pro .btn-explore-division {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(135deg, #0052cc 0%, #00bfff 100%);
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vertical-card-pro .btn-explore-division i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.vertical-card-pro:hover .btn-explore-division {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vertical-card-pro:hover .btn-explore-division i {
  transform: translateX(5px);
}

/* ---------- Testimonial Swiper Slider Styling ---------- */
.testimonial-swiper {
  position: relative;
  width: 100%;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: #0052cc !important;
  width: 28px;
  border-radius: 10px;
}

.swiper-prev-btn, .swiper-next-btn {
  border-color: #cbd5e1 !important;
  color: #0052cc !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
}

.swiper-prev-btn:hover, .swiper-next-btn:hover {
  background: #0052cc !important;
  border-color: #0052cc !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   TABLET & MOBILE RESPONSIVE FIXES (< 992px, < 768px, < 576px)
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
}

/* 1. Mobile & Tablet Navbar */
@media (max-width: 991.98px) {
  .navbar .nav-logo {
    max-height: 42px !important;
  }
  .navbar-collapse {
    background: #ffffff !important;
    padding: 16px 20px 24px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 45px rgba(0, 82, 204, 0.15), 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    margin-top: 12px !important;
    border: 1px solid #eef2f6 !important;
  }
  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .navbar-nav .nav-item {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .navbar-nav .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 0 !important;
    text-align: left !important;
    transition: color 0.25s ease, font-weight 0.25s ease !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #0052cc !important;
    font-weight: 700 !important;
    background: transparent !important;
  }
  .navbar-nav .nav-link.nav-cta,
  .navbar .nav-link.nav-cta {
    background: #0052cc !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    border-radius: 50px !important;
    padding: 10px 26px !important;
    margin-top: 16px !important;
    margin-left: 0 !important;
    border-bottom: none !important;
    display: inline-block !important;
    width: auto !important;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3) !important;
  }

  /* Disable white text on page-hero unscrolled mobile/tablet menu */
  body:has(.page-hero) .navbar:not(.scrolled) .navbar-collapse .nav-link {
    color: #1e293b !important;
  }
  body:has(.page-hero) .navbar:not(.scrolled) .navbar-collapse .nav-link:hover,
  body:has(.page-hero) .navbar:not(.scrolled) .navbar-collapse .nav-link.active {
    color: #0052cc !important;
  }
  body:has(.page-hero) .navbar:not(.scrolled) .navbar-collapse .nav-link.nav-cta {
    color: #ffffff !important;
    background: #0052cc !important;
  }
}

/* 2. Verticals Cards on Mobile / Touch Devices */
@media (max-width: 991.98px) {
  .vertical-card-pro .btn-explore-division {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .vertical-card-pro .icon-badge-sphere {
    top: 164px !important;
  }
}

/* 3. Hero Section Responsiveness */
@media (max-width: 767.98px) {
  .hero-radiant-section {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }
  .hero-radiant-section h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .hero-radiant-section .lead {
    font-size: 0.95rem !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100%;
  }
  .hero-cta-group a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* 4. Overlapping Photo Stack Responsiveness (About Section) */
@media (max-width: 767.98px) {
  .empower-img-container {
    height: 350px !important;
    max-width: 100% !important;
  }
  .empower-photo-main {
    width: 240px !important;
    height: 240px !important;
    border-radius: 20px !important;
  }
  .empower-photo-secondary {
    width: 215px !important;
    height: 215px !important;
    border-radius: 20px !important;
  }
  .empower-badge-exp {
    min-width: 150px !important;
    padding: 12px 18px !important;
    border-radius: 16px !important;
  }
  .empower-badge-exp h4 {
    font-size: 1.5rem !important;
  }
  .empower-badge-exp p {
    font-size: 0.72rem !important;
  }
}

@media (max-width: 480px) {
  .empower-img-container {
    height: 280px !important;
  }
  .empower-photo-main {
    width: 185px !important;
    height: 185px !important;
    border-radius: 16px !important;
  }
  .empower-photo-secondary {
    width: 165px !important;
    height: 165px !important;
    border-radius: 16px !important;
  }
  .empower-badge-exp {
    min-width: 130px !important;
    padding: 10px 14px !important;
  }
  .empower-badge-exp h4 {
    font-size: 1.3rem !important;
  }
}

/* 5. Featured Projects & Testimonials Mobile */
@media (max-width: 575.98px) {
  .featured-project-hero {
    min-height: 340px !important;
    padding: 24px !important;
  }
  .swiper-prev-btn, .swiper-next-btn {
    width: 38px !important;
    height: 38px !important;
  }
}






