.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section .container {
  max-width: 1200px;
  margin: auto;
}

.contact-section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box i {
  font-size: 30px;
  color: #004080;
  margin-bottom: 15px;
}

.contact-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-box p {
  font-size: 1rem;
  color: #444;
}

.contact-box a {
  color: #004080;
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 1.5rem;
  }
  .contact-box p {
    font-size: 0.95rem;
  }
}
/* contact-us-css-ends-here */

/* map-and-form-section-starts-here */
/* map-and-form-section-starts-here */
.contact-form-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.map {
  flex: 1 1 45%;
}

.inquiry-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  font-family: var(--font-body, sans-serif);
}

.inquiry-form h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--primary-color, #004080);
  border-bottom: 2px solid var(--primary-color, #004080);
  padding-bottom: 10px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  flex: 1 1 45%;
  min-width: 120px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color, #004080);
  outline: none;
}

.form-group.full-width {
  flex-direction: column;
}

.form-group.full-width input,
.form-group.full-width select {
  flex: 1 1 100%;
}

.inquiry-form label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

.inquiry-form button {
  background: var(--primary-color, #004080);
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
  width: 100%;
}

.inquiry-form button:hover {
  background: #003366;
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group input,
  .form-group select {
    flex: 1 1 100%;
  }

  .inquiry-form h2 {
    font-size: 1.5rem;
  }
}

/* map-and-form-section-ends-here */

/* map-and-form-section-ends-here */
/* hero-banner-section-css-starts-here */

.about-section {
  background: linear-gradient(
    to bottom right,
    #0d1a2b,
    #12295a
  ); /* actual color codes */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about-container h1 span {
  color: #ffffff;
}

.about-container h1 strong {
  color: var(--primary-color);
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
  font-family: var(--font-body);
}

.about-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.primary-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
}

.primary-btn:hover {
  background-color: #0041a8; /* slightly darker shade of primary */
}

.secondary-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.secondary-btn:hover {
  color: #d1d5db;
  border-color: #d1d5db;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-container h1 {
    font-size: 2rem;
  }

  .about-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-container h1 {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* hero-banner-section-css-ends-here */
