:root {
  /* Official Color Hierarchy & Tokens */
  --gms-navy: #002055;
  /* Primary Navy */
  --gms-navy-dark: #001638;
  /* Footer & Deep Navy */
  --gms-navy-light: #002d73;
  /* Lighter Navy */
  --gms-blue: #1E81C8;
  /* Brand Blue / CTA / Icons */
  --gms-blue-hover: #166cb0;
  /* Brand Blue Hover */
  --gms-light: #F3F8FC;
  /* Alternate Section Background */
  --gms-white: #FFFFFF;
  /* Main Background */
  --gms-text-dark: #333333;
  /* Main Body Text */
  --gms-text-gray: #505051;
  /* Supporting Subtitle Text */
  --gms-footer-link: #B8D8F0;
  /* Footer Link Color */
  --gms-line: #dbe7f2;
  /* Subtle Card Border Line */

  /* Legacy Color Mappings */
  --gms-green: #1E81C8;
  /* Brand Blue CTA */
  --gms-green-hover: #166cb0;
  /* Brand Blue Hover */
  --gms-gold: #1E81C8;
  /* Secondary CTA */
  --gms-gold-hover: #166cb0;
  --gms-accent: #B8D8F0;
  --gms-muted: #505051;

  --bs-primary: #002055;
  --bs-primary-rgb: 0, 32, 85;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--gms-text-dark);
  background: var(--gms-white);
  overflow-x: clip;
}

p,
li,
span,
label {
  color: var(--gms-text-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--gms-navy);
}

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

.text-gms-blue,
.text-gms-green {
  color: var(--gms-blue) !important;
}

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

.bg-gms-navy {
  background-color: var(--gms-navy) !important;
}

.bg-gms-blue {
  background-color: var(--gms-blue) !important;
}

.bg-gms-light {
  background-color: var(--gms-light) !important;
}

.bg-gms-white {
  background-color: var(--gms-white) !important;
}

/* Modern Button System */
.btn {
  font-family: inherit;
  font-weight: 700;
  border-radius: 50rem !important;
  /* Ultra-Modern Pill Shape */
  padding: 0.72rem 1.8rem;
  letter-spacing: 0.015em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-decoration: none !important;
}

.btn i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98) !important;
}

/* Primary Brand Blue CTA (#1E81C8) */
.btn-gms,
.btn-gms-gold {
  background: linear-gradient(135deg, #1E81C8 0%, #0050b3 100%) !important;
  border: none !important;
  color: var(--gms-white) !important;
  box-shadow: 0 6px 20px -3px rgba(30, 129, 200, 0.45) !important;
}

.btn-gms:hover,
.btn-gms:focus,
.btn-gms-gold:hover,
.btn-gms-gold:focus {
  background: linear-gradient(135deg, #2691dc 0%, #005ccf 100%) !important;
  color: var(--gms-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -2px rgba(30, 129, 200, 0.65) !important;
}

/* Primary Navy CTA (#002055) */
.btn-gms-navy,
.btn-primary {
  background: linear-gradient(135deg, #002055 0%, #001233 100%) !important;
  border: none !important;
  color: var(--gms-white) !important;
  box-shadow: 0 6px 20px -3px rgba(0, 32, 85, 0.45) !important;
}

.btn-gms-navy:hover,
.btn-gms-navy:focus,
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #002f78 0%, #001947 100%) !important;
  color: var(--gms-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -2px rgba(0, 32, 85, 0.65) !important;
}

/* Glassmorphic Blue Outline CTA */
.btn-gms-outline {
  border: 2px solid var(--gms-blue) !important;
  background: rgba(30, 129, 200, 0.04) !important;
  color: var(--gms-blue) !important;
  box-shadow: 0 4px 14px 0 rgba(30, 129, 200, 0.1) !important;
}

.btn-gms-outline:hover,
.btn-gms-outline:focus {
  background: linear-gradient(135deg, #1E81C8 0%, #0050b3 100%) !important;
  border-color: transparent !important;
  color: var(--gms-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px -2px rgba(30, 129, 200, 0.5) !important;
}

/* Glassmorphic White Outline CTA */
.btn-gms-outline-white,
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  color: var(--gms-white) !important;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15) !important;
}

.btn-gms-outline-white:hover,
.btn-gms-outline-white:focus,
.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--gms-white) !important;
  border-color: var(--gms-white) !important;
  color: var(--gms-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px -2px rgba(255, 255, 255, 0.45) !important;
}

/* Outline Dark CTA */
.btn-outline-dark {
  border: 2px solid var(--gms-navy) !important;
  background: transparent !important;
  color: var(--gms-navy) !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--gms-navy) !important;
  color: var(--gms-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px -2px rgba(0, 32, 85, 0.4) !important;
}

/* Header & Sticky Navbar */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  background: var(--gms-white);
  box-shadow: 0 2px 12px rgba(0, 32, 85, 0.08);
}

/* Top Utility Bar */
.top-bar {
  background: var(--gms-navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: var(--gms-footer-link);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--gms-white);
}

.top-bar i {
  color: var(--gms-blue);
}

.top-bar span {
  color: var(--gms-footer-link);
}

/* Navbar */
.navbar-gms {
  background: var(--gms-white) !important;
  padding: 0.75rem 0;
}

.navbar-gms.scrolled {
  box-shadow: 0 4px 15px rgba(0, 32, 85, 0.12);
}

.navbar-gms .nav-link {
  color: var(--gms-navy) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s ease;
}

.navbar-gms .nav-link:hover,
.navbar-gms .nav-link.active {
  color: var(--gms-blue) !important;
}

.navbar-gms .dropdown-menu {
  border: 1px solid var(--gms-line);
  box-shadow: 0 10px 30px rgba(0, 32, 85, 0.12);
  border-radius: 0.6rem;
  padding: 0.5rem;
  background: var(--gms-white);
}

.navbar-gms .dropdown-item {
  border-radius: 0.375rem;
  font-size: 0.9rem;
  color: var(--gms-text-dark);
  font-weight: 500;
  padding: 0.55rem 1rem;
}

.navbar-gms .dropdown-item:hover {
  background: var(--gms-light);
  color: var(--gms-blue);
}

.brand-logo {
  height: 48px;
  width: auto;
}

/* Hero Section */
.hero-carousel .carousel-item {
  min-height: 520px;
}

.hero-slide {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gms-navy-dark) 0%, var(--gms-navy) 60%, var(--gms-navy-light) 100%);
  color: var(--gms-white);
}

.hero-slide h1 {
  color: var(--gms-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.hero-slide .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-slide .badge-label {
  display: inline-block;
  background: rgba(30, 129, 200, 0.2);
  border: 1px solid rgba(30, 129, 200, 0.4);
  color: var(--gms-footer-link);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

/* Page Hero (Inner Pages) */
.page-hero {
  background: linear-gradient(135deg, var(--gms-navy-dark) 0%, var(--gms-navy) 60%, var(--gms-navy-light) 100%);
  color: var(--gms-white);
  padding: 3.5rem 0;
}

.page-hero h1 {
  color: var(--gms-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
}

/* Content Sections */
.content-section {
  background: var(--gms-white);
}

.content-section h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gms-navy);
}

.content-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gms-navy);
}

.content-section p {
  color: var(--gms-text-gray);
}

/* Alternate Section */
.bg-gms-light {
  background-color: var(--gms-light) !important;
}

/* Service Cards */
.service-card {
  border: 1px solid var(--gms-line);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--gms-white);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 32, 85, 0.12);
  border-color: var(--gms-blue);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gms-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--gms-blue);
}

/* Icons Global */
.feature-list li i,
.industry-list li i,
.contact-info-card i {
  color: var(--gms-blue) !important;
}

/* Stats Section */
.stats-section {
  background: var(--gms-navy);
  color: var(--gms-white);
  padding: 3.5rem 0;
}

.stat-box {
  text-align: center;
  padding: 1rem;
}

.stat-box .stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gms-blue);
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

/* CTA Sections */
.cta-card {
  border-radius: 0.75rem;
  padding: 2.5rem;
  height: 100%;
  color: var(--gms-white);
}

.cta-card--navy,
.cta-section-navy {
  background: var(--gms-navy) !important;
  color: var(--gms-white) !important;
}

.cta-card--navy h3,
.cta-section-navy h2,
.cta-section-navy h3 {
  color: var(--gms-white) !important;
}

.cta-card--navy p,
.cta-section-navy p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Bottom CTA Banner Strip */
.cta-strip-modern {
  background: linear-gradient(135deg, var(--gms-navy) 0%, var(--gms-navy-dark) 100%);
  padding: 3.5rem 0;
  color: var(--gms-white);
  border-top: 4px solid var(--gms-blue);
}

.cta-strip-modern h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--gms-white);
  font-weight: 800;
}

/* Site Footer */
.site-footer {
  background: var(--gms-navy-dark) !important;
  color: var(--gms-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  color: var(--gms-white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gms-blue);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--gms-footer-link);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--gms-white);
  transform: translateX(4px);
}

.footer-contact-item {
  color: var(--gms-footer-link);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--gms-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--gms-footer-link);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--gms-white);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gms-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--gms-blue);
  border-color: var(--gms-blue);
  color: var(--gms-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(30, 129, 200, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gms-footer-link);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}


/* Product & Equipment Cards */
.product-card {
  border: 1px solid var(--gms-line);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
  background: var(--gms-white);
  transition: box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 32, 85, 0.1);
}

.product-card .placeholder-img {
  height: 180px;
  background: linear-gradient(135deg, var(--gms-light) 0%, #e1eef8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .placeholder-img i {
  font-size: 3rem;
  color: var(--gms-blue);
}

/* Contact Cards */
.contact-info-card {
  background: var(--gms-light);
  border-radius: 0.75rem;
  padding: 1.75rem;
  height: 100%;
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--gms-blue);
  margin-bottom: 0.75rem;
}

.contact-form-panel {
  background: var(--gms-white);
  border: 1px solid var(--gms-line);
  border-radius: 0.75rem;
  padding: 2rem;
}

/* FAQ Accordions */
.faq-section .accordion-button {
  font-weight: 600;
  color: var(--gms-navy);
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--gms-light);
  color: var(--gms-blue);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gms-line);
}

.section-label {
  color: var(--gms-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--gms-navy);
}

.benefit-card {
  background: var(--gms-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
}

.benefit-card h4 {
  font-size: 1.1rem;
  color: var(--gms-navy);
}

/* Keyframe Animations */
@keyframes float {

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

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(30, 129, 200, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(30, 129, 200, 0.8);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Mesh Backgrounds */
.bg-mesh-dark {
  background: radial-gradient(circle at 15% 20%, rgba(30, 129, 200, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(184, 216, 240, 0.15) 0%, transparent 45%),
    linear-gradient(135deg, #001638 0%, #002055 50%, #002d73 100%);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  color: var(--gms-white);
}

.glass-card ul li {
  color: #ffffff;
}

/* Gradient Text */
.gradient-text-green,
.gradient-text-blue {
  background: linear-gradient(135deg, #1E81C8 0%, #B8D8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold,
.gradient-text-accent {
  background: linear-gradient(135deg, #B8D8F0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated Hero Badge */
.hero-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 129, 200, 0.2);
  border: 1px solid rgba(184, 216, 240, 0.4);
  color: var(--gms-footer-link);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gms-blue);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gms-blue);
  animation: pulseGlow 1.5s infinite;
}

.hero-badge-animated span {
  color: #FFFFFF;
}

/* Modern Card Hover Effects */
.modern-service-card {
  position: relative;
  background: var(--gms-white);
  border-radius: 1.25rem;
  padding: 2.25rem;
  border: 1px solid var(--gms-line);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  height: 100%;
}

.modern-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gms-navy) 0%, var(--gms-blue) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 32, 85, 0.12);
  border-color: var(--gms-blue);
}

.modern-service-card:hover::after {
  opacity: 1;
}

.modern-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(30, 129, 200, 0.12) 0%, rgba(0, 32, 85, 0.05) 100%);
  color: var(--gms-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.modern-service-card:hover .modern-icon-box {
  background: var(--gms-blue);
  color: var(--gms-white);
  transform: scale(1.1) rotate(-3deg);
}

/* Spotlight Feature Service Cards (Homepage Redesign) */
.spotlight-service-card {
  position: relative;
  background: var(--gms-white);
  border-radius: 1.25rem;
  border: 1px solid var(--gms-line);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 32, 85, 0.05);
}

.spotlight-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gms-navy) 0%, var(--gms-blue) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.spotlight-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 32, 85, 0.14);
  border-color: var(--gms-blue);
}

.spotlight-service-card:hover::after {
  opacity: 1;
}

.spotlight-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--gms-navy-dark);
}

.spotlight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.spotlight-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 22, 56, 0.15) 0%, rgba(0, 32, 85, 0.65) 100%);
  z-index: 1;
}

.spotlight-badge-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border-radius: 50rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.spotlight-icon-floating {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--gms-navy) 0%, var(--gms-blue) 100%);
  color: var(--gms-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(0, 32, 85, 0.25);
  border: 3px solid var(--gms-white);
  z-index: 3;
  transition: all 0.35s ease;
}

.spotlight-service-card:hover .spotlight-icon-floating {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, var(--gms-blue) 0%, #0050b3 100%);
}

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

.spotlight-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gms-blue);
  margin-bottom: 0.35rem;
}

.spotlight-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gms-navy);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.spotlight-service-card:hover .spotlight-card-title {
  color: var(--gms-blue);
}

.spotlight-card-desc {
  font-size: 0.925rem;
  color: var(--gms-text-gray);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.spotlight-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.spotlight-features-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gms-text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spotlight-features-list li i {
  color: var(--gms-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.spotlight-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gms-line);
}

/* Interactive Savings Calculator */
.calc-box {
  background: linear-gradient(135deg, var(--gms-navy-dark) 0%, var(--gms-navy) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: var(--gms-white);
  box-shadow: 0 20px 50px rgba(0, 32, 85, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.savings-display {
  background: rgba(30, 129, 200, 0.2);
  border: 1px solid rgba(184, 216, 240, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.savings-amount {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gms-footer-link);
  line-height: 1;
}

/* Feature Badge Pill */
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gms-light);
  color: var(--gms-navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid var(--gms-line);
}

/* Modern Comparison Matrix Styles */
.comparison-container-modern {
  background: var(--gms-white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 32, 85, 0.08);
  border: 1px solid var(--gms-line);
  overflow: hidden;
}

.comparison-header-cell {
  padding: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-header-gms {
  background: linear-gradient(135deg, var(--gms-navy) 0%, var(--gms-navy-dark) 100%);
  color: var(--gms-white);
  position: relative;
}

.comparison-row-modern {
  border-bottom: 1px solid var(--gms-line);
  transition: background 0.2s ease;
}

.comparison-row-modern:last-child {
  border-bottom: none;
}

.comparison-row-modern:hover {
  background: rgba(243, 248, 252, 0.7);
}

.comparison-cell-gms {
  background: rgba(30, 129, 200, 0.06);
  font-weight: 600;
  border-left: 2px solid rgba(30, 129, 200, 0.3);
  border-right: 2px solid rgba(30, 129, 200, 0.3);
}

.comparison-table-modern {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table-modern th,
.comparison-table-modern td {
  padding: 1.25rem 1.75rem;
  vertical-align: middle;
}


/* Slick Hero Slider Custom Styles */
.hero-slick-slider {
  position: relative;
  overflow: hidden;
}

.hero-slick-slider .slick-slide {
  outline: none;
}

.hero-slick-slider .slick-prev,
.hero-slick-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slick-slider .slick-prev {
  left: 20px;
}

.hero-slick-slider .slick-next {
  right: 20px;
}

.hero-slick-slider .slick-prev:hover,
.hero-slick-slider .slick-next:hover {
  background: var(--gms-blue);
  border-color: var(--gms-blue);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(30, 129, 200, 0.4);
}

.hero-slick-slider .slick-dots {
  bottom: 25px;
  z-index: 20;
}

.hero-slick-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
}

.hero-slick-slider .slick-dots li.slick-active button {
  background: var(--gms-blue);
  width: 28px;
  border-radius: 12px;
}

/* Hide default arrow */
.hero-slick-slider .slick-prev:before {
  content: '←';
  display: none !important;
}

/* Hide default arrow */
.hero-slick-slider .slick-next:before {
  content: '→';
  display: none !important;
}

/* Hide default dots */
.hero-slick-slider .slick-dots li button:before {
  display: none !important;
}

/* =========================================
   ABOUT US PAGE - MODERN REDESIGN STYLES
   ========================================= */

/* Floating Overlapping Stats Card */
.overlapping-stats-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -45px;
  margin-bottom: 2rem;
}

.overlapping-stats-card {
  background: var(--gms-white);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 32, 85, 0.12);
  border: 1px solid var(--gms-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlapping-stats-card:hover {
  box-shadow: 0 24px 55px rgba(0, 32, 85, 0.16);
}

.stat-num {
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.border-line-sm {
  border-color: var(--gms-line) !important;
}

/* About Interactive Navigation Tabs */
.about-nav-tabs {
  background: rgba(0, 32, 85, 0.04);
  padding: 0.4rem;
  border-radius: 50rem;
  border: 1px solid var(--gms-line);
  display: inline-flex;
}

.about-nav-tabs .nav-link {
  border-radius: 50rem !important;
  color: var(--gms-navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.35rem;
  transition: all 0.25s ease;
  border: none;
  background: transparent;
}

.about-nav-tabs .nav-link:hover {
  color: var(--gms-blue) !important;
  background: rgba(30, 129, 200, 0.08);
}

.about-nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #1E81C8 0%, #0050b3 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(30, 129, 200, 0.35);
}

/* Milestone Timeline Component */
.timeline-container {
  position: relative;
  padding-left: 2.5rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 17px;
  width: 3px;
  background: linear-gradient(180deg, var(--gms-blue) 0%, rgba(30, 129, 200, 0.2) 100%);
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gms-white);
  border: 3px solid var(--gms-blue);
  color: var(--gms-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 0 5px rgba(30, 129, 200, 0.15);
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.timeline-step:hover .timeline-node {
  background: var(--gms-blue);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 0 0 7px rgba(30, 129, 200, 0.25);
}

.timeline-card {
  background: var(--gms-white);
  border-radius: 1.15rem;
  padding: 1.65rem 1.85rem;
  border: 1px solid var(--gms-line);
  box-shadow: 0 4px 18px rgba(0, 32, 85, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-step:hover .timeline-card {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0, 32, 85, 0.1);
  border-color: var(--gms-blue);
}

/* Core Values Unique Cards */
.value-card-unique {
  background: var(--gms-white);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--gms-line);
  box-shadow: 0 6px 20px rgba(0, 32, 85, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-unique::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gms-navy) 0%, var(--gms-blue) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-unique:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 32, 85, 0.12);
  border-color: var(--gms-blue);
}

.value-card-unique:hover::after {
  opacity: 1;
}

.value-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(30, 129, 200, 0.12) 0%, rgba(0, 32, 85, 0.05) 100%);
  color: var(--gms-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.35rem;
  transition: all 0.3s ease;
}

.value-card-unique:hover .value-icon-circle {
  background: var(--gms-blue);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

/* Executive Promise Spotlight Card */
.promise-quote-card {
  background: radial-gradient(circle at 10% 20%, rgba(30, 129, 200, 0.25) 0%, transparent 50%),
              linear-gradient(135deg, #001638 0%, #002055 60%, #002d73 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  border-left: 6px solid var(--gms-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 32, 85, 0.25);
  position: relative;
  overflow: hidden;
}

/* Advantage Highlight Cards */
.advantage-card {
  background: var(--gms-white);
  border-radius: 1rem;
  padding: 1.65rem;
  border: 1px solid var(--gms-line);
  box-shadow: 0 4px 15px rgba(0, 32, 85, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 32, 85, 0.1);
  border-color: var(--gms-blue);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(30, 129, 200, 0.1);
  color: var(--gms-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  background: var(--gms-blue);
  color: #ffffff;
}

/* Client Logos Slider Styles */
.client-logo-card {
  background: var(--gms-white);
  border: 1px solid var(--gms-line);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gms-navy);
  box-shadow: 0 4px 12px rgba(0, 32, 85, 0.04);
  transition: all 0.3s ease;
}

.client-logo-card:hover {
  border-color: var(--gms-blue);
  box-shadow: 0 8px 24px rgba(30, 129, 200, 0.12);
  transform: translateY(-3px);
}

.client-logo-card i {
  font-size: 1.35rem;
  color: var(--gms-blue);
}

/* Mega Menu Custom Styles */
.navbar-gms .dropdown-mega {
  position: static !important;
}

.navbar-gms .mega-menu-dropdown {
  left: 0;
  right: 0;
  width: 100%;
  border: 1px solid var(--gms-line);
  box-shadow: 0 20px 40px rgba(0, 32, 85, 0.12);
  background: var(--gms-white);
  padding: 1.5rem;
}

.mega-menu-header {
  font-size: 1.05rem;
  font-weight: 700;
}

.mega-menu-link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--gms-navy);
  transition: all 0.2s ease;
}

.mega-menu-link:hover {
  background: var(--gms-light);
  color: var(--gms-blue);
  transform: translateX(4px);
}

.mega-menu-link .fw-bold {
  color: var(--gms-navy);
}

.mega-menu-link:hover .fw-bold {
  color: var(--gms-blue);
}

/* =========================================
   SERVICE CARD ICON - PERFECT CIRCLE
   ========================================= */

.service-icon-circle {
  width: 68px !important;
  height: 68px !important;

  min-width: 68px !important;
  min-height: 68px !important;

  max-width: 68px !important;
  max-height: 68px !important;

  padding: 0 !important;

  /* Center horizontally */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px !important;

  border-radius: 50% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 68px !important;

  background-color: #2189d0 !important;

  aspect-ratio: 1 / 1 !important;

  box-sizing: border-box !important;

  line-height: 1 !important;
}


.service-icon-circle i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================
   PREVENT BOOTSTRAP FROM DISTORTING CIRCLE
   ========================================= */
.service-icon-circle.rounded,
.service-icon-circle.rounded-circle {
  border-radius: 50% !important;
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 767.98px) {
  .service-icon-circle {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    flex: 0 0 64px !important;
  }

  .service-icon-circle i {
    font-size: 26px !important;
  }
}

/* =========================================
   PRODUCTS PAGE DESIGN SYSTEM
   ========================================= */

/* Category Quick Jump Navigation */
.product-category-nav {
  position: sticky;
  top: 74px;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gms-line);
  box-shadow: 0 4px 20px rgba(0, 32, 85, 0.04);
}

.product-nav-link {
  color: var(--gms-navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.15rem;
  border-radius: 50rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  background: var(--gms-light);
  border: 1px solid transparent;
}

.product-nav-link:hover,
.product-nav-link.active {
  background: var(--gms-navy);
  color: var(--gms-white) !important;
  box-shadow: 0 4px 14px rgba(0, 32, 85, 0.25);
  transform: translateY(-1px);
}

.product-nav-link i {
  color: var(--gms-blue);
  transition: color 0.25s ease;
}

.product-nav-link:hover i,
.product-nav-link.active i {
  color: var(--gms-white) !important;
}

/* Modern Product & Hardware Cards */
.hardware-card {
  background: var(--gms-white);
  border: 1px solid var(--gms-line);
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 32, 85, 0.04);
}

.hardware-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 129, 200, 0.5);
  box-shadow: 0 16px 36px rgba(0, 32, 85, 0.12);
}

.hardware-card.featured-card {
  border: 2px solid var(--gms-blue);
  background: linear-gradient(180deg, rgba(30, 129, 200, 0.03) 0%, var(--gms-white) 100%);
}

.hardware-badge-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hardware-img-container {
  height: 160px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 32, 85, 0.05);
}

.hardware-img-container i {
  font-size: 4rem;
  color: var(--gms-blue);
  transition: transform 0.35s ease;
}

.hardware-card:hover .hardware-img-container i {
  transform: scale(1.1);
}

.hardware-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gms-light);
  color: var(--gms-navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 0.4rem;
  border: 1px solid var(--gms-line);
}

/* Feature Checklist Item */
.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--gms-text-gray);
}

.feature-check-item i {
  color: var(--gms-blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ATM Comparison Cards */
.atm-pricing-card {
  background: var(--gms-white);
  border: 1px solid var(--gms-line);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.atm-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 32, 85, 0.12);
  border-color: var(--gms-blue);
}

.atm-pricing-card.popular-tier {
  border: 2px solid var(--gms-navy);
  box-shadow: 0 12px 30px rgba(0, 32, 85, 0.1);
}

.atm-pricing-card.popular-tier::before {
  content: "MOST POPULAR CHOICE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gms-navy);
  color: var(--gms-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  border-radius: 50rem;
}

/* Matcher Pill Nav */
.matcher-tab-btn {
  border: 1px solid var(--gms-line);
  background: var(--gms-white);
  color: var(--gms-navy);
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 50rem;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.matcher-tab-btn.active,
.matcher-tab-btn:hover {
  background: var(--gms-navy);
  color: var(--gms-white);
  border-color: var(--gms-navy);
  box-shadow: 0 6px 18px rgba(0, 32, 85, 0.2);
}

.matcher-tab-btn.active i,
.matcher-tab-btn:hover i {
  color: var(--gms-blue);
}

/* Callout Highlights */
.hardware-promo-banner {
  background: linear-gradient(135deg, #002055 0%, #00368a 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: var(--gms-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 32, 85, 0.2);
}

.hardware-promo-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 129, 200, 0.25) 0%, transparent 70%);
  pointer-events: none;
}