.contact-banner .overlay {
  background: rgba(255, 255, 255, 0.6); /* transparent white overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-banner h1 {
  font-size: 90px;
  font-weight: 500;
   color: #274186;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}





.contact-section {
 background: linear-gradient(to bottom, #e4f0fb 50%, #ffffff 50%);
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

/* Left Side */
.contact-info {
  /*flex: 1;*/
}

.contact-subtitle {
  color: #E6B122; 
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.4;
}

.contact-title span {
  color: #2b4ca4;
  font-weight: bold;
  font-size: 32px;

}


.contact-details {
  display: flex;
  align-items: center;
  gap: 30px; /* space between phone & email */
}

.contact-detail {
  font-size: 16px;
  color: #E9B938;
  margin: 0; /* remove extra margin */
  display: flex;
  align-items: center;
}

.contact-detail i {
  margin-right: 8px;
  color: #2e3a7b;
}

/* Location */
.location {
  margin-top: 140px;
}

.location h4 {
  color: #2e3a7b;
  font-size: 18px;
  margin-bottom: 10px;
}

.location p {
  font-size: 20px;
  color: #444;
  line-height: 1.5;
}

.location i {
  margin-right: 8px;
  color: #d4a017;
}

/* Right Form Card */
.contact-form-card {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Inputs */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 10px;
}

form textarea {
  border-radius: 6px;
}

/* Checkbox */
.checkbox {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 20px;
  text-align: left;
}

.checkbox input {
  margin-right: 8px;
}

.checkbox a {
  color: #2e3a7b;
    font-size: 14px;
  text-decoration: underline;
}

/* Button */
.send-btn {
  width: 100%;
  background: #d4a017;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.send-btn:hover {
  background: #b98c14;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}




/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}


.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2e3a7b;
  margin-top: 10px;
  line-height: 1.4;
}

.checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #E9B938; /* modern browsers */
  cursor: pointer;
}

.checkbox a {
  color: #E9B938;
  text-decoration: none;
  font-weight: 500;
}

.checkbox a:hover {
  text-decoration: underline;
}

/* Responsive (wraps nicely on small screens) */
@media (max-width: 600px) {
  .checkbox {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

