/* ============================================================
   NIMR INTERNATIONAL SPC — Luxury Tech Design System
   Premium Business Consultancy Website
   ============================================================ */

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* Brand Colors */
  --primary: #1fb6ef;
  --primary-hover: #46ccf2;
  --primary-dark: #1084b0;
  --primary-light: rgba(31, 182, 239, 0.08);
  --primary-glow: rgba(31, 182, 239, 0.25);

  /* Navy / Dark Slate */
  --navy: #080f18;
  --navy-light: #0f1a28;
  --teal-dark: #072a44;

  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 60%, var(--navy-light) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Text */
  --text-heading: #0c1e2f;
  --text-body: #475569;
  --text-muted: #64748b;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-offwhite: #f8fafc;
  --bg-light: #f1f5f9;
  --bg-alt: #e2e8f0;

  /* Borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(8, 15, 24, 0.02);
  --shadow-sm: 0 4px 12px rgba(8, 15, 24, 0.03);
  --shadow-md: 0 8px 24px rgba(8, 15, 24, 0.04);
  --shadow-lg: 0 16px 40px rgba(8, 15, 24, 0.06);
  --shadow-xl: 0 24px 60px rgba(8, 15, 24, 0.1);
  --shadow-primary: 0 8px 25px rgba(31, 182, 239, 0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.5s var(--ease-smooth);
  --transition-fast: all 0.25s var(--ease-smooth);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --nav-height: 96px;
  --nav-height-scrolled: 76px;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border: 2px solid var(--navy);
  border-radius: 6px;
}

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


/* ========================
   GLOBAL STYLES
   ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

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

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

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


/* ========================
   UTILITY CLASSES
   ======================== */
.section-padding {
  padding: 120px 0;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--navy) 30%, #0ea5e9 70%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Header */
.section-header {
  margin-bottom: 4rem;
}

.section-header .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(31, 182, 239, 0.1) 100%);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.section-header .section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-header.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Dynamic line decorator */
.underline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.underline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.text-center .underline-accent::after {
  left: 50%;
  transform: translateX(-50%);
}


/* ========================
   BUTTONS
   ======================== */
.btn-nimr {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 38px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Luxury shimmer animation effect */
.btn-nimr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-nimr:hover::before {
  left: 100%;
}

/* Primary CTA */
.btn-nimr-primary {
  background: var(--gradient-primary);
  color: var(--navy);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(31, 182, 239, 0.15);
}

.btn-nimr-primary:hover,
.btn-nimr-primary:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-primary), 0 12px 30px rgba(31, 182, 239, 0.35);
  color: var(--navy);
}

/* White outline */
.btn-nimr-outline-white {
  background: transparent;
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-nimr-outline-white:hover,
.btn-nimr-outline-white:focus {
  background: var(--bg-white);
  color: var(--navy);
  border-color: var(--bg-white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Dark outline */
.btn-nimr-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(12, 30, 47, 0.3);
}

.btn-nimr-outline:hover,
.btn-nimr-outline:focus {
  background: var(--navy);
  color: var(--bg-white);
  border-color: var(--navy);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(12, 30, 47, 0.15);
}

/* Light subtle variant */
.btn-nimr-light {
  background: var(--bg-offwhite);
  color: var(--navy);
  border-color: var(--border-color);
}

.btn-nimr-light:hover,
.btn-nimr-light:focus {
  background: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}


/* ========================
   NAVIGATION
   ======================== */
.navbar-nimr {
  margin-top: 16px;
  border-radius: 20px;
  border: 1px solid rgba(8, 15, 24, 0.04);
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(8, 15, 24, 0.04);
  height: 80px;
  transition: var(--transition);
  z-index: 1050;
}

.navbar-nimr.scrolled {
  margin-top: 0;
  border-radius: 0;
  height: var(--nav-height-scrolled);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(31, 182, 239, 0.18);
  box-shadow: 0 8px 32px rgba(8, 15, 24, 0.06);
}

/* Logo */
.navbar-brand-nimr {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.header-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  transition: var(--transition-fast);
}
.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  transition: var(--transition-fast);
}

@media (max-width: 991.98px) {
  .header-logo {
    width: 180px;
  }
  .footer-logo {
    width: 180px;
  }
}

@media (max-width: 575.98px) {
  .header-logo {
    width: 150px;
  }
  .footer-logo {
    width: 150px;
  }
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

.logo-mark span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.navbar-brand-nimr:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 4px 15px rgba(12, 30, 47, 0.15);
}

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

.logo-text .logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-text .logo-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nimr .nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-heading) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 30px;
}

.navbar-nimr .nav-link::after {
  display: none;
}

.navbar-nimr .nav-link:hover,
.navbar-nimr .nav-link.active {
  background: var(--primary-light);
  color: var(--primary-dark) !important;
}

/* Custom Hamburger — uses Bootstrap's .navbar-toggler for JS, styled custom */
.navbar-nimr .navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  box-shadow: none !important;
  outline: none;
}

/* Hide the default Bootstrap toggler icon */
.navbar-nimr .navbar-toggler .navbar-toggler-icon {
  display: none;
}

.hamburger-line {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  left: 0;
  transition: 0.3s var(--ease-smooth);
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger-line:nth-child(3) {
  top: 18px;
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}


/* ========================
   HERO SECTION
   ======================== */
.hero-section {
  padding-top: 200px;
  padding-bottom: 120px;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(31, 182, 239, 0.08) 0%, transparent 50%),
    var(--bg-white);
  min-height: 98vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background glowing blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.65;
  pointer-events: none;
  animation: float-blob 24s infinite alternate ease-in-out;
}

.glow-blob-1 {
  width: 360px;
  height: 360px;
  background: rgba(14, 165, 233, 0.15);
  top: 6%;
  left: -8%;
}

.glow-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(31, 182, 239, 0.12);
  bottom: 6%;
  right: -8%;
  animation-delay: -6s;
}

.glow-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.08);
  top: 40%;
  right: 30%;
  animation-delay: -12s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(50px, -70px) scale(1.2) rotate(180deg);
  }

  100% {
    transform: translate(-40px, 40px) scale(0.85) rotate(360deg);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(14, 165, 233, 0.05);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--navy);
  position: relative;
  z-index: 2;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 2.75rem;
  max-width: 560px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  padding: 12%;
  padding-top: 1% !important;
}

.hero-img-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow-xl), 0 0 50px rgba(14, 165, 233, 0.1);
  position: relative;
  transition: var(--transition);
}

.hero-img-card::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px dashed #0ea5e9;
  border-radius: 32px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0.7;
}

.hero-img-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}

.hero-img-card:hover {
  transform: translateY(-10px) rotate(-1.5deg);
  box-shadow: var(--shadow-xl), 0 16px 50px rgba(14, 165, 233, 0.25);
}

.hero-img-card:hover img {
  transform: scale(1.04);
}

.hero-img-card:hover::before {
  transform: translate(8px, 8px);
  border-color: var(--primary);
  opacity: 1;
}

/* Stats strip: Premium glass dashboard design */
.hero-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 3.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 15px 35px rgba(8, 15, 24, 0.03);
  position: relative;
  z-index: 2;
}

.hero-stat {
  text-align: center;
  flex: 1;
  transition: var(--transition-fast);
}

.hero-stat:hover {
  transform: translateY(-5px);
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(8, 15, 24, 0.08);
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--navy) 30%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-stat .stat-number span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ========================
   SERVICE CARDS
   ======================== */
.service-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbfc 100%);
  border: 1px solid rgba(8, 15, 24, 0.04);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-smooth);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 15px 40px rgba(8, 15, 24, 0.04);
  border-color: rgba(14, 165, 233, 0.3);
  background: var(--bg-white);
}

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

.service-card:hover::after {
  opacity: 1;
  top: -20px;
  right: -20px;
}

/* Special styling override for choice CTA card on home page */
.service-card[style*="background: linear-gradient"] {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-dark) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(7, 42, 68, 0.4) !important;
}

.service-card[style*="background: linear-gradient"]::before {
  background: var(--gradient-primary) !important;
}

.service-card[style*="background: linear-gradient"]:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 20px 50px rgba(7, 42, 68, 0.6) !important;
  border-color: rgba(31, 182, 239, 0.4) !important;
}

/* Icon box inside service cards */
.icon-box {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  transition: var(--transition);
  border: 1px solid rgba(8, 15, 24, 0.04);
}

.icon-box img {
  width: 38px;
  height: 38px;
  transition: var(--transition-fast);
}

.service-card:hover .icon-box {
  background: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  transform: rotate(8deg) scale(1.1);
  box-shadow: var(--shadow-primary), 0 4px 15px rgba(14, 165, 233, 0.3);
  border-color: transparent;
}

/* Flaticon Icon Animations */
@keyframes icon-pulse {

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

  50% {
    transform: scale(1.2);
  }
}

@keyframes icon-bounce {

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

  40% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-3px);
  }
}

@keyframes icon-rotate-subtle {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes icon-wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-8deg);
  }

  75% {
    transform: rotate(8deg);
  }
}

.service-card:hover .icon-box img {
  animation: icon-bounce 0.8s var(--ease-bounce);
}

.service-card .service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.service-card .service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.65;
}

/* Service sub-list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-list li {
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.service-list li i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.service-card:hover .service-list li i,
.service-overview-card:hover .service-list li i {
  color: var(--primary-hover);
  transform: scale(1.1);
}


/* ========================
   FEATURE / INFO CARDS (Generic)
   ======================== */
.info-card {
  background: var(--bg-white);
  border: 1px solid rgba(12, 30, 47, 0.05);
  border-radius: 24px;
  padding: 2.75rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(12, 30, 47, 0.04);
  border-color: rgba(31, 182, 239, 0.35);
}

.info-card div[style*="border-radius: 50%"] {
  background: linear-gradient(135deg, rgba(31, 182, 239, 0.15) 0%, rgba(31, 182, 239, 0.02) 100%) !important;
  border: 1px solid rgba(31, 182, 239, 0.25) !important;
  transition: var(--transition);
}

.info-card:hover div[style*="border-radius: 50%"] {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
  border-color: transparent !important;
  transform: scale(1.1) rotate(6deg);
  box-shadow: var(--shadow-primary);
}

.info-card:hover div[style*="border-radius: 50%"] span {
  color: var(--navy) !important;
}


/* ========================
   PAGE BANNER (Interior Pages)
   ======================== */
.page-banner {
  padding-top: 170px;
  padding-bottom: 90px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

/* Page banner glow blobs */
.page-banner .glow-blob-dark-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(31, 182, 239, 0.08);
  filter: blur(80px);
  top: -80px;
  right: -50px;
  pointer-events: none;
  z-index: 1;
}

.page-banner .glow-blob-dark-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(10, 61, 92, 0.4);
  filter: blur(60px);
  bottom: -60px;
  left: -50px;
  pointer-events: none;
  z-index: 1;
}

.page-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.page-banner .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item a:hover {
  color: var(--primary);
}

.page-banner .breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;
}

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


/* ========================
   ABOUT / FOUNDER
   ======================== */
.about-story {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.founder-card {
  background: var(--bg-white);
  border: 1px solid rgba(8, 15, 24, 0.04);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow-md), 0 10px 30px rgba(8, 15, 24, 0.02);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.founder-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: transparent;
}

.founder-card:hover::before {
  opacity: 0.8;
}

.founder-img-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-alt));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  border: 3px dashed var(--text-muted);
  color: var(--text-muted);
  transition: var(--transition);
}

.founder-img-placeholder i {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

.founder-img-placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.founder-card:hover .founder-img-placeholder {
  border-color: var(--primary);
  color: var(--navy);
  background: linear-gradient(135deg, var(--primary-light), rgba(31, 182, 239, 0.05));
}

.founder-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.75rem;
  display: block;
  border: 4px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.founder-card:hover .founder-img {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), 0 10px 25px rgba(31, 182, 239, 0.2);
  transform: scale(1.05) rotate(2deg);
}

.founder-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.founder-role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.quote-block {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 5px solid #0ea5e9;
  border-radius: 0 32px 32px 0;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid rgba(8, 15, 24, 0.03);
  border-right: 1px solid rgba(8, 15, 24, 0.03);
  border-bottom: 1px solid rgba(8, 15, 24, 0.03);
  transition: var(--transition);
}

.quote-block:hover {
  border-left-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.quote-block .quote-icon {
  font-size: 2.75rem;
  color: rgba(14, 165, 233, 0.3);
  margin-bottom: 1.25rem;
}

.quote-block .quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.quote-block .quote-author {
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0;
}

/* Values grid redesign */
.value-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 28px;
  background: var(--bg-white);
  border: 1px solid rgba(8, 15, 24, 0.04);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.value-card:hover::before {
  opacity: 0.8;
}

.value-card .value-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(31, 182, 239, 0.02) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: var(--transition);
}

.value-card .value-icon img {
  width: 32px;
  height: 32px;
  transition: var(--transition-fast);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-primary), 0 4px 15px rgba(14, 165, 233, 0.25);
}

.value-card:hover .value-icon img {
  animation: icon-pulse 0.8s var(--ease-bounce);
}

.value-card h5 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}


/* ========================
   CONTACT SECTION
   ======================== */
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid rgba(8, 15, 24, 0.05);
  border-radius: 28px;
  padding: 3rem 2rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: var(--shadow-md), 0 10px 25px rgba(14, 165, 233, 0.05);
}

.contact-info-card .info-icon {
  font-size: 2.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-card:hover .info-icon {
  color: var(--primary-hover);
  transform: scale(1.15) rotate(5deg);
}

.contact-info-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.contact-info-card p {
  font-size: 0.75rem;
  color: var(--text-body);
  margin-bottom: 0;
  font-weight: 500;
  word-break: break-word;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--text-body);
  transition: var(--transition-fast);
  word-break: break-all;
}

.contact-info-card a:hover {
  color: var(--primary-dark);
}

/* Contact form wrapper */
.contact-form-wrap {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fafbfc 100%);
  border: 1px solid rgba(8, 15, 24, 0.04);
  border-radius: 32px;
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-xl), 0 15px 40px rgba(8, 15, 24, 0.03);
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 35px;
  right: 35px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 0 0 6px 6px;
}

.form-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--navy);
  transition: var(--transition);
  background-color: var(--bg-white);
  font-weight: 500;
}

.form-control:focus,
.form-select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
  outline: none;
  background-color: var(--bg-white);
}

/* Map container */
.map-container {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(8, 15, 24, 0.04);
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--bg-light);
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(110%) opacity(0.85);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(100%) opacity(1);
}


/* ========================
   CTA SECTIONS
   ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 60%, var(--navy-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(31, 182, 239, 0.1);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
}


/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  font-size: 0.95rem;
}

.footer h5 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 28px;
  font-size: 0.85rem;
}


/* ========================
   WHATSAPP FLOATING BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none !important;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #20ba5a;
  color: #fff;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: wa-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

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


/* ========================
   SERVICE DETAIL SECTION (Services Page)
   ======================== */
.service-detail-block {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.service-detail-block:nth-child(even) {
  background: linear-gradient(180deg, var(--bg-offwhite) 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(8, 15, 24, 0.03);
  border-bottom: 1px solid rgba(8, 15, 24, 0.03);
}

.service-detail-img {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(8, 15, 24, 0.04);
  position: relative;
}

.service-detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  z-index: 2;
  pointer-events: none;
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}

.service-detail-img:hover img {
  transform: scale(1.06);
}

.service-detail-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.service-detail-content .service-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.sub-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-white);
  border: 1px solid rgba(8, 15, 24, 0.04);
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.sub-service-item:hover {
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-4px) translateX(5px);
  box-shadow: var(--shadow-md), 0 6px 15px rgba(14, 165, 233, 0.06);
  background: var(--bg-white);
}

.sub-service-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sub-service-item:hover img {
  animation: icon-wiggle 0.5s var(--ease-bounce);
}


/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */
@media (max-width: 991.98px) {
  .navbar-nimr {
    margin-top: 8px;
    height: 72px;
    border-radius: 14px;
  }

  .navbar-collapse {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    border: 1px solid var(--border-color);
  }

  .navbar-nimr .nav-link::after {
    display: none;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    min-height: auto;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img-wrapper {
    margin-top: 3rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img-card::before {
    top: 12px;
    left: 12px;
    right: -10px;
    bottom: -10px;
  }

  .hero-stats {
    justify-content: center;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }

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

  .service-detail-img img {
    height: 300px;
  }

  .founder-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 80px 0;
  }

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

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

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .page-banner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .contact-form-wrap {
    padding: 2.5rem 1.5rem;
  }

  .btn-nimr {
    width: 100%;
    justify-content: center;
  }

  .service-detail-img img {
    height: 240px;
  }

  .service-detail-content h3 {
    font-size: 1.6rem;
  }

  .sub-service-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================
   SERVICES PAGE — Overview Cards
   ======================== */
.services-overview {
  background: var(--bg-offwhite);
}

.service-overview-card {
  background: var(--bg-white);
  border: 1px solid rgba(8, 15, 24, 0.04);
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-overview-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 15px 35px rgba(8, 15, 24, 0.05);
  border-color: rgba(14, 165, 233, 0.35);
}

.service-overview-card .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.service-overview-card:hover .card-img-top {
  transform: scale(1.05);
}

.service-overview-card .card-body {
  padding: 2.25rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-overview-card .card-icon {
  width: 68px;
  height: 68px;
  background: var(--bg-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(8, 15, 24, 0.05);
  box-shadow: 0 8px 24px rgba(8, 15, 24, 0.06);
  transition: var(--transition);
}

.service-overview-card:hover .card-icon {
  background: linear-gradient(135deg, #0ea5e9 0%, var(--primary) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
  transform: scale(1.1) rotate(5deg);
}

.service-overview-card .card-icon img {
  width: 28px;
  height: 28px;
  transition: var(--transition-fast);
}

.service-overview-card:hover .card-icon img {
  animation: icon-bounce 0.6s var(--ease-bounce);
}


/* ========================
   BACK TO TOP BUTTON
   ======================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: var(--navy);
  transform: translateY(-3px);
}


/* ========================
   FORM PLACEHOLDER OPACITY
   ======================== */
.form-control::placeholder,
.form-select::placeholder {
  color: var(--text-muted);
  opacity: 0.45;
  font-weight: 400;
}

.form-control::-webkit-input-placeholder {
  opacity: 0.45;
}

.form-control::-moz-placeholder {
  opacity: 0.45;
}

.form-control:-ms-input-placeholder {
  opacity: 0.45;
}

/* Form validation states */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.12);
}


/* ============================================================
   EXECUTIVE GALLERY (4-ELEMENT GRID) (about.html)
   ============================================================ */
.gallery-section {
  position: relative;
  background: var(--bg-white);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

/* Slide-up Gradient Overlay on Hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 24, 0.95) 0%, rgba(8, 15, 24, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 2rem;
  opacity: 0.85;
  transition: all 0.4s var(--ease-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(8, 15, 24, 0.98) 0%, rgba(8, 15, 24, 0.7) 60%, rgba(8, 15, 24, 0.2) 100%);
}

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

.gallery-info {
  transform: translateY(15px);
  transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: white;
  margin-bottom: 0.4rem;
}

.gallery-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-info p {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .gallery-item {
    aspect-ratio: 16/10;
  }

  .gallery-info {
    transform: translateY(0);
  }

  .gallery-info p {
    opacity: 1;
  }
}


/* ============================================================
   CONTACT RESTYLING & LIGHT HIGHLIGHT (contact.html)
   ============================================================ */
.contact-highlight-container {
  background: var(--bg-white);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(31, 182, 239, 0.05);
  position: relative;
  border: 1px solid rgba(31, 182, 239, 0.2);
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .contact-highlight-container {
    padding: 2rem 1.5rem;
  }
}

/* Map Highlight Container */
.contact-highlight-container .map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 340px;
}

.contact-highlight-container .map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .contact-highlight-container .map-container {
    min-height: 300px;
  }
}

/* Compact Form Container styling */
.compact-form-section {
  background: var(--bg-offwhite);
}

.compact-form {
  padding: 3rem 2.5rem;
  border-radius: 24px;
}

@media (max-width: 575.98px) {
  .compact-form {
    padding: 2.25rem 1.5rem;
  }
}