/* =============================
   GLOBAL STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f6fa;
  color: #333;
  line-height: 1.6;
}

/* =============================
   HEADER & NAVBAR
============================= */
.header {
  width: 100%;
  background-color: #0d47a1;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
  max-width: 1200px;
  margin: auto;
}

.nav__logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav__link:hover {
  color: #ffcc00;
}

/* ===== Dropdown ===== */
.dropdown__menu {
  display: none;
  position: absolute;
  background: white;
  color: #222;
  top: 120%;
  left: 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 999;
}

.dropdown__item {
  padding: 10px;
}

.dropdown__link {
  display: block;
  padding: 10px 15px;
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown__link:hover {
  background-color: #f4f6fa;
  color: #0d47a1;
}

.dropdown:hover .dropdown__menu {
  display: block;
}

/* ===== Right Section (Login + Menu) ===== */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav__action-button {
  background-color: #ffcc00;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav__action-button:hover {
  background-color: #fff;
  color: #0d47a1;
}

/* =============================
   MAIN SECTION (FORM AREA)
============================= */
.main1 {
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.main1 h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.main1 p {
  font-size: 16px;
  margin-bottom: 20px;
}

.main1 ol {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 15px;
}

#formdata {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

#formdata label {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

#formdata input,
#formdata select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  transition: 0.2s;
}

#formdata input:focus,
#formdata select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 5px rgba(25, 118, 210, 0.4);
}

#formdata button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background-color: #1976d2;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#formdata button:hover {
  background-color: #0d47a1;
  transform: scale(1.02);
}

#whatsappbtn {
  margin-top: 20px;
  text-align: center;
}

#whatsappbtn button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

#whatsappbtn button:hover {
  background-color: #1da851;
  transform: scale(1.05);
}

/* =============================
   FOOTER SECTION
============================= */
.footer__container {
  background-color: #0d47a1;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  padding: 50px 5%;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.footer__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2
}