
/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

#back-to-top a {
  font-size: 5rem;
  color: #777;
  text-decoration: none;
}
.heading{
  margin-left: 0
}
.hero2{
  
  width:100%;
  height:200px;;
  padding: 0;
  display: grid;
  place-content: center;
  
}
.hero-content{
  width:fit-content;
  margin-left: 0;
  
}
.hero-content h1{
  width:fit-content;
  
}
.contact-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
}

.contact-info,.contact-form {
      flex: 1 1 45%;
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info h2,.contact-form h2 {
      color: #2c3e50;
      margin-bottom: 1rem;
}
#dets{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  
}
#dets a{
  text-decoration: none;
  color:inherit;
}
.contact-info p {
      margin: 0.5rem 0;
      font-size: 1.2rem;
}

.contact-info i {
      color: #2980b9;
      margin-right: 0.75rem;
      width: 20px;
      text-align: center;
}
.contact-info img {
      width:100%;
  border-radius: 8px;
}
    form {
      display: flex;
      flex-direction: column;
}

    form label {
      margin-top: 1rem;
      font-weight: bold;
}

    form input, form textarea {
      padding: 0.75rem;
      margin-top: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
}

    form textarea {
      resize: vertical;
      min-height: 120px;
}

    form button {
      margin-top: 1.5rem;
      padding: 0.75rem;
      background-color: #2980b9;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

    form button:hover {
      background-color: #1c5980;
}

    @media (max-width: 768px) {
      header{
    height: auto;
  }
.contact-container {
        flex-direction: column;
        padding: 1rem;
}
      #dets{
        display: block;
      }
      #dets p{
        margin-bottom: 15px;
      }

.contact-info,.contact-form {
        flex: 1 1 100%;
}
}

