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

:root {
  --bg-dark: #020612;
  --bg-gradient: radial-gradient(circle at top right, #09132d, #020612 60%);
  --card-bg: #070e1c;
  --card-border: rgba(255, 255, 255, 0.08);
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-light-gray: #cbd5e1;
  --brand-teal: #0db39e;
  --brand-teal-hover: #10d5bd;
  --brand-teal-light: rgba(13, 179, 158, 0.1);
  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2, 6, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.85rem 0;
  background: rgba(2, 6, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-white);
}

.logo-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-icon-wrapper {
  border-color: var(--brand-teal);
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.2);
}

.logo-image-file {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-image-file {
  transform: scale(1.08);
}

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

.logo-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--text-gray);
  font-weight: 400;
  margin-top: -2px;
}


/* Navigation Menu */
nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

.nav-link.active::after {
  width: 100%;
}

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

/* Dropdown Navigation Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-chevron {
  font-size: 0.65rem;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(7, 14, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 0;
  width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 2.5rem 0.6rem 1.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  text-align: left;
  border-left: 2px solid transparent;
  position: relative;
}

/* Arrow indicator for dropdown items */
.dropdown-item::after {
  content: "→";
  font-size: 0.75rem;
  color: var(--text-gray);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
}

.dropdown-item:hover::after {
  color: var(--text-white);
}

.dropdown-item:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1.75rem;
  border-left-color: var(--brand-teal);
}

/* Accordion styles for solutions tabs */
.solutions-tabs-list .dropdown .dropdown-content {
  display: none;
  padding-left: 0.5rem;
}

.solutions-tabs-list .dropdown.active .dropdown-content {
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-teal {
  background-color: var(--brand-teal);
  color: #010611;
  border: 1px solid var(--brand-teal);
}

.btn-teal:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 179, 158, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-hero-primary {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

.btn-hero-secondary {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Main Hero Section */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-title span.accent {
  color: var(--brand-teal);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Globe Graphic (Right Column) */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-backdrop-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(13, 179, 158, 0.18) 0%, rgba(2, 6, 18, 0) 65%);
  z-index: 1;
  pointer-events: none;
  animation: pulse 8s infinite alternate ease-in-out;
}

.globe-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 25px rgba(13, 179, 158, 0.25));
  transition: transform 0.5s ease;
}

.globe-container:hover .globe-image {
  transform: scale(1.03) rotate(2deg);
}

/* Bottom Stats Card */
.stats-card {
  background: linear-gradient(135deg, rgba(8, 16, 30, 0.7) 0%, rgba(5, 11, 22, 0.9) 100%);
  border: 1.5px solid var(--card-border);
  border-radius: 18px;
  padding: 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Glow Effect on Stats Card Border */
.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(13, 179, 158, 0.05) 30%,
      rgba(13, 179, 158, 0.1) 50%,
      rgba(13, 179, 158, 0.05) 70%,
      transparent);
  transition: 0.8s;
  pointer-events: none;
}

.stats-card:hover::before {
  left: 100%;
  transition: var(--transition-smooth);
}

/* Stats Card Left (Trust Content) */
.trust-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.trust-title {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.flag-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.flag-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.flag-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.flag-icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Stats Card Right (Grid Panels) */
.stats-panel-wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
}

.stat-top-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.stat-top-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.stat-top-info .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-top-info .stat-label {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 500;
  max-width: 60%;
  text-align: right;
  line-height: 1.3;
}

.stat-progress-bar-wrapper {
  height: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-teal-hover));
  border-radius: 10px;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--brand-teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
  font-weight: 400;
}

.stat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-dark);
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  gap: 0.5rem;
  box-sizing: border-box;
}

.stat-pill-num {
  font-weight: 700;
  flex: 0 0 auto;
  min-width: 2.5rem;
  /* ensures numbers align */
  text-align: right;
}

.stat-pill-text {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 5px;
}

.burger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.04);
    opacity: 1.05;
  }
}

/* Our Services Section */
.services-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 6.5rem 0;
}

.services-header {
  max-width: 1000px;
  margin-bottom: 3.5rem;
}

.services-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: inline-block;
}

.services-title {
  font-size: 2.65rem;
  font-weight: 800;
  color: #0c1322;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.services-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 820px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background-color: #0c1322;
  border-radius: 16px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(12, 19, 34, 0.05);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 19, 34, 0.15);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image {
  transform: scale(1.05);
}

.card-icon-badge {
  position: absolute;
  top: 168px;
  left: 20px;
  width: 44px;
  height: 44px;
  background-color: #0c1322;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.card-content {
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link {
  color: var(--brand-teal);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.card-link:hover {
  color: var(--brand-teal-hover);
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.services-footer {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-services-explore {
  background-color: #020612;
  color: var(--text-white);
  border: 1.5px solid #020612;
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-services-explore:hover {
  background-color: #0c1322;
  border-color: #0c1322;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 19, 34, 0.25);
}

/* CTA Banner Section */

/* CTA Banner Section */
.cta-section {
  background-color: #ffffff;
  padding: 0 0 6rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  background: linear-gradient(135deg, #0b1329 0%, #060d1f 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 920px;
  margin: 0 auto;
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.75rem 2rem 2.25rem;
}

.cta-badge {
  color: var(--brand-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
}

.btn-cta-primary {
  background-color: var(--brand-teal);
  color: #060d1f;
  border: 1.5px solid var(--brand-teal);
  ;
  padding: 0.7rem 1.75rem;
  font-size: 0.92rem;
}

.btn-cta-primary:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  color: #060d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(148, 184, 168, 0.3);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1.75rem;
  font-size: 0.92rem;
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-us-section {
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at bottom left, #09132d, var(--bg-dark) 70%);
  padding: 6.5rem 0;
  color: var(--text-white);
}

.why-us-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
}

.why-us-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.why-us-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.why-us-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 179, 158, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-us-card .card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.why-us-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  background-color: rgba(13, 179, 158, 0.08);
  border: 1.5px solid rgba(13, 179, 158, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  transition: var(--transition-smooth);
}

.why-us-card:hover .card-icon {
  background-color: var(--brand-teal);
  color: #010611;
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.4);
}

.why-us-card .card-icon svg,
.why-us-card .card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.why-us-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.why-us-card .card-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.why-us-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  border: 1px solid var(--card-border);
}

.why-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.why-us-image-wrapper:hover .why-us-image {
  transform: scale(1.03);
}

/* Our Insights Section */
.insights-section {
  background-color: #ffffff;
  padding: 6.5rem 0;
  color: #0f172a;
}

.insights-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
}

.insights-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: inline-block;
}

.insights-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.insights-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.insight-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(13, 179, 158, 0.25);
}

.insight-image-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.insight-card:hover .insight-image {
  transform: scale(1.05);
}

.insight-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex-grow: 1;
}

.insight-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c1322;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
  /* Truncate at 2 lines for neatness */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card:hover .insight-card-title {
  color: var(--brand-teal);
}

.insight-card-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-link {
  color: var(--brand-teal);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.insight-link:hover {
  color: var(--brand-teal-hover);
}

.insight-link svg {
  transition: transform 0.3s ease;
}

.insight-link:hover svg {
  transform: translateX(4px);
}

.insights-footer {
  display: flex;
  justify-content: center;
}

.btn-insights-explore {
  background-color: #020612;
  color: var(--text-white);
  border: 1.5px solid #020612;
  padding: 0.8rem 2.25rem;
  font-size: 1rem;
}

.btn-insights-explore:hover {
  background-color: #0c1322;
  border-color: #0c1322;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 19, 34, 0.25);
}

.btn-insights-explore svg {
  transition: transform 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .stats-card {
    gap: 2rem;
  }

  .stats-panel-wrapper {
    padding-left: 2rem;
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-actions {
    margin-bottom: 2rem;
  }

  .hero-visual {
    justify-content: center;
    order: -1;
  }

  .globe-container {
    aspect-ratio: 1.4;
    max-width: 500px;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }

  .stats-panel-wrapper {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 2rem;
  }

  .services-section {
    padding: 4.5rem 0;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-image-wrapper {
    min-height: 260px;
  }

  .cta-content {
    padding: 2.5rem;
    text-align: center;
    align-items: center;
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .cta-actions {
    justify-content: center;
  }

  .why-us-section {
    padding: 4.5rem 0;
  }

  .why-us-title {
    font-size: 2.2rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-us-image-wrapper {
    order: -1;
    max-width: 600px;
    height: 380px;
    margin: 0 auto;
  }

  .insights-section {
    padding: 4.5rem 0;
  }

  .insights-title {
    font-size: 2.2rem;
  }

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

@media (max-width: 768px) {

  /* Navigation Mobile Toggle */
  .burger-menu {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(4, 9, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 7rem 2.5rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
  }

  .nav-list.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .header-btn {
    display: none;
    /* Hide header btn on mobile, user can navigate to contact */
  }

  /* Mobile Dropdown Menu Accordion */
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 8px;
    padding: 0;
    margin-top: 0.5rem;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-item-dropdown.open .dropdown-menu {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.5rem 0;
    border-left: 2px solid var(--brand-teal);
  }

  .nav-item-dropdown .dropdown-item {
    padding: 0.6rem 1.5rem !important;
  }

  .nav-item-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
  }

  /* Mobile Burger Active Animation */
  .burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-section {
    padding-top: 7.5rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .globe-container {
    aspect-ratio: 1.2;
    max-width: 320px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 1.85rem;
  }

  .services-section {
    padding: 3.5rem 0;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .services-description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

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

  .services-footer {
    margin-top: 2.5rem;
  }

  .cta-section {
    padding: 0 0 3.5rem;
  }

  .cta-content {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .why-us-section {
    padding: 3.5rem 0;
  }

  .why-us-title {
    font-size: 1.75rem;
  }

  .why-us-description {
    font-size: 0.95rem;
  }

  .why-us-card {
    padding: 1.75rem 1.5rem;
  }

  .why-us-image-wrapper {
    height: 280px;
  }

  .insights-section {
    padding: 3.5rem 0;
  }

  .insights-title {
    font-size: 1.75rem;
  }

  .insights-description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .insight-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
  }

  .insight-image-wrapper {
    width: 100%;
    height: 160px;
  }

  .insight-content {
    margin-top: 0.5rem;
  }
}

@media (max-width: 380px) {
  .logo-subtitle {
    display: none;
  }

  .logo-title {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }
}

/* Footer Styles */
.main-footer {
  background-color: #020612;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  color: var(--text-white);
}

.footer-newsletter {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.newsletter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.newsletter-content {
  max-width: 550px;
}

.newsletter-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  color: var(--text-white);
}

.newsletter-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 0.35rem 0.35rem 0.35rem 1.5rem;
  width: 100%;
  max-width: 480px;
  transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
  border-color: rgba(13, 179, 158, 0.4);
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.1);
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: #475569;
}

.btn-newsletter {
  background-color: var(--brand-teal);
  color: #020612;
  border: 1px solid var(--brand-teal);
  padding: 0.65rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-newsletter:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(13, 179, 158, 0.25);
}

.footer-bottom {
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-btn:hover {
  background-color: rgba(13, 179, 158, 0.1);
  border-color: var(--brand-teal);
  color: var(--text-white);
  transform: translateY(-2px);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-link {
  color: var(--text-gray);
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--text-white);
  padding-left: 3px;
}

.footer-copyright-bar {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 0.82rem;
  color: #475569;
}

/* Floating Chat Widget */
.chat-widget-wrapper {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 999;
}

.chat-widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020612;
  box-shadow: 0 8px 30px rgba(13, 179, 158, 0.4);
  transition: var(--transition-smooth);
}

.chat-widget-btn:hover {
  background-color: var(--brand-teal-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 179, 158, 0.5);
}

/* Responsive Footer Styles */
@media (max-width: 968px) {
  .newsletter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 1rem;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .chat-widget-wrapper {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .chat-widget-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-newsletter {
    padding: 3rem 0;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .footer-bottom {
    padding: 3.5rem 0 3rem;
  }

  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.75rem;
    border-radius: 0;
  }

  .newsletter-form:focus-within {
    box-shadow: none;
  }

  .newsletter-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    width: 100%;
  }

  .newsletter-input:focus {
    border-color: rgba(13, 179, 158, 0.4);
  }

  .btn-newsletter {
    width: 100%;
    padding: 0.8rem;
  }
}

/* About Us Hero Section */
.about-hero-section {
  padding-top: 10rem;
  padding-bottom: 6.5rem;
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.about-hero-title span.accent-dim {
  color: var(--brand-teal)
}

.about-hero-subheading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.about-hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.about-hero-actions {
  display: flex;
}

.btn-about-hero {
  background-color: var(--brand-teal);
  color: #010611;
  border: 1px solid var(--brand-teal);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-about-hero:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 179, 158, 0.3);
}

.btn-about-hero svg {
  transition: transform 0.3s ease;
}

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

/* Video Player Styling */
.about-video-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  aspect-ratio: 16/9;
  background-color: #000;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 6, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020612;
  box-shadow: 0 10px 25px rgba(13, 179, 158, 0.4);
  transition: var(--transition-smooth);
}

.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--brand-teal-hover);
  box-shadow: 0 12px 30px rgba(13, 179, 158, 0.6);
}

.video-play-btn svg {
  margin-left: 4px;
}

/* Responsive About Page */
@media (max-width: 968px) {
  .about-hero-section {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .about-hero-content {
    align-items: center;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-video-container {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subheading {
    font-size: 1.15rem;
  }

  .about-hero-description {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   What We Do Section (Interactive Tabbed Services - Corporate Redesign)
   ========================================================================== */
.what-we-do-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 7.5rem 0;
  transition: var(--transition-smooth);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.what-we-do-section .container {
  position: relative;
  z-index: 2;
}

.section-header-centered {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  display: inline-block;
  text-transform: uppercase;
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0c1322;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.highlight-corporate {
  color: var(--brand-teal);
  position: relative;
  display: inline-block;
}

.highlight-corporate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), transparent);
  border-radius: 2px;
}

.section-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Corporate Tabs Grid (Centered Pill Menu) */
.corp-tabs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}

.corp-tab-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: visible;
  color: #64748b;
}

.corp-tab-card::after {
  content: '';
  position: absolute;
  bottom: -1.05rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-teal);
  box-shadow: 0 0 8px rgba(13, 179, 158, 0.4);
  transition: var(--transition-smooth);
}

.pillar-icon {
  color: #64748b;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.pillar-desc {
  display: none;
  /* Hide description in tab navigator for sleeker design */
}

/* Hover & Active States */
.corp-tab-card:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #0c1322;
}

.corp-tab-card:hover .pillar-title {
  color: #0c1322;
}

.corp-tab-card:hover .pillar-icon {
  color: var(--brand-teal-hover);
}

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

.corp-tab-card.active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.corp-tab-card.active .pillar-title {
  color: var(--brand-teal);
  font-weight: 700;
}

.corp-tab-card.active .pillar-icon {
  color: var(--brand-teal);
}

.corp-tab-card.active::after {
  width: 100%;
}

/* Split Area */
.services-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5.5rem;
  align-items: stretch;
}

.services-list-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Corporate Menu list */
.corp-menu-container {
  position: relative;
}

.corp-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.corp-menu-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 10px;
  border-left: 3px solid transparent;
  background-color: transparent;
  border-bottom: 1px solid #f1f5f9;
}

.node-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  transition: var(--transition-smooth);
  font-family: monospace;
  opacity: 0.6;
}

.node-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition-smooth);
}

/* Hover & Active menu states */
.corp-menu-item:hover {
  background-color: #f8fafc;
  border-bottom-color: #cbd5e1;
}

.corp-menu-item:hover .node-name {
  color: var(--brand-teal-hover);
  transform: translateX(6px);
}

.corp-menu-item.active {
  background-color: rgba(13, 179, 158, 0.04);
  border-left-color: var(--brand-teal);
  border-bottom-color: transparent;
  box-shadow: inset 5px 0 15px rgba(13, 179, 158, 0.01);
}

.corp-menu-item.active .node-num {
  color: var(--brand-teal);
  opacity: 1;
}

.corp-menu-item.active .node-name {
  color: #0c1322;
  font-weight: 700;
}

/* Explore button */
.explore-btn-wrapper {
  margin-top: 0.5rem;
}

.btn-explore-service {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid var(--brand-teal);
  background-color: transparent;
  color: var(--brand-teal);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.05);
}

.btn-explore-service:hover {
  background-color: var(--brand-teal);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 179, 158, 0.25);
}

.btn-explore-service svg {
  transition: transform 0.3s ease;
}

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

/* Right Details Card - Corporate Redesign (Premium Dark Glass HUD) */
.services-details-col {
  position: relative;
  height: 100%;
}

.corp-detail-card {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 16, 30, 0.96) 0%, rgba(3, 7, 18, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3.5rem;
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(13, 179, 158, 0.05);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Card Header styles */
.card-detail-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.card-detail-badge {
  background-color: rgba(13, 179, 158, 0.1);
  color: var(--brand-teal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(13, 179, 158, 0.2);
}

.card-detail-icon-wrapper {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-icon-slot {
  position: relative;
  z-index: 2;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.corp-icon-slot svg {
  width: 22px;
  height: 22px;
}

.card-detail-title {
  position: relative;
  z-index: 3;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.card-divider {
  position: relative;
  z-index: 3;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-teal-hover));
  margin-bottom: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(13, 179, 158, 0.3);
}

.card-detail-desc {
  position: relative;
  z-index: 3;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

/* Card Corporate Telemetry Progress Footer */
.corp-telemetry-footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.corp-telemetry-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.telemetry-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.telemetry-label {
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.telemetry-value {
  font-size: 0.95rem;
  color: var(--brand-teal);
  font-weight: 700;
  font-family: monospace;
}

.telemetry-progress-track {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.telemetry-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-teal-hover));
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(13, 179, 158, 0.5);
}

/* Transition class during data update */
.corp-detail-card.updating {
  opacity: 0.2;
  transform: translateY(10px);
}

/* ==========================================================================
   Responsive Styles for Interactive tabs
   ========================================================================== */
@media (max-width: 992px) {
  .corp-tabs-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .services-split-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .corp-menu-item {
    padding: 1.25rem;
  }

  .corp-detail-card {
    padding: 2.75rem;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .corp-tabs-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .corp-tab-card {
    padding: 0.75rem 1rem;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
  }

  .corp-tab-card::after {
    display: none;
    /* hide bottom underline on vertical mobile view */
  }

  .corp-tab-card.active {
    border-bottom-color: var(--brand-teal);
  }

  .what-we-do-section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .corp-menu-item {
    padding: 1.25rem 1rem;
  }

  .node-name {
    font-size: 0.98rem;
  }

  .corp-detail-card {
    padding: 2rem;
  }

  .card-detail-title {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   Digital Services Page Styles
   ========================================================================== */
.services-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.services-hero-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.services-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.services-hero-title span.accent {
  color: var(--brand-teal);
}

.services-hero-subheading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.services-hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.services-hero-actions {
  display: flex;
  gap: 1.25rem;
}

.btn-services-hero {
  background-color: var(--brand-teal);
  color: #010611;
  border: 1px solid var(--brand-teal);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-services-hero:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 179, 158, 0.3);
}

.btn-services-hero svg {
  transition: transform 0.3s ease;
}

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

.btn-services-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-services-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  transform: translateY(-2px);
}

.services-hero-visual {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  aspect-ratio: 16/10;
  background-color: #000;
}

.services-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-hero-visual:hover .services-hero-image {
  transform: scale(1.03);
}

/* Services Sub-Navigation Bar (Glassmorphic inside Hero) */
.services-subnav-container {
  position: relative;
  margin-top: 4.5rem;
  width: 100%;
  z-index: 10;
}

/* Services Subnav Guide styling */
.services-subnav-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-teal);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--brand-teal);
  animation: pulse-dot-anim 1.8s infinite ease-in-out;
}

@keyframes pulse-dot-anim {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.services-subnav-bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  height: 5rem;
  align-items: stretch;
}

.services-subnav-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-gray);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  text-align: center;
  padding: 0 1rem;
}

.services-subnav-tab:last-child {
  border-right: none;
}

.services-subnav-tab:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--brand-teal-hover);
}

.services-subnav-tab.active {
  background-color: var(--brand-teal);
  color: #020612;
  font-weight: 700;
}

/* Showcase Section */
.services-showcase-section {
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at bottom right, #09132d, var(--bg-dark) 70%);
  padding: 8.5rem 0 6.5rem;
  /* extra top padding to account for overlapping bar */
  color: var(--text-white);
}

.showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.showcase-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: inline-block;
}

.showcase-title {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.showcase-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.services-showcase-card {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 16, 30, 0.7) 0%, rgba(5, 11, 22, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.services-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 179, 158, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(13, 179, 158, 0.05);
}

.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.showcase-card-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  font-family: monospace;
}

.showcase-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.services-showcase-card:hover .showcase-card-icon {
  background-color: var(--brand-teal);
  color: #010611;
  box-shadow: 0 0 12px rgba(13, 179, 158, 0.4);
}

.showcase-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2px;
}

.showcase-card-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

.showcase-card-divider {
  width: 50px;
  height: 3px;
  background: var(--brand-teal);
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

.showcase-card-desc {
  font-size: 0.98rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.showcase-telemetry {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Digital Services Page */
@media (max-width: 992px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
  }

  .services-hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .services-hero-section {
    padding-bottom: 4rem;
  }

  .services-subnav-container {
    position: relative;
    bottom: auto;
    margin-top: 3rem;
  }

  .services-subnav-bar {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .services-subnav-tab {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-subnav-tab:nth-child(even) {
    border-right: none;
  }

  .services-subnav-tab:nth-child(3),
  .services-subnav-tab:nth-child(4) {
    border-bottom: none;
  }

  .services-showcase-section {
    padding-top: 12rem;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .services-hero-title {
    font-size: 2.85rem;
  }

  .services-hero-subheading {
    font-size: 1.15rem;
  }

  .services-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .services-hero-actions .btn-services-hero,
  .services-hero-actions .btn-services-hero-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .services-subnav-tab {
    border-right: none !important;
  }

  .services-subnav-tab:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-subnav-container {
    position: relative;
    bottom: auto;
    margin-top: 2rem;
  }

  .services-showcase-section {
    padding-top: 15rem;
  }

  .showcase-title {
    font-size: 2.1rem;
  }

  .services-showcase-card {
    padding: 2rem;
  }
}

/* ==========================================================================
   Solutions that drive Transformation & Trusted Partners sections (White Background)
   ========================================================================== */
.transformation-services-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 6rem 0 6rem;
  border-top: 1px solid #e2e8f0;
}

.transformation-header {
  text-align: left;
  margin-bottom: 4rem;
}

.transformation-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.transformation-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  font-weight: 400;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.transformation-card {
  background: #070d1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.transformation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 179, 158, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(13, 179, 158, 0.1);
}

.transformation-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.transformation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 179, 158, 0.1);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2px;
}

.transformation-card-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  font-family: monospace;
}

.transformation-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.transformation-card-underline {
  width: 35px;
  height: 3px;
  background: var(--brand-teal);
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

.transformation-card-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.transformation-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.transformation-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.transformation-card-item svg.check-icon {
  flex-shrink: 0;
  stroke: var(--brand-teal);
}

.transformation-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-teal);
  transition: var(--transition-smooth);
  margin-top: auto;
}

.transformation-card-link:hover {
  color: var(--brand-teal-hover);
}

.transformation-card-link svg {
  transition: transform 0.3s ease;
}

.transformation-card-link:hover svg {
  transform: translateX(4px);
}

/* Partners Section */
.partners-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 0 0 8.5rem;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c1322;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 5rem;
}

.partners-category {
  margin-bottom: 4.5rem;
}

.partners-category:last-child {
  margin-bottom: 0;
}

.partners-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c1322;
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.partners-category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}

.partners-logo-grid {
  display: grid;
  gap: 1.5rem;
}

.partners-logo-grid.tech-logos {
  grid-template-columns: repeat(6, 1fr);
}

.partners-logo-grid.dist-logos {
  grid-template-columns: repeat(4, 1fr);
}

.partner-logo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner-logo-card svg,
.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo {
  transition: var(--transition-smooth);
}

.partner-logo-card:hover .partner-logo {
  transform: scale(1.05);
}

/* Responsive Overrides */
@media (max-width: 992px) {

  .transformation-title,
  .partners-title {
    font-size: 2.25rem;
  }

  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .partners-logo-grid.tech-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-logo-grid.dist-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {

  .transformation-title,
  .partners-title {
    font-size: 1.85rem;
  }

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

  .partners-logo-grid.tech-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .partner-logo-card {
    height: 75px;
  }
}

/* Industry Solutions Section */
.industry-solutions-section {
  padding: 8.5rem 0 3.5rem 0;
  background-color: var(--bg-dark);
}

.industry-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.industry-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.industry-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.industry-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 179, 158, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  background: rgba(13, 179, 158, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
}

.industry-card .card-icon svg {
  width: 22px;
  height: 22px;
}

.industry-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.industry-card .card-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.private-sector-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--brand-teal);
  padding-left: 0.75rem;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Success Stories Section */
.success-stories-section {
  padding: 3.5rem 0 6rem 0;
  background-color: var(--bg-dark);
}

.success-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 4.5rem 3.5rem;
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-badge {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.success-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.success-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.success-tab {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.success-tab:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

.success-tab.active {
  background-color: var(--brand-teal);
  border-color: var(--brand-teal);
  color: #ffffff;
}

/* Case Study Card */
.case-study-card {
  background-color: #070e1c;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: #ffffff;
  min-height: 400px;
  box-shadow: 0 15px 35px rgba(7, 14, 28, 0.2);
}

.case-study-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.case-study-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.case-study-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
}

.btn-case-study {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.btn-case-study:hover {
  background: #ffffff;
  color: #070e1c;
}

.btn-case-study svg {
  transition: transform 0.3s ease;
}

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

/* Case Study Visual */
.case-study-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.case-study-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 14, 28, 0.9) 10%, rgba(7, 14, 28, 0.4) 100%);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.stat-pill {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 340px;
  margin-left: auto;
  transition: var(--transition-smooth);
}

.stat-pill:hover {
  transform: scale(1.03);
  border-color: rgba(13, 179, 158, 0.2);
}

.stat-pill-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-teal);
  line-height: 1;
}

.stat-pill-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.3;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-arrow {
  background: transparent;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

.slider-pagination {
  display: flex;
  gap: 0.5rem;
}

.pagination-dot {
  width: 24px;
  height: 6px;
  background-color: #cbd5e1;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pagination-dot.active {
  background-color: #0c1322;
  width: 32px;
}

/* Responsive adjustments for success stories */
@media (max-width: 992px) {
  .case-study-card {
    grid-template-columns: 1fr;
  }

  .success-container {
    padding: 3rem 2rem;
  }

  .case-study-content {
    padding: 2.5rem 2rem;
  }

  .stat-pill {
    margin-left: 0;
    max-width: 100%;
  }

  .case-study-stats-overlay {
    position: relative;
    background: transparent;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .success-tabs {
    flex-wrap: wrap;
  }

  .success-title {
    font-size: 2rem;
  }
}

/* Solve Challenges CTA Section */
.challenges-cta-section {
  background: linear-gradient(90deg, #1b7369 0%, #309b8e 100%);
  padding: 3.5rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.challenges-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.challenges-cta-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.challenges-cta-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%), #14a393;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.challenges-cta-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.challenges-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.challenges-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.challenges-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.challenges-cta-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-book-call {
  background-color: #030816;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 2.25rem;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-book-call:hover {
  background-color: #ffffff;
  color: #030816 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-book-call svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-callback {
  background-color: #14a393;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 2.25rem;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-callback:hover {
  background-color: #ffffff;
  color: #14a393 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-callback svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-callback:hover svg {
  transform: translateX(3px);
}

/* Responsive adjustments for challenges CTA */
@media (max-width: 992px) {
  .challenges-cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .challenges-cta-actions {
    align-self: stretch;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .challenges-cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .challenges-cta-title {
    font-size: 1.5rem;
  }

  .challenges-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-book-call,
  .btn-callback {
    justify-content: center;
  }
}

/* ==========================================================================
   Insights Page Styles
   ========================================================================== */
.insights-hero-section {
  padding-top: 10rem;
  padding-bottom: 8.5rem;
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  position: relative;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.insights-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.insights-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.insights-hero-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.insights-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.insights-hero-title span.accent {
  color: var(--brand-teal);
}

.insights-hero-subheading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.insights-hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.insights-hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-insights-hero {
  background-color: var(--brand-teal);
  color: #010611;
  border: 1px solid var(--brand-teal);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-insights-hero:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 179, 158, 0.3);
}

.btn-insights-hero svg {
  transition: transform 0.3s ease;
}

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

/* Insights Hero Visual Image */
.insights-hero-visual {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  aspect-ratio: 16/10;
  background-color: #000;
}

.insights-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insights-hero-visual:hover .insights-hero-image {
  transform: scale(1.03);
}

/* Category Filters Bar */
.insights-filter-section {
  background-color: #ffffff;
  padding: 5rem 0 6.5rem;
  color: #0f172a;
}

.insights-filter-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.insights-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: 50px;
  align-self: center;
  border: 1px solid #e2e8f0;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #64748b;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.03);
}

.filter-btn.active {
  background: #0c1322;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(12, 19, 34, 0.15);
}

/* Sub-filters styling */
.sub-filter-bar-container {
  display: flex;
  justify-content: center;
  width: 100%;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sub-filter-group {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sub-filter-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sub-filter-btn:hover {
  border-color: #0c1322;
  color: #0c1322;
  background: rgba(12, 19, 34, 0.02);
}

.sub-filter-btn.active {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(30, 41, 59, 0.15);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Insights grid modification for page context */
.insights-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.insights-page-grid .insight-card {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.insights-page-grid .insight-card.hidden {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  pointer-events: none;
  display: none;
}

/* Highlights Section Grid (Top of Insights Page) */
.featured-insight-section {
  background: #ffffff;
  padding: 5rem 0 3.5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  border-color: rgba(13, 179, 158, 0.2);
}

.highlight-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.highlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-image {
  transform: scale(1.03);
}

.highlight-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.highlight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

.highlight-category-badge {
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c1322;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.highlight-card:hover .highlight-title {
  color: var(--brand-teal);
}

.highlight-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-highlight-read {
  background: #0c1322;
  color: #ffffff !important;
  border: 1px solid #0c1322;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.btn-highlight-read:hover {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  color: #0c1322 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(13, 179, 158, 0.25);
}

.btn-highlight-read svg {
  transition: transform 0.3s ease;
}

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

/* Glassmorphic Reading Modal */
.insights-reader-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.insights-reader-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.modal-container {
  position: relative;
  background: #070e1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 95%;
  max-width: 1150px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1010;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.insights-reader-modal.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-badge-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-category {
  color: var(--brand-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-meta {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.btn-close-modal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-teal-hover);
  transform: rotate(90deg);
}

.modal-scrollable-content {
  overflow-y: auto;
  padding: 2.5rem;
  flex-grow: 1;
}

.modal-article-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.modal-article-banner {
  width: 100%;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-article-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-article-body {
  font-size: 1.05rem;
  color: var(--text-light-gray);
  line-height: 1.7;
}

.modal-article-body p {
  margin-bottom: 1.5rem;
}

.modal-article-body h3,
.modal-article-body h4 {
  color: var(--text-white);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.modal-article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.modal-article-body li {
  margin-bottom: 0.5rem;
}

.modal-article-body blockquote {
  border-left: 3px solid var(--brand-teal);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-white);
  background: rgba(13, 179, 158, 0.03);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.modal-article-body strong {
  color: var(--text-white);
}

/* Modal Scrollbar Styling */
.modal-scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.modal-scrollable-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-scrollable-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-scrollable-content::-webkit-scrollbar-thumb:hover {
  background: var(--brand-teal);
}

/* Responsive adjustments for Insights page */
@media (max-width: 992px) {
  .insights-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .insights-hero-visual {
    height: auto;
    max-width: 600px;
    margin: 0 auto;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .insights-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .insights-hero-title {
    font-size: 2.8rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-header {
    padding: 1.25rem 1.5rem;
  }

  .modal-scrollable-content {
    padding: 1.5rem;
  }

  .modal-article-title {
    font-size: 1.6rem;
  }

  .modal-article-banner {
    height: 220px;
  }

  .insights-filter-bar {
    border-radius: 20px;
    padding: 0.35rem;
    gap: 0.35rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Custom Card Tags */
.insight-card-tags {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.insight-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.insight-tag-service {
  background: rgba(13, 179, 158, 0.1);
  color: #0d8a7c;
}

.insight-tag-subservice {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

/* ==========================================================================
   Advanced Document & Presentation Viewer Styling
   ========================================================================== */

/* Header Override & Enhancements */
.modal-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.modal-doc-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-doc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-doc-icon svg {
  width: 20px;
  height: 20px;
}

.modal-doc-icon.pdf-icon {
  color: #ef4444;
}

.modal-doc-icon.word-icon {
  color: #3b82f6;
}

.modal-doc-icon.pptx-icon {
  color: #f97316;
}

.modal-doc-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* View Mode Switcher */
.modal-view-mode-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3px;
  margin-left: auto;
  margin-right: 1.5rem;
}

.view-mode-btn {
  border: none;
  background: transparent;
  color: var(--text-gray);
  padding: 6px 16px;
  border-radius: 17px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.view-mode-btn.active {
  background: var(--brand-teal);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(13, 179, 158, 0.3);
}

.view-mode-btn:hover:not(.active) {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.modal-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Import Button (Disabled / Read-Only Mode) */
.btn-import-doc {
  display: none !important;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 179, 158, 0.1);
  border: 1px solid rgba(13, 179, 158, 0.25);
  color: #0db39e;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-import-doc:hover {
  background: var(--brand-teal);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(13, 179, 158, 0.3);
}

/* Content Panels Layout */
.modal-content-panels {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
  height: calc(90vh - 75px);
}

.modal-content-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

#document-viewer {
  background: #030812;
  height: 100%;
}

.doc-viewer-mode-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* PDF Viewer UI */
.pdf-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: rgba(7, 14, 28, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.pdf-toolbar-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdf-toolbar-separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
}

.toolbar-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-gray);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toolbar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.pdf-page-display,
.pdf-zoom-display {
  font-size: 0.8rem;
  color: var(--text-gray);
  min-width: 50px;
  text-align: center;
}

.btn-text-adjust {
  width: auto !important;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

.pdf-canvas-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  background: #0b111e;
}

#pdf-canvas-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  transform-origin: top center;
  transition: transform 0.2s ease;
}

.pdf-page-canvas {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #ffffff;
}

/* Word Viewer UI */
.word-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 2rem;
  background: rgba(7, 14, 28, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.word-icon-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #3b82f6;
  letter-spacing: 0.05em;
}

.word-count-display {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-left: 1rem;
}

.font-style-btn {
  width: auto !important;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
}

.font-style-btn.active {
  background: #3b82f6 !important;
  color: white !important;
  border-color: #3b82f6 !important;
}

.word-pages-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  background: #090f1c;
}

.word-page {
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  max-width: 820px;
  min-height: 1100px;
  padding: 5rem 6rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.word-page.classic {
  font-family: Georgia, serif;
  background: #fbf9f4;
  color: #2d2315;
}

.word-page.modern {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1e293b;
}

.word-page.focus {
  font-family: monospace;
  background: #0f172a;
  color: #cbd5e1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.word-page h1,
.word-page h2,
.word-page h3 {
  color: inherit;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.word-page h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.5rem;
}

.word-page.focus h1 {
  border-color: rgba(255, 255, 255, 0.1);
}

.word-page h2 {
  font-size: 1.6rem;
}

.word-page h3 {
  font-size: 1.25rem;
}

.word-page p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  text-align: justify;
}

.word-page blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4b5563;
}

.word-page.focus blockquote {
  color: #94a3b8;
}

.word-page ul,
.word-page ol {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

.word-page li {
  margin-bottom: 0.4rem;
}

/* PowerPoint Slide Player UI */
.pptx-player-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #01040a;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pptx-slide-screen {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16/9;
  margin: auto;
  background: #070e1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pptx-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pptx-slide-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
}

.pptx-slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pptx-slide-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light-gray);
  margin-bottom: 1.5rem;
}

.pptx-slide-bullets {
  list-style: none;
  padding-left: 0;
}

.pptx-slide-bullets li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-light-gray);
}

.pptx-slide-bullets li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  background: var(--brand-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-teal);
}

.pptx-slide-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  margin-top: auto;
}

/* PowerPoint Controls */
.pptx-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.65rem 2rem;
  background: rgba(7, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  width: max-content;
  margin: 1rem auto 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.pptx-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.pptx-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.pptx-progress-dots {
  display: flex;
  gap: 0.5rem;
}

.pptx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pptx-dot.active {
  background: var(--brand-teal);
  box-shadow: 0 0 8px var(--brand-teal);
  transform: scale(1.25);
}

.pptx-controls-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.pptx-player-container.fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding: 2.5rem;
  background: #000000;
}

.pptx-player-container.fullscreen .pptx-slide-screen {
  max-width: 100%;
  height: calc(100% - 80px);
}

/* Parsing Overlay & Progress Indicator */
.parsing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.parsing-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.parsing-card {
  background: #070e1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  width: 380px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parsing-spinner {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.spinner-svg {
  animation: rotate 2s linear infinite;
  width: 100%;
  height: 100%;
}

.spinner-svg .path {
  stroke: var(--brand-teal);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.parsing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.parsing-status {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.parsing-progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.parsing-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-teal) 0%, #a5b4fc 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Simulated PDF Canvas Pages */
.pdf-sim-page {
  background: #ffffff;
  color: #1e293b;
  width: 760px;
  height: 1070px;
  padding: 4.5rem 5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pdf-sim-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
}

.pdf-sim-body {
  flex-grow: 1;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pdf-sim-body h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.pdf-sim-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.pdf-sim-body p {
  margin-bottom: 1rem;
  text-align: justify;
}

.pdf-sim-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.75rem;
}

/* ==========================================================================
   Contact Us Page Styling
   ========================================================================== */
.contact-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-hero-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.contact-hero-title span.accent {
  color: var(--brand-teal);
}

.contact-hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 3.5rem;
  align-items: start;
}

/* Contact Info Column cards */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: rgba(13, 179, 158, 0.2);
  background: rgba(13, 179, 158, 0.02);
  transform: translateY(-2px);
}

.contact-card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 179, 158, 0.08);
  border: 1px solid rgba(13, 179, 158, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.1);
}

.contact-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.contact-card-detail {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-gray);
  margin-bottom: 0.15rem;
}

.contact-card-detail a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.contact-card-detail a:hover {
  color: var(--brand-teal-hover);
}

.contact-card-subtext {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* Socials segment */
.contact-socials-block {
  margin-top: 1rem;
  padding-left: 0.5rem;
}

.contact-socials-block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.contact-social-buttons {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.contact-social-btn:hover {
  background: var(--brand-teal);
  color: var(--text-white);
  border-color: var(--brand-teal);
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.4);
  transform: translateY(-2px);
}

/* Form container */
.contact-glass-card {
  background: rgba(7, 14, 28, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-column form {
  transition: all 0.4s ease;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-gray);
  letter-spacing: 0.02em;
}

.form-input-group input,
.form-input-group textarea,
.form-input-group select {
  background: rgba(2, 6, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input-group input:focus,
.form-input-group textarea:focus,
.form-input-group select:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 10px rgba(13, 179, 158, 0.15);
  background: rgba(2, 6, 18, 0.9);
}

.form-input-group textarea {
  resize: vertical;
}

/* Custom styling for standard HTML select dropdown */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-gray);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-input-group select:focus+ ::after {
  border-top-color: var(--brand-teal);
  transform: translateY(-50%) rotate(180deg);
}

/* Error messages formatting */
.error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.25s ease;
}

.input-error {
  border-color: rgba(239, 68, 68, 0.4) !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.1) !important;
}

/* Form submission button */
.btn-submit-contact {
  background: var(--brand-teal);
  border: none;
  color: var(--text-white);
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(13, 179, 158, 0.2);
}

.btn-submit-contact:hover {
  background: var(--brand-teal-hover);
  box-shadow: 0 6px 20px rgba(13, 179, 158, 0.4);
}

.btn-submit-contact:disabled {
  background: rgba(13, 179, 158, 0.6);
  cursor: not-allowed;
}

.btn-submit-contact .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-submit-contact:hover .arrow-icon {
  transform: translateX(4px);
}

/* Form Spinner Loader */
.btn-spinner {
  width: 20px;
  height: 20px;
}

.form-spinner-svg {
  animation: rotate 2s linear infinite;
  width: 100%;
  height: 100%;
}

.form-spinner-svg .path {
  stroke: var(--text-white);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

/* Shake animation for errors */
.shake-anim {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {

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

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

/* Success Card details */
.contact-success-panel {
  text-align: center;
  padding: 1.5rem 0.5rem;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s ease;
}

.success-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.checkmark-svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  stroke-width: 4;
  stroke: #10b981;
  stroke-miterlimit: 10;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 0.75rem;
}

.success-desc {
  font-size: 1rem;
  color: var(--text-light-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-details {
  background: rgba(2, 6, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.success-details p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.success-details p:last-child {
  margin-bottom: 0;
}

.success-details strong {
  color: var(--text-white);
}

#ref-num {
  color: var(--brand-teal) !important;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
}

.btn-success-back {
  width: 100%;
  padding: 0.85rem 0;
  font-weight: 700;
}

/* Responsiveness */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
  }

  .contact-hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-hero-title {
    font-size: 2.8rem;
  }

  .contact-glass-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-hero-section {
    padding: 8rem 0 4rem;
  }

  .contact-hero-title {
    font-size: 2.85rem;
  }

  .contact-hero-subheading {
    font-size: 1.15rem;
  }

  .contact-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .contact-hero-actions .btn-book-meeting,
  .contact-hero-actions .btn-contact-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-info-card {
    padding: 1.25rem 1.5rem;
  }
}

/* ==========================================================================
   Revised Contact Page & Teams Meeting Scheduler Styling
   ========================================================================== */

/* Dark Hero Split Grid Layout */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.contact-hero-subheading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.contact-hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.btn-book-meeting {
  background-color: var(--brand-teal);
  color: #010611;
  border: 1px solid var(--brand-teal);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-book-meeting:hover {
  background-color: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 179, 158, 0.3);
}

.btn-book-meeting svg,
.btn-contact-hero-secondary svg {
  transition: transform 0.3s ease;
}

.btn-book-meeting:hover svg {
  transform: scale(1.15);
}

.btn-contact-hero-secondary:hover svg {
  transform: translateY(3px);
}

.btn-contact-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-contact-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  transform: translateY(-2px);
}

.contact-hero-visual {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  aspect-ratio: 16/10;
  background-color: #000;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.contact-hero-visual:hover .contact-hero-image {
  transform: scale(1.03);
}

/* White Background details grid section */
.contact-grid-section {
  background-color: #ffffff;
  padding: 6.5rem 0;
  color: #1e293b;
}

.section-header-light {
  margin-bottom: 2.5rem;
}

.badge-light {
  display: inline-block;
  background: rgba(13, 179, 158, 0.08);
  border: 1px solid rgba(13, 179, 158, 0.2);
  color: var(--brand-teal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-header-light h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-header-light p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Light themed info cards */
.contact-info-card.light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-info-card.light:hover {
  border-color: rgba(13, 179, 158, 0.3);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-card.light h3 {
  color: #0f172a;
}

.contact-info-card.light .contact-card-subtext {
  color: #64748b;
}

.contact-info-card.light .contact-card-detail {
  color: #0d8a7c;
  font-weight: 600;
}

.contact-info-card.light .contact-card-icon-wrapper {
  background: rgba(13, 179, 158, 0.06);
  border-color: rgba(13, 179, 158, 0.15);
  color: var(--brand-teal);
}

.contact-social-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

.contact-socials-block h4 {
  color: #64748b;
}

/* Light themed form container card */
.contact-light-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-light-card .form-title {
  color: #0f172a;
}

.contact-light-card .form-subtitle {
  color: #64748b;
}

.contact-light-card label {
  color: #475569;
}

.contact-light-card input,
.contact-light-card textarea,
.contact-light-card select {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #1e293b;
}

.contact-light-card input:focus,
.contact-light-card textarea:focus,
.contact-light-card select:focus {
  background: #ffffff;
  border-color: var(--brand-teal);
  box-shadow: 0 0 10px rgba(13, 179, 158, 0.1);
  color: #1e293b;
}

.contact-light-card .select-wrapper::after {
  border-top-color: #475569;
}

.contact-light-card .error-msg {
  color: #dc2626;
}

.contact-light-card .contact-success-panel .success-title {
  color: #0f172a;
}

.contact-light-card .contact-success-panel .success-desc {
  color: #475569;
}

.contact-light-card .contact-success-panel .success-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-light-card .contact-success-panel .success-details strong {
  color: #0f172a;
}

/* Interactive Teams Scheduler Modal Styling */
.scheduler-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.scheduler-modal.active {
  opacity: 1;
  pointer-events: all;
}

.scheduler-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scheduler-container {
  position: relative;
  background: #070e1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 92%;
  max-width: 960px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  z-index: 2010;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scheduler-modal.active .scheduler-container {
  transform: scale(1) translateY(0);
}

.btn-close-scheduler {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 2020;
}

.btn-close-scheduler:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-teal-hover);
  transform: rotate(90deg);
}

.scheduler-content-wrapper {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 2.5rem;
  padding: 3rem;
  min-height: 520px;
}

/* Scheduler Left column details */
.scheduler-left-info {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 2rem;
}

.teams-brand-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c7d2fe;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.teams-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1;
}

.scheduler-left-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.scheduler-left-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.meeting-details-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.detail-item svg {
  color: #6366f1;
  flex-shrink: 0;
}

/* Scheduler Right column picker */
.scheduler-right-picker {
  display: flex;
  flex-direction: column;
}

/* Calendar Month and week grid */
.calendar-section {
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: var(--text-gray);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-btn {
  border: none;
  background: transparent;
  color: var(--text-light-gray);
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.calendar-day-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.calendar-day-btn.disabled {
  color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-day-btn.today {
  border: 1px dashed #6366f1;
}

.calendar-day-btn.selected {
  background: #6366f1;
  color: white;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

/* Time slot pills */
.time-slots-section {
  margin-bottom: 1.5rem;
}

.time-slots-section h4 {
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.time-slots-grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.slot-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light-gray);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slot-pill:hover {
  border-color: #6366f1;
  color: white;
  background: rgba(99, 102, 241, 0.05);
}

.slot-pill.selected {
  background: #6366f1;
  color: white;
  border-color: #6366f1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.error-msg-slot {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.5rem;
  display: none;
}

/* Inputs in Scheduler */
.scheduler-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.scheduler-inputs input {
  background: rgba(2, 6, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
  transition: all 0.3s ease;
}

.scheduler-inputs input:focus {
  outline: none;
  border-color: #6366f1;
  background: rgba(2, 6, 18, 0.8);
}

.btn-teams-schedule {
  background: #6366f1;
  border: none;
  color: white;
  padding: 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-teams-schedule:hover {
  background: #4f46e5;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Host Notification & Decision Center */
.status-center-card {
  max-width: 620px;
  margin: auto;
  padding: 1rem 0;
  text-align: center;
}

.teams-brand-indicator.purple {
  color: #818cf8;
  justify-content: center;
  margin-bottom: 1rem;
}

.status-desc {
  color: var(--text-light-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.status-meta-box {
  background: rgba(2, 6, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.meta-line strong {
  color: white;
  display: inline-block;
  width: 110px;
}

.status-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
}

.status-badge.status-pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.25);
}

.status-badge.status-approved {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.status-badge.status-rejected {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.25);
}

/* Generated Teams link join wrapper */
.teams-join-box {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.teams-join-box p {
  font-size: 0.85rem;
  color: var(--text-light-gray);
  margin-bottom: 0.5rem;
}

.teams-link-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.teams-link-input-wrapper input {
  background: #020612;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6366f1;
  font-family: monospace;
  font-size: 0.8rem;
  flex-grow: 1;
  padding: 8px 12px;
  border-radius: 6px;
}

.btn-copy-teams {
  background: #6366f1;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-copy-teams:hover {
  background: #4f46e5;
}

/* Admin Decision Dashboard panel inside status */
.host-decision-dashboard {
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.dashboard-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.dashboard-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-admin-action {
  flex-grow: 1;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-admin-action.approve {
  background: #10b981;
  color: white;
}

.btn-admin-action.approve:hover {
  background: #059669;
}

.btn-admin-action.reject {
  background: #ef4444;
  color: white;
}

.btn-admin-action.reject:hover {
  background: #dc2626;
}

.btn-close-scheduler-end {
  width: 100%;
  padding: 0.85rem;
  font-weight: 700;
}

/* Scheduler Responsive tweaks */
@media (max-width: 768px) {
  .scheduler-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .scheduler-left-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .scheduler-container {
    max-height: 90vh;
  }
}

/* ==========================================================================
   Service Details and Breadcrumbs Page Styles
   ========================================================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-weight: 500;
}

.breadcrumb-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
  color: var(--brand-teal);
}

.breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.15);
}

.breadcrumb-nav .current {
  color: var(--text-light-gray);
  font-weight: 500;
}

.details-section {
  background: #ffffff;
  color: #0f172a;
  padding: 6rem 0;
}

.details-overview-container {
  max-width: 800px;
  margin-bottom: 4rem;
}

.details-overview-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.details-overview-text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.detail-capability-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.detail-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  border-color: rgba(13, 179, 158, 0.2);
}

.detail-capability-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--brand-teal-light);
  border-radius: 12px;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.detail-capability-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.detail-capability-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c1322;
  margin-bottom: 1rem;
}

.detail-capability-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.detail-capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-capability-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}

.detail-capability-item svg {
  color: var(--brand-teal);
  flex-shrink: 0;
}

.details-highlights-section {
  background: #f8fafc;
  padding: 6rem 0;
  border-top: 1px solid #e2e8f0;
  color: #0f172a;
}

.details-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.details-highlights-left h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 1.5rem;
}

.details-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.details-highlights-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.details-highlights-item svg {
  color: var(--brand-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.details-highlights-item strong {
  color: #0c1322;
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .details-highlights-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   Outcomes and Real Business Impact Section
   ========================================================================== */
.outcomes-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 6rem 0;
  border-top: 1px solid #e2e8f0;
}

.outcomes-header {
  margin-bottom: 4rem;
  max-width: 1000px;
}

.outcomes-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.outcomes-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 5rem;
}

.outcome-col {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.outcome-col:first-child {
  padding-left: 0;
}

.outcome-col:last-child {
  padding-right: 0;
}

.outcome-col:not(:first-child) {
  border-left: 1px solid #e2e8f0;
}

.outcome-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(13, 179, 158, 0.1);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.outcome-col:hover .outcome-icon-wrapper {
  background-color: var(--brand-teal);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(13, 179, 158, 0.2);
}

.outcome-col-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c1322;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.outcome-col-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Outcomes Bottom Stats Card */
.outcomes-stats-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 4fr 1px 8fr;
  gap: 3.5rem;
  align-items: center;
}

.stats-card-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stats-card-tag {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0c1322;
  letter-spacing: -0.01em;
}

.stats-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.stats-card-divider {
  background-color: #cbd5e1;
  width: 1px;
  height: 90px;
  align-self: center;
}

.stats-card-right {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.stat-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0c1322;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 600;
}

/* Responsive Outcomes */
@media (max-width: 992px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
  }

  .outcome-col {
    padding: 0 2rem;
  }

  .outcome-col:nth-child(odd) {
    padding-left: 0;
  }

  .outcome-col:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid #e2e8f0;
  }

  .outcome-col:nth-child(3) {
    border-left: none;
  }

  .outcomes-stats-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }

  .stats-card-divider {
    display: none;
  }

  .stats-card-right {
    justify-content: space-between;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
  }
}

@media (max-width: 576px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .outcome-col {
    padding: 0 !important;
    border-left: none !important;
  }

  .stats-card-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .stat-item {
    gap: 0.1rem;
  }
}

/* ==========================================================================
   Solutions that Drive Transformation Section
   ========================================================================== */
.solutions-section {
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  padding: 6rem 0;
  color: var(--text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.solutions-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  color: #0f172a;
  margin-bottom: 3.5rem;
}

.solutions-card-header {
  margin-bottom: 3.5rem;
  max-width: 900px;
}

.solutions-card-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c1322;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.solutions-card-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

/* Tab Split Layout */
.solutions-tab-container {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 3rem;
  align-items: flex-start;
}

.solutions-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-btn {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  transform: translateY(-2px);
}

.tab-btn.active {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

/* Tab Content Box */
.tab-content-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tab-display-card {
  background-color: #070e1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 5.2fr 6.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  min-height: 380px;
}

.tab-visual-box {
  width: 100%;
  aspect-ratio: 1.25;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.tab-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-text-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-light-gray);
}

.tab-content-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.tab-content-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-gray);
}

/* Teal CTA Banner at Bottom of Section */
.solutions-cta-banner {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #0a9482 100%);
  border-radius: 20px;
  padding: 2.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 15px 40px rgba(13, 179, 158, 0.25);
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.cta-banner-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-banner-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-banner-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.btn-banner-primary {
  background-color: #020612;
  color: #ffffff;
  border: 1px solid #020612;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-banner-primary:hover {
  background-color: #0c1322;
  border-color: #0c1322;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 6, 18, 0.3);
}

.btn-banner-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-banner-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-banner-primary svg,
.btn-banner-secondary svg {
  transition: transform 0.3s ease;
}

.btn-banner-primary:hover svg {
  transform: scale(1.1);
}

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

/* Responsive Solutions */
@media (max-width: 992px) {
  .solutions-card {
    padding: 3rem;
  }

  .solutions-tab-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solutions-tabs-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .tab-btn {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 1rem;
  }

  .tab-display-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .tab-visual-box {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }

  .solutions-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    gap: 2rem;
  }

  .cta-banner-actions {
    width: 100%;
  }

  .btn-banner-primary,
  .btn-banner-secondary {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .solutions-card {
    padding: 2rem 1.5rem;
  }

  .tab-btn {
    flex: 1 1 100%;
  }

  .cta-banner-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-banner-primary,
  .btn-banner-secondary {
    width: 100%;
  }
}

/* Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 7.25rem;
  right: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  color: #020612;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(13, 179, 158, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background-color: var(--brand-teal-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 179, 158, 0.5);
}

.back-to-top-btn svg {
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .back-to-top-btn {
    bottom: 5.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
  }
}

/* ==========================================================================
   Redesigned Hero Elements
   ========================================================================== */
.about-hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.about-hero-image-wrapper::before,
.about-hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--brand-teal);
  border-style: solid;
  z-index: 5;
}

.about-hero-image-wrapper::before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
  border-top-left-radius: 24px;
}

.about-hero-image-wrapper::after {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
  border-bottom-right-radius: 24px;
}

/* ==========================================================================
   Redesigned Who We Are Section
   ========================================================================== */
.who-we-are-section {
  padding: 8.5rem 0;
  background-color: #ffffff;
  background-image: none;
  color: #0c1322;
  border-bottom: 1px solid #e2e8f0;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

.who-we-are-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.who-we-are-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.who-we-are-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.who-we-are-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mission-quote-box {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(13, 179, 158, 0.04);
  border-radius: 0 16px 16px 0;
  border: 1px solid rgba(13, 179, 158, 0.15);
  border-left: 4px solid var(--brand-teal);
}

.mission-quote-text {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: #334155;
  line-height: 1.5;
}

/* ==========================================================================
   Redesigned What We Do (Upfront Information, 4 Columns)
   ========================================================================== */
.about-what-we-do-section {
  padding: 8.5rem 0;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at bottom left, #09132d, var(--bg-dark) 70%);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-service-card {
  background-color: #0c1322;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(12, 19, 34, 0.15);
}

.about-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(12, 19, 34, 0.25);
  border-color: rgba(13, 179, 158, 0.3);
}

.about-service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.25rem;
}

.about-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(13, 179, 158, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  flex-shrink: 0;
}

.about-service-icon svg {
  width: 22px;
  height: 22px;
}

.about-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.about-sub-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-sub-service-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-sub-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-sub-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  flex-shrink: 0;
}

.about-sub-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.about-sub-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
  padding-left: 0.85rem;
}

/* ==========================================================================
   Redesigned Values Section (Modern Dark Theme)
   ========================================================================== */
.values-section {
  padding: 8.5rem 0;
  background-color: #ffffff;
  background-image: none;
  color: #0c1322;
  border-top: 1px solid #e2e8f0;
}

.values-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.values-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: inline-block;
}

.values-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.value-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.values-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

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

.value-card {
  position: relative;
  background-color: #0c1322;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(12, 19, 34, 0.15);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), transparent);
  opacity: 0.7;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(12, 19, 34, 0.25);
  border-color: rgba(13, 179, 158, 0.3);
  background-color: #0d1627;
}

.value-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  font-family: monospace;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.value-card:hover .value-number {
  color: rgba(13, 179, 158, 0.08);
  transform: scale(1.1);
}

.value-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(13, 179, 158, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon-wrapper {
  background-color: var(--brand-teal);
  color: #0c1322;
  box-shadow: 0 0 15px rgba(13, 179, 158, 0.4);
}

.value-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.value-card-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ==========================================================================
   Redesigned Offices Section with Dark Mode Maps
   ========================================================================== */
.offices-section {
  padding: 8.5rem 0;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at bottom left, #09132d, var(--bg-dark) 70%);
  color: var(--text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offices-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.offices-badge {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: inline-block;
}

.offices-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.offices-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.office-card {
  background-color: #0c1322;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(12, 19, 34, 0.15);
  transition: var(--transition-smooth);
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(12, 19, 34, 0.25);
  border-color: rgba(13, 179, 158, 0.3);
}

.office-location-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.office-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.office-address {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  /* Ensure cards align height */
}

.office-map-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.office-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.85);
  transition: var(--transition-smooth);
}

.office-card:hover .office-map-iframe {
  filter: grayscale(0.5) invert(0.85) contrast(1.1) opacity(0.95);
}

.office-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  margin-top: auto;
}

.office-contact a {
  color: var(--brand-teal);
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.office-contact a:hover {
  color: var(--brand-teal-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Breakpoints for Redesign
   ========================================================================== */
@media (max-width: 1100px) {
  .about-what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

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

/* ==========================================================================
   Interactive Video Modal Styling
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-modal-container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 15;
  background: rgba(2, 6, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.video-modal-close:hover {
  background: var(--brand-teal);
  color: #020612;
  border-color: var(--brand-teal);
}

.video-modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   Unified Hero Sizing and Typography (Design Consistency)
   ========================================================================== */
.hero-title,
.about-hero-title,
.services-hero-title,
.insights-hero-title,
.contact-hero-title {
  font-size: 3.8rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 1.5rem !important;
}

.about-hero-subheading,
.services-hero-subheading,
.insights-hero-subheading,
.contact-hero-subheading {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--text-white) !important;
  line-height: 1.4 !important;
  margin-bottom: 1.25rem !important;
}

.hero-description,
.about-hero-description,
.services-hero-description,
.insights-hero-description,
.contact-hero-description {
  font-size: 1.05rem !important;
  color: var(--text-gray) !important;
  line-height: 1.6 !important;
  margin-bottom: 2.25rem !important;
  max-width: 540px !important;
}

/* Unified Hero Image Visual sizing and float animation */
.globe-container,
.about-hero-visual,
.services-hero-visual,
.insights-hero-visual,
.contact-hero-visual {
  position: relative !important;
  width: 100% !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid var(--card-border) !important;
  aspect-ratio: 16/10 !important;
  background-color: #000000 !important;
  animation: float 6s infinite ease-in-out !important;
  /* Unified floating animation! */
}

/* Unified image styling inside hero visuals */
.globe-image,
.about-hero-image,
.services-hero-image,
.insights-hero-image,
.contact-hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

/* Unified hover effect on images */
.globe-container:hover .globe-image,
.about-hero-visual:hover .about-hero-image,
.services-hero-visual:hover .services-hero-image,
.insights-hero-visual:hover .insights-hero-image,
.contact-hero-visual:hover .contact-hero-image {
  transform: scale(1.03) !important;
}

/* Responsive Unified Hero Sizing */
@media (max-width: 1280px) {

  .hero-title,
  .about-hero-title,
  .services-hero-title,
  .insights-hero-title,
  .contact-hero-title {
    font-size: 3.4rem !important;
  }

  .transformation-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .transformation-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 992px) {

  .hero-title,
  .about-hero-title,
  .services-hero-title,
  .insights-hero-title,
  .contact-hero-title {
    font-size: 3rem !important;
  }

  .about-hero-subheading,
  .services-hero-subheading,
  .insights-hero-subheading,
  .contact-hero-subheading {
    font-size: 1.2rem !important;
  }

  .globe-container,
  .about-hero-visual,
  .services-hero-visual,
  .insights-hero-visual,
  .contact-hero-visual {
    max-width: 600px !important;
  }
}

@media (max-width: 768px) {

  .hero-title,
  .about-hero-title,
  .services-hero-title,
  .insights-hero-title,
  .contact-hero-title {
    font-size: 2.6rem !important;
  }

  .hero-description,
  .about-hero-description,
  .services-hero-description,
  .insights-hero-description,
  .contact-hero-description {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  .globe-container,
  .about-hero-visual,
  .services-hero-visual,
  .insights-hero-visual,
  .contact-hero-visual {
    max-width: 460px !important;
  }
}

@media (max-width: 480px) {

  .hero-title,
  .about-hero-title,
  .services-hero-title,
  .insights-hero-title,
  .contact-hero-title {
    font-size: 2.2rem !important;
  }

  .globe-container,
  .about-hero-visual,
  .services-hero-visual,
  .insights-hero-visual,
  .contact-hero-visual {
    max-width: 320px !important;
  }
}


/* ===============================
LAYOUT (REDUCED GAP)
=============================== */
.capabilities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ===============================
LEFT SIDE (ACCORDION)
=============================== */
.technology-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* accordion card */
.tech-accordion {
  background: var(--bg-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--text-white);
}

.tech-accordion:hover {
  border-color: rgba(124, 247, 227, 0.35);
  transform: translateY(-2px);
}

.tech-accordion.active {
  border-color: #7cf7e3;
  box-shadow: 0 12px 40px rgba(124, 247, 227, 0.12);
}

/* header row */
.tech-parent {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

/* toggle icon */
.tech-parent::after {
  content: "+";
  font-size: 18px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.tech-accordion.active .tech-parent::after {
  content: "–";
}

/* sublist */
.tech-sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.15);
}

.tech-accordion.active .tech-sublist {
  max-height: 420px;
}

/* sub items */
.tech-subcard {
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  opacity: 0.85;
}

.tech-subcard:hover {
  transform: translateX(6px);
  opacity: 1;
  color: #7cf7e3;
}

/* ===============================
RIGHT PANEL — CARD LAYOUT (image left · text right)
=============================== */
.technology-panel {
  position: sticky;
  top: 110px;
  align-self: start;

  background: var(--bg-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(124, 247, 227, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  padding: 28px 24px;
  height: auto;

  transition: opacity 0.3s ease;
}

/* inner card: two columns */
.panel-inner-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: flex-start;
}

/* image column */
.panel-img-col {
  flex-shrink: 0;
}

.panel-thumb {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* text column */
.panel-text-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-text-col h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.panel-text-col p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(220, 235, 255, 0.85);
  margin: 0;
  text-align: justify;
}

/* selected subcard highlight */
.tech-subcard.selected {
  color: #7cf7e3;
  opacity: 1;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 992px) {
  .technology-panel {
    position: relative;
    top: auto;
  }

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

  .panel-thumb {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 600px) {
  .technology-panel {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   Covers: 1440px, 1280px, 992px, 768px, 576px, 480px, 380px, 320px
   ========================================================================== */

/* XL screens: wider container */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* Large (1280px) */
@media (max-width: 1280px) {

  .hero-title,
  .about-hero-title,
  .services-hero-title,
  .insights-hero-title,
  .contact-hero-title {
    font-size: 3.4rem !important;
  }


}

/* Medium (992px) */
@media (max-width: 992px) {
  .capabilities-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-num {
    font-size: 2.5rem;
  }

  .who-we-are-title {
    font-size: 2.25rem;
  }

  .values-title,
  .value-title {
    font-size: 2.25rem;
  }

  .offices-title {
    font-size: 2.25rem;
  }

  .outcomes-title {
    font-size: 1.95rem;
  }

  .solutions-card-title {
    font-size: 1.85rem;
  }

  .tab-display-card {
    min-height: auto;
  }

  .services-subnav-tab {
    font-size: 0.9rem;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .outcomes-stats-card {
    padding: 2rem 1.5rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .solutions-card {
    padding: 2.5rem 2rem;
    border-radius: 18px;
  }

  .who-we-are-title {
    font-size: 2rem;
  }

  .values-title,
  .value-title {
    font-size: 2rem;
  }

  .offices-title {
    font-size: 2rem;
  }

  .about-what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-title {
    font-size: 1.75rem;
  }

  .services-subnav-tab {
    font-size: 0.85rem;
    padding: 1rem 0.75rem;
  }

  .cta-banner-title {
    font-size: 1.35rem;
  }

  .solutions-section {
    padding: 4.5rem 0;
  }

  .industry-title {
    font-size: 2.25rem;
  }
}

/* Mobile (576px) */
@media (max-width: 576px) {
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }

  .about-hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .services-hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .services-hero-title {
    font-size: 2.25rem !important;
  }

  .contact-hero-title {
    font-size: 2.25rem !important;
  }

  .insights-hero-title {
    font-size: 2.25rem !important;
  }

  .about-hero-title {
    font-size: 2.25rem !important;
  }

  .about-hero-description,
  .services-hero-description,
  .contact-hero-description,
  .insights-hero-description {
    font-size: 0.95rem !important;
  }

  .services-hero-actions,
  .contact-hero-actions,
  .about-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .who-we-are-title {
    font-size: 1.75rem;
  }

  .who-we-are-section {
    padding: 5rem 0;
  }

  .about-what-we-do-section {
    padding: 5rem 0;
  }

  .values-section {
    padding: 5rem 0;
  }

  .values-title,
  .value-title {
    font-size: 1.75rem;
  }

  .offices-section {
    padding: 5rem 0;
  }

  .offices-title {
    font-size: 1.75rem;
  }

  .outcomes-section {
    padding: 4rem 0;
  }

  .outcomes-title {
    font-size: 1.6rem;
  }

  .outcomes-stats-card {
    padding: 1.5rem 1.25rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .solutions-section {
    padding: 4rem 0;
  }

  .solutions-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .solutions-card-title {
    font-size: 1.5rem;
  }

  .tab-btn {
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
  }

  .tab-display-card {
    padding: 1.75rem;
    border-radius: 14px;
  }

  .tab-content-title {
    font-size: 1.3rem;
  }

  .cta-banner-title {
    font-size: 1.25rem;
  }

  .cta-banner-desc {
    font-size: 0.88rem;
  }

  .industry-solutions-section {
    padding: 5rem 0 2.5rem;
  }

  .industry-title {
    font-size: 1.75rem;
  }

  .success-container {
    padding: 3rem 1.75rem;
    border-radius: 16px;
  }

  .modal-container {
    border-radius: 16px;
    max-height: 95vh;
  }

  .footer-bottom {
    padding: 3rem 0 2rem;
  }

  .back-to-top-btn {
    right: 1.25rem;
    bottom: 5rem;
    width: 44px;
    height: 44px;
  }

  .chat-widget-wrapper {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .transformation-title,
  .partners-title {
    font-size: 1.6rem;
  }

  .partners-subtitle {
    font-size: 0.95rem;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .showcase-title {
    font-size: 1.85rem;
  }

  .services-showcase-section {
    padding-top: 4rem;
  }

  .services-showcase-card {
    padding: 1.75rem;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .about-hero-title,
  .services-hero-title,
  .contact-hero-title,
  .insights-hero-title {
    font-size: 2rem !important;
  }

  .about-hero-subheading,
  .services-hero-subheading,
  .contact-hero-subheading,
  .insights-hero-subheading {
    font-size: 1.05rem !important;
  }

  .capabilities-wrapper {
    gap: 1.75rem;
  }

  .panel-text-col h3 {
    font-size: 18px;
  }

  .tech-parent {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .solutions-card {
    padding: 1.5rem 1rem;
  }

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

  .industry-grid {
    gap: 1.25rem;
  }

  .transformation-grid {
    gap: 1.25rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .showcase-title {
    font-size: 1.65rem;
  }

  .services-showcase-card {
    padding: 1.5rem;
  }

  .tab-display-card {
    padding: 1.5rem 1.25rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .modal-header {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .modal-scrollable-content {
    padding: 1.25rem;
  }

  .modal-article-title {
    font-size: 1.35rem;
  }

  .newsletter-title {
    font-size: 1.35rem;
  }

  .contact-glass-card {
    padding: 1.5rem 1.25rem;
  }
}

/* X-Small Mobile (380px) */
@media (max-width: 380px) {
  .container {
    padding: 0 0.9rem;
  }

  .hero-title {
    font-size: 1.7rem !important;
  }

  .about-hero-title,
  .services-hero-title,
  .contact-hero-title,
  .insights-hero-title {
    font-size: 1.7rem !important;
  }

  .about-hero-subheading,
  .services-hero-subheading,
  .contact-hero-subheading {
    font-size: 1rem !important;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .solutions-card-title {
    font-size: 1.25rem;
  }

  .cta-banner-title {
    font-size: 1.1rem;
  }

  .section-title,
  .showcase-title {
    font-size: 1.5rem;
  }

  .transformation-title,
  .partners-title {
    font-size: 1.4rem;
  }

  .tab-btn {
    font-size: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .copyright-container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .value-card {
    padding: 2.25rem 1.5rem 1.75rem;
  }
}

/* Minimum viewport (320px) */
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.55rem !important;
  }

  .about-hero-title,
  .services-hero-title,
  .contact-hero-title,
  .insights-hero-title {
    font-size: 1.55rem !important;
  }

  .nav-list {
    width: 260px;
    padding: 6rem 1.75rem 2rem;
  }

  .services-subnav-tab {
    font-size: 0.8rem;
    padding: 0.85rem 1rem;
  }

  .outcomes-stats-card {
    padding: 1.25rem 0.85rem;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .outcome-col-title {
    font-size: 1.1rem;
  }

  .solutions-card {
    padding: 1.25rem 0.85rem;
  }

  .tab-display-card {
    padding: 1.25rem 0.85rem;
  }

  .office-card {
    padding: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.25rem 1.5rem;
  }

  .modal-article-title {
    font-size: 1.2rem;
  }

  .footer-bottom {
    padding: 2.5rem 0 2rem;
  }
}

/* Horizontal Filtering Layout */
.insights-filter-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Horizontal Row Container */
.filter-controls {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.select-filters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

/* On Desktop: Align everything horizontally in a straight line */
@media (min-width: 992px) {
  .filter-controls {
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.5rem;
  }

  .filter-controls .search-input-wrapper {
    width: 320px;
    flex-shrink: 0;
  }

  .filter-controls .select-filters-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 1rem;
  }

  .select-wrapper {
    flex: 1;
    max-width: 220px;
  }

  .btn-reset-filters {
    width: auto !important;
    margin-top: 0 !important;
    padding: 0 1.5rem !important;
    flex-shrink: 0;
  }
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* White elements styling */
.select-wrapper select,
.filter-controls input {
  width: 100%;
  height: 44px;
  padding: 0 1.25rem;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background-color: #ffffff;
  color: #0f172a;
  outline: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.filter-controls input {
  padding-left: 2.85rem;
}

.select-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230db39e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.select-wrapper select:hover,
.filter-controls input:hover {
  border-color: var(--brand-teal);
}

.select-wrapper select:focus,
.filter-controls input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 4px 12px rgba(13, 179, 158, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.filter-controls input:focus + .search-icon {
  color: var(--brand-teal);
}

/* Reset Button */
.btn-reset-filters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-reset-filters:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  background: rgba(13, 179, 158, 0.05);
}

.btn-reset-filters svg {
  transition: transform 0.4s ease;
}

.btn-reset-filters:hover svg {
  transform: rotate(-180deg);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .case-grid {
    grid-column: 1;
    margin-top: 0 !important;
  }
}

.case-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(13, 179, 158, 0.25);
}

.case-image-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.case-card:hover .case-image {
  transform: scale(1.05);
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  flex-grow: 1;
  width: calc(100% - 220px);
}

.case-header {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.case-tag-industry {
  background: rgba(13, 179, 158, 0.1);
  color: #0d8a7c;
}

.case-tag-service {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.case-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c1322;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card:hover h2 {
  color: var(--brand-teal);
}

.case-card .summary {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--brand-teal);
  padding: 8px 6px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
}

.stat strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  word-wrap: break-word;
}

.case-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
  margin-top: auto;
}

.case-card .author {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.case-card .read-more {
  background-color: var(--brand-teal);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(13, 179, 158, 0.15);
}

.case-card .read-more:hover {
  background-color: var(--brand-teal-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 179, 158, 0.3);
}

.case-card .read-more:active {
  transform: translateY(0);
}

.case-card .read-more svg {
  transition: transform 0.3s ease;
}

.case-card .read-more:hover svg {
  transform: translateX(4px);
}

.empty-state,
.error-message {
  text-align: center;
  background: #ffffff;
  padding: 4rem 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  max-width: 600px;
  margin: 3rem auto;
}

.empty-state h2,
.error-message h2 {
  color: #0c1322;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.empty-state p,
.error-message p {
  color: #64748b;
}

/* Responsive adjustments for Case Studies page */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .case-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .case-image-wrapper {
    width: 100%;
    height: 180px;
  }

  .case-content {
    min-height: auto;
    width: 100%;
  }
}

/* ==========================================================================
   Report Viewer Modal — full dark-theme design
   ========================================================================== */

/* Overlay */
.report-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
}

.report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Sheet */
.report-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #070e1c;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  animation: rptSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* ── Sticky top bar ── */
.rpt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  min-height: 60px;
  background: rgba(7, 14, 28, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.rpt-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rpt-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.rpt-bar-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

.rpt-industry-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(13,179,158,0.12);
  border: 1px solid rgba(13,179,158,0.25);
  color: var(--brand-teal);
  letter-spacing: 0.03em;
}

.rpt-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rpt-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(13,179,158,0.08);
  border: 1px solid rgba(13,179,158,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.rpt-pdf-btn:hover {
  background: var(--brand-teal);
  color: #fff;
  border-color: var(--brand-teal);
  box-shadow: 0 4px 16px rgba(13,179,158,0.35);
}

.close-report {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.close-report:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Scrollable body ── */
.report-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.report-body::-webkit-scrollbar { width: 5px; }
.report-body::-webkit-scrollbar-track { background: transparent; }
.report-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.report-body::-webkit-scrollbar-thumb:hover { background: var(--brand-teal); }

/* ── Hero banner ── */
.rpt-hero {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, #091230 0%, #020612 100%);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rpt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(2,6,18,0.92) 0%,
    rgba(7,14,28,0.75) 50%,
    rgba(2,6,18,0.88) 100%);
}

.rpt-hero-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 800px;
}

.rpt-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.rpt-summary {
  font-size: 0.95rem;
  color: var(--text-light-gray);
  line-height: 1.65;
  max-width: 640px;
}

/* ── Stat chips row ── */
.rpt-stats-row {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rpt-stat-chip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  gap: 0.2rem;
  background: #070e1c;
  transition: background 0.2s;
  text-align: center;
}

.rpt-stat-chip:hover { background: rgba(13,179,158,0.05); }

.rpt-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-teal);
  letter-spacing: -0.01em;
  line-height: 1;
}

.rpt-stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Two-column layout ── */
.rpt-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 1px;
}

/* ── Sidebar ── */
.rpt-sidebar {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.5rem;
}

.rpt-sidebar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}

.rpt-sidebar-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-teal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rpt-profile-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rpt-profile-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 0.5rem;
}

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

.rpt-profile-row dt {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.rpt-profile-row dd {
  font-size: 0.85rem;
  color: var(--text-light-gray);
  line-height: 1.5;
}

.rpt-about-row {
  grid-template-columns: 1fr;
}

.rpt-about-row dt { margin-bottom: 0.4rem; }

/* ── Main content ── */
.rpt-main {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Section cards ── */
.rpt-section {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: rptFadeUp 0.35s ease both;
}

.rpt-section:last-child { border-bottom: none; }

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

.rpt-section-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.rpt-icon-challenge { background: rgba(239,68,68,0.12);  color: #f87171; }
.rpt-icon-solution  { background: rgba(13,179,158,0.12); color: var(--brand-teal); }
.rpt-icon-results   { background: rgba(99,102,241,0.12); color: #818cf8; }
.rpt-icon-impact    { background: rgba(245,158,11,0.12); color: #fbbf24; }

.rpt-section-body { flex: 1; }

.rpt-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.rpt-section-body p,
.rpt-section-text p {
  font-size: 0.96rem;
  color: #e2e8f0;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.rpt-section-body p:last-child,
.rpt-section-text p:last-child {
  margin-bottom: 0;
}

/* ── Quote block ── */
.rpt-quote-block {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(13, 179, 158, 0.04);
  border: 1px solid rgba(13, 179, 158, 0.15);
  border-left: 5px solid var(--brand-teal);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(13, 179, 158, 0.03);
}

.rpt-quote-mark {
  width: 36px;
  height: 36px;
  min-width: 36px;
  color: var(--brand-teal);
  opacity: 0.65;
  margin-top: -4px;
  filter: drop-shadow(0 2px 8px rgba(13, 179, 158, 0.3));
}

.rpt-quote-block blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.8;
  border: none;
  padding: 0;
  font-weight: 500;
}

.rpt-quote-block blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .rpt-layout {
    grid-template-columns: 1fr;
  }

  .rpt-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .rpt-sidebar-card {
    position: static;
  }

  .rpt-main {
    padding: 1.5rem;
  }

  .rpt-hero { height: 200px; }
  .rpt-hero-text { padding: 1.5rem; }
  .rpt-stats-row { flex-direction: column; gap: 1px; }
}

@media (max-width: 600px) {
  .rpt-bar { padding: 0 1rem; }
  .rpt-pdf-btn span { display: none; }
  .rpt-title { font-size: 1.3rem; }
}