
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}
/* Hero Section */
.hero-section .hero-img {
  max-width: 100%;
  object-fit: cover;
}

/* Quick Contact Cards */
.contact-quick .row {
  display: flex;
  flex-wrap: wrap;
  /* gap: 1.5rem; */
}

.contact-quick .col-md-4 {
  display: flex;
}

.contact-quick .contact-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
 background: #e0f7fa;
  text-decoration: none;
  color: #1e2a35;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  min-height: 280px; /* ensures minimum height */
}

.contact-quick .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-quick .contact-card i {
  color: #0d6efd;
}

.contact-quick .contact-card h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-quick .contact-card p {
  font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .contact-quick .col-md-4 {
    flex: 0 0 100%;
  }
}

/* Contact Form */
.contact-quick {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.contact-form .form-label {
  font-weight: 500;
}

.contact-form .btn-primary {
  background: #0d6efd;
  border: none;
}

.contact-form .btn-primary:hover {
  background: #0056b3;
}
.contact-section{
 background-color: #ffffff;
}
/* Map */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .hero-section h2,
  .hero-section h1,
  .hero-section p {
    text-align: center;
  }

  .contact-quick .contact-card {
    text-align: center;
  }

  .contact-form,
  .map-container {
    margin-bottom: 20px;
  }
}
