body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden; /* horizontal scroll band karo */
}

.button {
  background: coral;
  padding: 1em 2em;
  color: #fff;
  border: 0;
}

.button:hover {
  background: #333;
}

/* =============================================
   MODAL — COMPLETELY FIXED
   Problems fixed:
   1. z-index: 1  →  99999  (page content bleed through fix)
   2. margin: 20% auto  →  3% auto  (modal too low fix)
   3. width: 70%  →  90% max-width 900px
   4. background grey  →  orange (#f26522)
   5. closeBtn colour  →  white
   6. Added proper header/footer/form styling
   ============================================= */

/* Full-screen dark backdrop */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;           /* ✅ FIX: was z-index:1 — sab kuch modal ke upar dikha raha tha */
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.75);  /* dark backdrop */
}

/* Modal box */
.modal-content {
  background: linear-gradient(135deg, #1a237e 0%, #4a148c 60%, #6a1b9a 100%); /* blue-purple gradient */
  margin: 30px auto;               /* ✅ FIX: was 20% auto — too far down */
  padding: 0;
  width: 90%;                      /* ✅ FIX: was 70% — too narrow */
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  animation-name: modalopen;
  animation-duration: 0.4s;
  overflow: hidden;
}

/* Header strip */
.modal-header {
  background-color: #e55a10;
  padding: 18px 30px 14px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  text-align: center;
  position: relative;
}

.modal-header h2 {
  color: #fff !important;
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}

/* Footer / body strip */
.modal-footer {
  background-color: #f26522;
  padding: 20px 28px 28px;
  text-align: left;
  border-top: none;
  overflow: hidden;   /* clearfix for floated columns */
}

.modal-footer h1 {
  color: #fff;
  font-size: 22px;
  margin-top: 0;
}

.modal-footer p,
.modal-footer label,
.modal-footer address,
.modal-footer .form-group {
  color: #fff;
}

/* Close button (×) */
.closeBtn {
  position: absolute;
  top: 10px;
  right: 18px;
  color: #fff;          /* ✅ FIX: was #ccc — barely visible */
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.closeBtn:hover,
.closeBtn:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/* Form inputs inside modal */
.overview {
  background-color: #fff;
  color: #333 !important;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 4px;
  width: 185px;
  font-size: 13px;
}

textarea.overview {
  width: 185px;
  height: 80px;
  resize: vertical;
}

select.overview {
  width: 200px;
}

.btn-border-w {
  background-color: #fff;
  color: #f26522;
  border: 2px solid #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.btn-border-w:hover {
  background-color: #f26522;
  color: #fff;
}

/* Logo in modal */
.modal-footer img {
  max-width: 150px;
  margin-bottom: 12px;
  display: block;
}

/* Body scroll lock when modal open */
body.modal-open-custom {
  overflow: hidden;
}

/* Modal open animation */
@keyframes modalopen {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive modal ---- */
@media (max-width: 767px) {
  .modal-content {
    width: 96%;
    margin: 10px auto;
  }
  .modal-footer .col-md-6 {
    width: 100%;
    float: none;
    margin-bottom: 16px;
  }
  .overview,
  textarea.overview,
  select.overview {
    width: 100% !important;
  }
}

/* =============================================
   GOOGLE MAP — responsive iframe fix
   (was width="1520" causing horizontal scroll)
   ============================================= */
#contact > div:first-child {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

#contact > div:first-child iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
