* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: white;
      padding: 10px 20px;
      position: relative;
    }

    .logo img {
      height: 70px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #07194c;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links li:hover > a {
      color: #fa8a1e;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #07194c;
      min-width: 180px;
      z-index: 1000;
      padding: 10px 0;
    }

    .dropdown a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background: #07194c;
      color: #a4e6b1;
      padding-left: 25px;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .dropdown a:hover .arrow {
      transform: translateX(4px);
    }

    .apply-btn {
      background: #fa8a1e;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 22px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .apply-btn:hover {
      background: #ffffff;
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      color: #ffffff;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      color: #ffffff;
      background-color: #07194c;
    }

    @media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #07194c;
  }

  .apply-btn {
    margin-top: 20px;
  }
}

.submenu {
  list-style: none;  /* ✅ removes the bullet/dot */
  padding-left: 0;   /* optional: removes left indentation */
}
@media (min-width: 769px) {
  .symbol {
    display: none;
  }
}
.contact-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

/* FORM COLUMN */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ea640e;
}

/* INFO COLUMN */
.contact-info {
  flex: 1;
  min-width: 250px;
  background: #1e3a8a;
  color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-info i {
  color: #f97316;
  margin-right: 10px;
}

.contact-info a {
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}
