body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ece9f1, #f4f1fc);
}

 nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100px;
}

    .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;
  }
}
.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px); /* Leaves space for navbar */
  padding-top: 30px;
}
.container {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  
}
.success-message {
  background: #e6ffed;
  color: #137333;
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 5px solid #34a853;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Left: Form */
.form-box {
  flex: 1;
  background: white;
  padding: 50px 40px;
  box-sizing: border-box;
  animation: fadeIn 1s ease-in;
}

.form-box h2 {
  margin-bottom: 25px;
  color: #07194c;
  font-size: 28px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
  font-size: 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: #07194c;
  box-shadow: 0 0 5px #113ebd;
  outline: none;
}

.radio-group label {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 15px;
  color: #444;
}

.radio-group input[type="radio"] {
  position: absolute;
  left: 0;
  top: 2px;
  accent-color: #07194c;
}

input[type="submit"] {
  background: #07194c;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

input[type="submit"]:hover {
  background: #07194c;
}



/* Right: Info */
.info-box {
  flex: 1;
  background: linear-gradient(145deg, #07194c, #113ebd);
  color: white;
  padding: 50px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li::before {
  content: "✔️";
  margin-right: 10px;
  color: #fff;
}

.info-box li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    border-radius: 0;
  }

  .form-box, .info-box {
    padding: 30px 20px;
  }
}

