html {
  scroll-behavior: smooth;
}

/* Remove full-height from all sections */
.hero {
  min-height: 100vh;
}

.logo {
  height: 40px;
  width: auto;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom-btn {
  background-color: #007BFF; /* Vibrant blue */
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.custom-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 18px rgba(0, 86, 179, 0.5);
  color: white;
  text-decoration: none;
}


.feature-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.feature-card i {
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  animation: bounce 1s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

.about-img {
  border-radius: 10px;
}

.services-img {
  border-radius: 10px;
}
