/* Global Styles */
/* body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f8fb;
  color: #1a1a1a;
  line-height: 1.6;
} */

a {
  color: #0077cc;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 600;
  font-size: 1.5rem;
  color: #102a43;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  font-weight: 500;
  color: #333;
}
.nav-links li a.active {
  color: #0077cc;
}

/* Hero */
/* Hero */
.hero {
  background-color: #0d1a2d;
  color: #ffffff;
  /* padding: 80px 20px 60px; */
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  color: #d6e2f0;
}

/* Reasons */
.reasons {
  background: #ffffff;
  /* padding: 60px 20px; */
}

.reasons h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #0d1a2d;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.reason-item {
  background: #f5f9ff;
  border: 1px solid #d9e6f2;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: background 0.3s ease;
  min-height: 100px;
  width: 100%;
}

.reason-item:hover {
  background: #eaf4ff;
}

.reason-item .icon {
  font-size: 1.5rem;
  color: #0077cc;
}

.reason-item .label {
  font-size: 1rem;
  font-weight: 500;
  color: #102a43;
}

.reasons-footer-message {
  margin-top: 40px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reasons-footer-message h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d1a2d;
  margin-bottom: 10px;
}

.reasons-footer-message p {
  font-size: 1rem;
  color: #556987;
  line-height: 1.6;
}

/* Expert */
.expert-section {
  background: #f0f4f8;
  text-align: center;
  padding: 30px 20px;
}
.expert-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

/* Form + Image Section */
.form-image-section .split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.image {
  flex: 1 1 45%;
}
.image img {
  width: 100%;
  border-radius: 10px;
}
.form {
  flex: 1 1 50%;
}
.form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
.basinIframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* Contact Details */
.contact-details {
  background: #12334d;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}
.contact-details h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.contact-details a {
  color: #90cdf4;
}

.contact-info-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}




.contact-info-section {
  background-color: #f0f6fc; /* light blue */
  color: #0d1a2d;
  padding: 40px 20px;
  text-align: left;
}

.contact-info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #003049; /* darker blue for emphasis */
}

.contact-info-box a {
  color: #003049;
  text-decoration: underline;
}

.contact-info-box a:hover {
  color: #0077cc;
}

.styled-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9fbfd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
}

.form-group {
  margin-bottom: 1.5rem;
}

.styled-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  color: #111827;
  transition: border-color 0.3s ease;
}

.styled-form input:focus,
.styled-form textarea:focus {
  border-color: #2563eb;
  outline: none;
}

.form-submit-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
  background-color: #1e40af;
}

.toast {
  /* position: fixed;
  bottom: 30px;
  right: 30px; */
  background-color: #ff4d4f;
  color: white;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: opacity 0.3s ease;
}
.toast.success {
  background-color: #28a745;
}
.toast.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  /* General typography adjustments */
  .reasons h2 {
    font-size: 1.5rem;
  }
  p, li, a {
    font-size: 1rem;
  }

  /* Container padding */
  .container {
    padding: 20px 15px;
  }

  /* Navbar: stack items */
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

  /* Hero section */
  .hero {
    padding: 40px 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Reasons grid → 1 column */
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Form + image section: stack vertically */
  .form-image-section .split {
    flex-direction: column;
    gap: 20px;
  }
  .image,
  .form {
    flex: 1 1 100%;
  }

  /* Contact info grid → 1 column */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Reduce padding in large sections */
  .reasons,
  .expert-section,
  .contact-details,
  .contact-info-section {
    padding: 30px 15px;
  }

  /* Make buttons and form inputs fit nicely */
  .form-submit-btn {
    width: 100%;
    text-align: center;
  }

  .container.split {
    flex-direction: column;
  }
  .form, 
  .image {
    width: 100%;
  }

  .form-wrapper {
  padding: 0px;
}

}

