/* ---------------------------
   GLOBAL ROOT VARIABLES
---------------------------- */
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #0a2a6c;
  --primary-light: #051e4e;
  --text-dark: #444;
  --text-light: #888;
  --font-family: 'Poppins', sans-serif;
}

/* ---------------------------
   GLOBAL FONT
---------------------------- */
body, h1, h2, h3 {
  font-family: var(--font-family);
}
h1, h2, h3 {
  font-weight: 600;
}

/* ---------------------------
   REUSABLE UTILITY CLASSES
---------------------------- */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

.button { background-color: var(--primary-color) !important }

.text-green-400,
.text-green-500,
.text-green-600 {
  color: var(--primary-color)!important;
}

.bg-green-500,
.bg-green-600,
.bg-gray-300 {
  background-color: var(--primary-color) !important;
}

.bg-green-5000{
    background-color: green;
}
/* ---------------------------
   STEP CIRCLE
---------------------------- */
.step-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.step-active {
  background-color: var(--primary-color) !important;
  color: white !important;
  transform: scale(1.25);
  box-shadow: 0px 0px 18px var(--primary-light);
}

.step-active::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.25);
  animation: fillBar 3s linear forwards;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: 100%; }
}

/* ---------------------------
   DOTTED LINE
---------------------------- */
.step-line {
  width: 60px;
  height: 4px;
  background: repeating-linear-gradient(
      to right,
      var(--primary-color),
      var(--primary-color) 6px,
      transparent 6px,
      transparent 12px
  );
  opacity: .6;
}

/* ---------------------------
   STEP CONTAINER
---------------------------- */
.stepContainer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.stepBgNumber {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 800;
  opacity: 0.06;
  z-index: 1;

  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);

  display: flex;
  align-items: center;
  justify-content: center;
}

.stepLeft {
  width: 45%;
  z-index: 2;
}

.stepRight {
  width: 55%;
  z-index: 2;
}

.stepImg {
  width: 100%;
  max-width: 320px;
  opacity: 0.95;
}

/* ---------------------------
   TEXT STYLES
---------------------------- */
.stepTitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}
.stepTitle span {
  color: var(--primary-color);
}

.stepDesc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------------------------
   UNDERLINE HOVER ANIMATION
---------------------------- */
.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.35s ease;
}
.hover-underline:hover::after {
  width: 100%;
}

/* ---------------------------
   TESTIMONIAL IMAGE EFFECTS
---------------------------- */
.testimonial-img {
  transition: all 0.3s ease-in-out;
}
.testimonial-img.blur {
  filter: blur(4px);
  opacity: 0.5;
}
.testimonial-img.focus {
  filter: blur(0);
  opacity: 1;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.map-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* auto responsive height */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
