/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(
    rgba(15, 31, 68, 0.85),
    rgba(15, 31, 68, 0.85)
  ),
  url("../images/services.jpeg") center/cover no-repeat;

  color: #ffffff;
  padding: 140px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 24px;
  color: #e0a730;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 100px 20px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

   .page-banner p {
  font-size: 22px;
  
}
}



/* ================= CONTACT SECTION (AESTHETIC UPGRADE) ================= */

.contact-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* LEFT FORM CARD */
.contact-left {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-left h2 {
  font-size: 34px;
  color: #1f3c88;
  margin-bottom: 25px;
}

/* Inputs */
.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-left textarea {
  resize: none;
}

/* Focus effect */
.contact-left input:focus,
.contact-left textarea:focus {
  outline: none;
  border-color: #e0a730;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(224, 167, 48, 0.15);
}

/* Button */
.contact-left button {
  margin-top: 10px;
  background: linear-gradient(135deg, #e0a730, #ffbf45);
  color: #0f1f44;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-left button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 167, 48, 0.4);
}

/* RIGHT INFO CARD */
.contact-right {
  background: #0f1f44;
  padding: 40px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 31, 68, 0.4);
}

.contact-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-right p {
  color: #dddddd;
  font-size: 20px;
  margin-bottom: 25px;
}

/* Contact list */
.contact-right ul {
  list-style: none;
  padding: 0;
}

.contact-right ul li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

/* Links */
.contact-right a {
  color: #e0a730;
  font-weight: 600;
  text-decoration: none;
}

.contact-right a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .contact-left h2,
  .contact-right h2 {
    font-size: 26px;
    text-align: center;
  }

  .contact-left button {
    width: 100%;
  }

  .contact-right {
    text-align: center;
  }
}


