.main-section-background {
  background-image: url('../pages/images/Lets_Talk.svg');
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-card-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.contact-card-img:hover {
  transform: translateY(-6px);
}

.map-contact-wrapper {
  display: flex;
  width: 100%;
  max-width: 1600px;
  gap: 20px;
}

/* Default (Desktop) styles */
.map-container,
.contact-container {
  flex: 1;
  height: 600px;
}

.responsive-map {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .map-contact-wrapper {
    flex-direction: column;
  }

  .map-container,
  .contact-container {
    width: 100%;
  }


  .chatbot-box {
    height: 500px;
    /* 🔥 Also increase for mobile view */
  }
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
  .main-section-background {
    background-size: 80% auto;
    min-height: 50vh;
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .main-section-background {
    background-size: 90% auto;
    background-position: center;
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  #contactAgent {
    height: 600px !important;
    /* Increase this value as needed */
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ccc;
    overflow-y: auto;
    /* Allows scroll if content overflows */
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .contact-card-img {
    max-width: 90%;
  }
}

.gradient-heading {
  font-size: 3rem;
  /* adjust as needed */
  font-weight: 700;
  background: linear-gradient(to bottom, #53B1FF 34%, #326A99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

@media (max-width: 768px) {
  .gradient-heading {
    font-size: 2.5rem;
    /* margin-top: -20px; */
  }
}