* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 30px 20px 30px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/reg-background.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.6; /* Adjust this value */
  z-index: -1;
}

/* .hero-content-header { */
  /* position: relative; */
  /* text-align: center; */
  /* color: #000; */
  /* position: relative; */
  /* z-index: 1; */
  /* padding: 16px 10px 16px 10px; */
  /* Values: Top-Left, Top-Right, Bottom-Right, Bottom-Left */
  /* border-radius: 50px; */
  /* background-color: rgba(255, 255, 255, 0.4); */
  /* let border fit content */
  /* display: inline-block; */
  /* width: fit-content; */
  /* for center */
  /* margin: 0 auto; */
  /* display: block; */
  /* upper case */
  /* text-transform: uppercase; */

  /* text design */
  /* font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
} */

.hero-content-header {
  text-align: center;
  color: #001776; /* deep navy instead of black */
  z-index: 1;

  padding: 14px 20px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);

  width: fit-content;
  margin: 0 auto;

  text-transform: uppercase;

  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  margin-bottom: 20px;
}

.hero-content-p {
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
  /* padding: 5px; */
  /* padding: 16px 10px 16px 10px; */
  /* let border fit content */
  display: inline-block;
  width: fit-content;
  /* for center */
  margin: 0 auto;
  display: block;

  /* text design */
  font-size: 0.9rem;
  font-weight: 600;
  /* margin-bottom: 10px; */
}

/* .hero-content-p {
  text-align: center;
  color: #334155; softer than black

  z-index: 1;

  padding: 12px 18px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.6);

  width: fit-content;
  margin: 10px auto 18px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
} */

/* Style the Submit button */
.submit {
  background-color: #001776;
  color: white;
  padding: 10px 20px;
  border: none;
  /* Pill shape */
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  /* POSITIONING IT OUTSIDE */
  /* position: absolute; */
  /* Moves it halfway outside the bottom */
  /* bottom: -60px; */
  /* Aligns to the right side */
  /* right: 10px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.submit:hover {
  background-color: #000c54;
  transform: translateY(2px);
  transition: 0.3s;
}

.submit:disabled{
  background-color: #d73925;
  cursor: not-allowed;
  transition: all 0.2s ease-in-out;
}

/* Form Styles */
/* form { */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 12px; */
  /* width: 90%; */
  /* max-width: 500px; */
   /* center horizontally */
  /* margin: 0 auto;              */
  /* padding: 20px; */
  /* border: 2px solid #ffffff;   form border */
  /* border-radius: 50px; */
/* transparent background */
  /* background: rgba(255, 255, 255, 0.5);     
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
} */

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 24px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.85);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

/* input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: white;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
} */
 input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;

  border: 1px solid #d6deee;
  background-color: #f8fbff;

  font-size: 14px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;

  color: #0f172a;

  transition: all 0.2s ease;
}

input:hover,
textarea:hover {
  border-color: #b8c7e6;
  background: #fbfdff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #1d4ed8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

.form-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.form-row input {
  flex: 1;
}

button {
  background-color: #1a0066;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

/* Side-by-side logo container */
.badge-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.whatsapp-badge {
  margin-top: 10px;
}

.whatsapp-img {
  height: 120px;
  width: auto;
  max-width: 100%;
}

/* Header & Nav styles if needed */
.top-bar {
  background: #ffffff;
  padding: 8px 30px;
  font-size: 13px;
  text-align: right;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo span {
  font-weight: 800;
  font-size: 22px;
  color: #2c2c8f;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  padding: 8px 0;
}

nav a:hover {
  color: #2c2c8f;
}

nav a.active {
  color: #d73925;
  font-weight: 800;
  border-bottom: 3px solid #d73925;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
}

.mobile-nav a {
  padding: 10px 0;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.mobile-nav a.active {
  color: #d73925;
  font-weight: 800;
  border-bottom: 3px solid #d73925;
}

/* Responsive header */
@media (max-width: 768px) {
  .top-bar {
    padding: 5px 15px;
    font-size: 11px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo span {
    font-size: 18px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    padding: 15px;
    font-size: 16px;
  }
}

/* -------------------- MOBILE HERO FIX -------------------- */
@media (max-width: 1200px) {
    .hero-section {
    padding: 16px 0 24px 0 !important;
    min-height: auto !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative !important;
  }

  .hero-content-header {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    color: #001776 !important;
    text-shadow: none !important;
  }

  .hero-content-p {
    font-size: 13px !important;
    color: #222 !important;
    text-shadow: none !important;
  }

  input,
  textarea {
    font-size: 1rem !important;
    padding: 16px 12px !important;
    border-radius: 7px !important;
    margin-bottom: 10px !important;
  }
  .form-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  button[type="submit"] {
    font-size: 1rem !important;
    padding: 16px !important;
    margin-top: 14px !important;
    border-radius: 7px !important;
    width: 100% !important;
    box-shadow: 0 2px 6px rgba(26, 0, 102, 0.1);
  }

}