body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}


/* Navbar Hover Effect */
.navbar .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s;
  margin-left: 50px;
}
.navbar .nav-link:hover {
  color: #f97316;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .image-label {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 6px;
  }
}

/* Full width background */
.contact-wrapper {
  background: linear-gradient(135deg, #e8f5e9, #f9f9f9);
  padding: 70px 0;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #28a745, #218838);
}

.form-control,
.form-select {
  border-radius: 12px;
}
.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.2);
}
.input-group-text {
  background: #28a745;
  color: #fff;
  border-radius: 12px 0 0 12px;
}
.btn-submit {
  background: linear-gradient(90deg, #28a745, #218838);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.btn-submit:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #218838, #28a745);
  box-shadow: 0px 6px 18px rgba(40, 167, 69, 0.4);
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.info-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}
.info-box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}
