#main {
    padding: 60px 0;
}

.section-padding {
    padding: 60px 0;
}
#logo {
  animation: floatLogo 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

#contact-section {
  margin: 20px 0;
  min-height: 400px;
}

.mh-section{
  min-height: 500px;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-link, header-link:visited, header-link:hover {
  text-decoration: none;
  color: #000;
}