/* Upper section Starts */
.contact-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 10px #444444;
}

.icon-box {
  background: #2d9b53;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.icon-box i {
  color: white;
  font-size: 28px;
}

.contact-card p {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
}
/* upper Section Ends */

/* Iframe start */
.iframe-div {
  margin-top: 50px;
}

.main-iframe {
  border-radius: 10px;
}
/* Iframe Ends */

/* Contact us start */
.Contact-Background {
  background: linear-gradient(to right, #f9fafb, #eef2f7);
}

.contact-form {
  background: #fff;
  border-radius: 15px;
  max-width: 450px;
}

.contact-form h3 {
  font-weight: 600;
  color: #333;
}

.contact-form .btn {
  border-radius: 25px;
  font-weight: 500;
  padding: 10px;
}

.Contact-us{
  padding-left: 75px;
}

#Typing-text {
  white-space: nowrap;
  min-height: 40px;
}

.animated-graphic-contact {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Contact us End */


@media (max-width: 768px) {
  .iframe-div {
    margin-top: 50px;
  }
  .Contact-us{
    padding: 0%;
  }
}