/* contact page section code */
.contact-section-page {
  padding: 50px 0px;
  background-color: #e3f2fd;
}

.contact-section-page .contact-card {
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
}

.contact-section-page .contact-card:hover {
  transform: translateY(-5px);
  background-color: #f0f8ff;
  /* light blue hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid black;
  background-color: rgb(11, 35, 90);
  color: white;
}

.contact-section-page .icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #070707;
  /* light background circle */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section-page .icon-circle img {
  width: 35px;
  height: 35px;
}

.contact-section-page .card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
}

.contact-section-page .card-text {
  font-size: 18px;
  line-height: 26px;
}

/* map address section code section */
.map-address-section {
  padding: 50px 0px;
  background-color: #070707;
}

.map-address-section .section-subtitle {
  color: white !important;
  margin-bottom: 50px;
}

.map-address-section .section-title {
  color: white !important;
}

.map-address-section iframe {
  border-radius: 12px;
}

.map-address-section .address-box {
  transition: 0.3s ease;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.map-address-section .address-box h5 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 7px;
}

.map-address-section .address-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px;
}

.map-address-section .address-box:hover {
  transform: translateY(-4px);
  background: #f0f8ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid rgb(11, 35, 90);
}

.map-address-section h3 {
  color: white;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media screen and (max-width: 575px) {
  .contact-section-page {
    padding: 28px 0px;
  }

  .contact-section-page .section-title p {
    width: 100%;
    margin-bottom: 23px;
  }

  .contact-section-page .icon-circle img {
    width: 30px;
    height: 30px;
  }

  .contact-section-page .icon-circle {
    width: 50px;
    height: 50px;
  }

  .contact-section-page .card-title {
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 34px;
  }

  .contact-section-page .card-text {
    font-size: 17px;
    line-height: 26px;
  }

  .contact-section-page .contact-card {
    padding: 15px 20px;
  }

  .map-address-section {
    padding: 28px 0px;
  }

  .map-address-section h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
  }

  .map-address-section .address-box h5 {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 7px;
  }

  .map-address-section .address-box {
    padding: 15px 20px;
  }

  .map-address-section .address-box p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 0px;
  }
}