    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
       margin: 0;
      padding: 0;
    
    }

/* start of the hero contact section*/
.section-contact {
  background: url('../images/contactimg.png') no-repeat center center;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.section-contact .container-fluid {
  position: relative;
  z-index: 2;
  height: 100%;
}

.section-contact h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  color: #fff;
}


.section-contact p.lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #f3f3f3;
}

.custom-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.custom-underline::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}


@media (max-width: 768px) {
  .section-contact h1 {
    font-size: 2rem;
    text-align: left;
  }

  .section-contact p.lead {
    text-align: left;
  }
  .section-contact {
  min-height: 50vh;

}
}

@media (max-width: 968px) {
      .section-contact {
  min-height: 50vh;

}

}

/* End of the hero contact section*/

/* start of the first contact section*/
  .contact-info-section {
      background-color: #faf8f2;
      padding: 4rem 0;
    }

    .info-card {
      border: 1px solid #e3aa32;
      border-radius: 6px;
      padding: 2rem 1rem;
      text-align: center;
      transition: 0.3s;
      background-color: #fff;
      height: 100%;
    }

    .info-card.highlight {
      background-color: #e3aa32;
      color: #fff;
      border: none;
    }

    .info-card i {
      font-size: 2rem;
      color: #e3aa32;
      margin-bottom: 1rem;
    }

    .info-card.highlight i,
    .info-card.highlight h5,
    .info-card.highlight p {
      color: #fff !important;
    }

    .info-card h5 {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      color: #e3aa32;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .info-card p {
      margin-bottom: 0;
      color: #555;
      font-family: 'Roboto', sans-serif;
      font-size: 0.95rem;
    }

    @media (max-width: 767.98px) {
      .info-card {
        padding: 2rem 1.5rem;
      }
    }
 /* End of the first contact section*/

 .contact-map-section {
  background-color: white;
  font-family: 'Roboto', sans-serif;
}

.contact-map-section .map-wrapper iframe  {
  width: 100%;
  height: 520px;
}

.contact-form .form-control {
  border-radius: 6px;
  background-color: #f4f4f4;
  border: none;
  padding: 15px;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn-yellow {
  background-color: #e3aa32;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-yellow:hover {
  background-color: #c9921f;
  color: #fff;
}

@media (max-width: 991.98px) {
  .contact-map-section {
    text-align: center;
  }

  .contact-form .btn-block {
    width: 100%;
  }
}

/* start of form styling*/

.contact-forme {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact-forme:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.contact-forme .form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  font-size: 15px;
  background-color: #fafafa;
  color: #333;
}

.contact-forme .form-control:focus {
  border-color: #e0a524;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(224,165,36,0.4);
  outline: none;
  transform: scale(1.02);
}


.contact-forme .form-control::placeholder {
  color: #aaa;
  transition: color 0.3s ease;
}

.contact-forme .form-control:focus::placeholder {
  color: #e0a524;
}


.contact-forme textarea.form-control {
  resize: none;
}


.btn-yellow {
  background-color: #e0a524;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

.btn-yellow:hover {
  background-color: #cf9520;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(224,165,36,0.4);
}

.btn-yellow:focus {
  outline: none !important;
  box-shadow: none !important;
}


@media (max-width: 768px) {
  .contact-forme {
    padding: 25px 20px;
  }
  .contact-forme .btn-yellow {
    font-size: 15px;
  }
}


.contact-form {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* End of form styling*/