/* -------- Contact Hero Section -------- */
.contact-hero-section {
  position: relative;
  min-height: 40vh;  /* Minimum height 40vh */
  display: grid;
  place-items: center;
  padding: 0 16px;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Background image */
.contact-hero-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bluecon1.jpg');  /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Overlay for darkening the background */
.contact-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Container for content */
.contact-hero-section__container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Heading Style */
.contact-hero-section__title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  margin: 0;
  color: #fff;
}

/* Subtitle Style */
.contact-hero-section__subtitle {
  font-size: clamp(14px, 2.2vw, 18px);
  margin-top: 10px;
  color: #f0f0f0;
}

/* Call to Action Button */
.contact-hero-section__cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0b77bb, #05b9d3);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-hero-section__cta-btn:hover {
  background: linear-gradient(135deg, #05b9d3, #0b77bb);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-hero-section__title {
    font-size: clamp(24px, 8vw, 32px);
  }
  .contact-hero-section__subtitle {
    font-size: clamp(14px, 4vw, 16px);
  }
}




/* -------- Contact Section 1 -------- */
.contact-section-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f4f4f4;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  text-align: center; /* Centers the text */
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center the form */
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-options label {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.submit-btn {
  background-color: #0b77bb;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0b77bb;
}

.contact-info {
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.contact-details {
  margin-top: 20px;
}

.contact-details a {
  color: #0b77bb;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section-1 {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
    text-align: center; /* Align content to center for smaller screens */
  }

  .contact-form-container {
    width: 90%;
  }

  .contact-info {
    width: 90%;
  }
}


/* contact map css */
.contact-map {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.contact-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-map-title {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}

.contact-map-description {
  color: #555;
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-map-embed iframe {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-map-info {
  margin-top: 30px;
  color: #333;
}

.contact-map-info p {
  font-size: 18px;
  color: #555;
}

.contact-map-info strong {
  font-size: 20px;
  color: #0b77bb;
}

@media (max-width: 768px) {
  .contact-map {
    padding: 40px 20px;
  }
  
  .contact-map-title {
    font-size: 28px;
  }
  
  .contact-map-description {
    font-size: 16px;
  }
  
  .contact-map-info p {
    font-size: 16px;
  }
}


/* section 2 css */
.contact-section-2 {
  padding: 60px 20px;
  background-color: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.contact-section-2-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section-2-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1222;
  margin-bottom: 20px;
}

.contact-section-2-subtitle {
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-section-2-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.contact-section-2-item {
  background: #ffffff;
  border: 1px solid #e6e7f2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-section-2-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-section-2-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-section-2-item-content {
  color: #555;
  font-size: 16px;
}

.contact-section-2-item-link {
  color: #0b77bb;
  text-decoration: none;
  font-weight: 600;
}

.contact-section-2-item-link:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .contact-section-2-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-section-2-details {
    grid-template-columns: 1fr;
  }
}

