.contact-hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), 
              url('../assets/images/contact.jpg') no-repeat center center;
  background-size: cover;
}

.map-contact iframe{
  height: 600px;
}

.cta-section {
  background: var(--primary-gradient);
  color: #fff;
  padding: 80px 0px;
}

.cta-title {
  font-size: 2rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-buttons .btn-drk{
  background-color: #fff;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-buttons .btn-drk:hover {
  background: transparent;
  color: #fff;
   transform: translateY(-3px);
}


.problem__card__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  border-radius: 4px;
}

.problem__card__block:hover::before {
  transform: scaleY(1);
}



@media only screen and (max-width: 767px){
   .map-contact iframe{
  height: 300px;
} 
.cta-title {
  font-size: 1.2rem;
}
.cta-subtitle {
  font-size: .9rem;
}
}

/* ======== Contact Us page by anish ======== */




/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  .enviournmental-section {
	padding: 40px 0px;
}

}
/* ======== Contact Us page by anish ======== */