.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #2563eb;
  border-radius: 3px;
}

/* Dropdown */
.nav-item.dropdown .dropdown-toggle i {
  font-size: 0.75rem;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  padding: 10px 0;
  display: none;
  z-index: 200;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s;
}

.dropdown-link:hover {
  background: #2563eb;
  color: #fff;
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    left: -100%;
    top: 70px;
    height: calc(100vh - 130px);
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 999;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  /* Dropdown on mobile */
  .dropdown-menu {
    position: static;
    background: #f9fafb;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .dropdown-link {
    padding: 10px 0;
    display: block;
  }

  /* Extra adjustments for other sections (optional) */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
  }

  .nav-link.active::after {
    width: 100%;
  }
}

.form-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.form-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-form-section iframe{
  background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-dark-blue) !important;
    width: 100% !important;
    height: 94%;

}
.contact-form-section {
  width: 100%;
  max-width: 700px; /* optional, keeps form from stretching too wide */
  margin: 0 auto;
}

.contact-form-section iframe {
  display: block;
  width: 100%;
  height: 94% !important; /* full viewport height */
  min-height:760px; /* ensures it’s usable on smaller screens */
  border: 2px solid var(--primary-dark-blue) !important;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  background-color: var(--white);
  overflow: hidden;
}

