/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
}

.container.nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
  font-size: 20px;
  width: 170px;
  height: auto;
  font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* ================= DROPDOWN ================= */

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #f5f1e9;
    width: 230px;
    padding: 15px 0;
    display: none;
    list-style: none;   /* remove dots */
    margin: 0;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    color: #333;
    font-size: 14px;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* + to - toggle */
.icon::after {
    content: "+";
}

.dropdown:hover .icon::after {
    content: "-";
}

.icon {
    margin-left: 5px;
}

/* ================= CONTACT HERO ================= */

.contact-hero {
    height: 450px;
    background: url("../images/contact-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
}

.contact-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.contact-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 16px;
}

.contact-wrapper {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-container {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 60px;
}

/* LEFT CARD */
.contact-left {
    width: 380px;
    padding: 45px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(180deg, #1e2eb8, #2ea3f2);
}

.small-text {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-circle i {
    color: #1e2eb8;
    font-size: 18px;
}

.contact-item h4 {
    margin: 0;
    font-size: 16px;
}

.contact-item p {
    margin: 5px 0;
    font-size: 14px;
}

/* RIGHT FORM */
.contact-right {
    flex: 1;
}

.form-small {
    font-size: 14px;
    color: #1e2eb8;
    margin-bottom: 10px;
}

.contact-right h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

input, select {
    flex: 1;
    padding: 15px;
    border: none;
    background: #ffffff;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: none;
    background: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 30px;
    resize: none;
}

buttons {
    padding: 14px 40px;
    background: linear-gradient(90deg, #1e2eb8, #2ea3f2);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* FULL WIDTH MAP EXACT LIKE IMAGE */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 500px;   
    border: 0;
    display: block;
}

/* faq */
.faq-section {
  background: #f5f7fb;
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
}

.faq-top {
  text-align: center;
  margin-bottom: 60px;
}

.faq-top span {
  background: #e6efff;
  color: #2a5bd7;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.faq-container {
  display: flex;
  gap: 60px;
}

.faq-column {
  flex: 1;
}

.faq-column h2 {
  color: #1c2d6b;
  font-size: 28px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin: 0;
  width: 85%;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background: #1c2d6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 15px;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.contact-section {
  background: linear-gradient(135deg, #1d2ed8, #3b82f6);
  padding: 90px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-top {
  margin-bottom: 25px;
}

.contact-top span {
  background: #03228f;
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.contact-heading {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 1100px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 18px 20px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  outline: none;
}

textarea {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  margin-bottom: 40px;
  resize: none;
  height: 140px;
  outline: none;
}

.submit-wrapper {
  text-align: center;
}

.submit-wrapper button {
  background: linear-gradient(135deg, #4f46e5, #60a5fa);
  color: #fff;
  border: none;
  padding: 14px 45px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-wrapper button:hover {
  opacity: 0.9;
}



.contact-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    #1e3a8a 0%,
    #1e3a8a 50%,
    #ffffff 50%,
    #ffffff 100%
  );
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header span {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
}

.contact-header h2 {
  color: #ffffff;
  font-size: 34px;
  margin-top: 10px;
}

.contact-container {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.video-box {
  position: relative;
  flex: 1;
}

.video-box img {
  width: 100%;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-btn i {
  color: #ffffff;
  font-size: 26px;
}

.contact-forms {
  flex: 1;
  background: #f3efe6;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-forms input,
.contact-forms textarea {
    width: 100%;
    padding:14px;
    margin-bottom: 15px;
  background:#ffffff;   /* white */
  border-radius: 6px;
}

.contact-forms textarea {
  height: 120px;
}

.contact-forms button {
  background: #1e3a8a;
  color: #f3efe6; /*light cream */
  border: none;
  padding: 14px 25px;
  border-radius: 6px;
  cursor: pointer;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.video-content {
  width: 80%;
  margin: auto;
  position: relative;
}

.video-content iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

@media(max-width: 992px){
  .contact-container {
    flex-direction: column;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 20px;
}

/* Make textarea full width */
.contact-form-grid textarea {
  grid-column: span 2;   /* takes both columns */
  height: 150px;
}

/* Make button full width */
.contact-form-grid button {
  grid-column: span 2;
}