.about-hero {
  height: 70vh;              /* 👈 Less height (adjust: 30vh / 35vh / 40vh) */
  min-height: 250px;         /* Mobile ke liye safe */
  background: url("contact.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for better text visibility */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);  /* 👈 overlay darkness */
}

.about-hero-overlay {
  position: relative;  /* overlay ke upar text lane ke liye */
  text-align: center;
  color: #fff;
}

.about-hero-overlay h1 {
  font-size: 48px;
  margin: 0;
}

.about-hero-overlay p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}




.contact-header {
  padding: 100px 20px;
  
  color: #000;
  text-align: center;
}

.contact-header .container {
  max-width: 900px;
  margin: auto;
}

.contact-header h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-header p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Buttons */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-actions a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.5);
}

/* Call button */
.btn-call {
  background: #ffffff;
  color: #0560ab;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-header h1 {
    font-size: 25px;
  }
}



.contact-details {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0f7ff 0%, #eaf3fb 100%);
}

.contact-details .container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.contact-details .section-title {
  text-align: center;
  font-size: 38px;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-details .section-subtitle {
  text-align: center;
  color: #475569;
  margin-bottom: 70px;
  font-size: 16.5px;
}

/* Grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.detail-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid #e6f0fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* Icon */
.detail-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #0560ab; /* ✅ Brand color */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(5, 96, 171, 0.4);
}

/* Text */
.detail-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #0f172a;
}

.detail-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
}

/* Responsive */
@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
  .contact-details{
    padding: 80px 20px;
    margin-top: 5px;
  }

}



.reach-map {
  padding: 110px 20px;
  background: linear-gradient(180deg, #f0f7ff 0%, #eaf3fb 100%);
}

.reach-map .container {
  max-width: 1150px;
  margin: auto;
}

.reach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Left content */
.reach-content h2 {
  font-size: 40px;
  color: #0560ab; /* brand color */
  margin-bottom: 16px;
}

.reach-lead {
  font-size: 17px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
}

.reach-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Points */
.reach-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reach-point {
  font-size: 15.5px;
  color: #0f172a;
  font-weight: 600;
}

.reach-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.reach-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reach-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.reach-image-overlay h3 {
  margin: 0 0 8px;
}

.reach-image-overlay p {
  margin: 0;
  font-size: 0.95rem;
}


/* Responsive */
@media (max-width: 900px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }

  .reach-content {
    text-align: center;
  }
}
