/*start header section*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/headerabout.jpg ");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  text-shadow: 2px 2px 8px #000000;
}

.hero-text p {
  margin: 0;
  font-weight: 700;
}
/*end header section*/

@media only screen and (max-width: 992px) {
  .mediaa {
    flex-direction: column-reverse !important;
  }
  .mtt {
    margin-bottom: 30px;
  }
  .hero {
    height: 60vh;
  }
  .item1 {
    margin-top: 20px;
  }
  .item2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .item3 {
    margin-top: 20px;
  }
  .item4 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .item5 {
    margin-top: 20px;
  }
  .item6 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
/*end media query for about page*/
/*Start connect with us section*/
:root {
  --primary-color: #4158d0;
  --gradient-color: linear-gradient(
    43deg,
    #f1f1f1 0%,
    #1a4d2e 46%,
    #182719 100%
  );
}
.contact-info i {
  color: var(--primary-color);
  width: 30px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.contact-form,
.contact-details {
  background: #182719;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.contact-form:hover,
.contact-details:hover {
  transform: translateY(-5px);
}

.section-title {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-bottom: 2rem;
}

.form-control {
  border: 2px solid #eee;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(65, 88, 208, 0.1);
}

.btn-primary {
  background: var(--gradient-color);
  border: none;
  padding: 12px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 88, 208, 0.3);
}

.contact-info p {
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  background: rgba(65, 88, 208, 0.1);
  transform: translateX(-5px);
}

iframe {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

iframe:hover {
  transform: scale(1.02);
}
