.hero-map-section {
    background-image: url('../images/final-map.jpeg');
    height: 122vh;
}

/* SF Pro Text (for body) */
@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/sf-pro/SF-Pro-Text-Regular.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/sf-pro/SF-Pro-Text-Bold.otf');
    font-weight: 700;
}

/* SF Pro Display (for headings) */
@font-face {
    font-family: 'SF Pro Display';
    src: url('/fonts/sf-pro/SF-Pro-Display-Regular.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/fonts/sf-pro/SF-Pro-Display-Bold.otf');
    font-weight: 700;
}
/* Body text */
body, p, a, li, span, input, button, textarea {
    font-family: 'SF Pro Text', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Display', sans-serif;
}


/* Active Menu Item */
.active {
    color: white !important;
    border-bottom: 2px solid #2FA52B;
    padding-bottom: 2px;
  }
  

  /* testimonial */
  .testimonial-card {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.quote-icon {
    
    color: #2FA52B;
    transform: rotate(180deg);
}
.testimonial-slider {
    scroll-behavior: smooth;
}
.map-bg {
    background-image: url('../images/bg-map.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}



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

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}
/* radio buttons in login page */
  /* Custom radio button styling */
  input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease;
  }

  input[type="radio"]:checked {
    border-color: #2FA52B;
    background-color: #2FA52B;
  }

  input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white; /* Inner dot is white for contrast */
  }

  input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(47,165,43,0.5);
  }