
.contact-section{
  position: relative;
  background:linear-gradient(95deg, #acf5b1, #aee8ff);
}

.contact-card {
  background: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 0;
  height: 180px;
  margin-bottom: 20px;
  box-shadow: 0px 8px 12px -7px #00000042;
  transition: 0.3s all ease-in-out;
}
.contact-icon {
  font-size: 40px;
  color: #41a2f3;
  transition: 0.3s all ease-in-out;
  margin-bottom: 10px;
}
.contact-card h5 {
  font-weight: bold;
  transition: 0.3s all ease-in-out;
  margin-bottom: 10px;
}
.contact-card p, 
.contact-card a {
  margin: 0;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.contact-card a:hover {
  text-decoration: underline;
  color: #6dd1e8;
}
.contact-card:hover{
  box-shadow: none;
  background:#41a2f3;
  color: #fff;
}
.contact-card:hover .contact-icon, .contact-card:hover p {
  color: #fff;
}
.dark-bg {
  background-color: #1e1e25;
  padding: 50px 0;
}
.contact-form-inner button {
  background: linear-gradient(90deg, #0db30a 0%, #14a4db 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}
.contact-form-inner button:hover {
   color: #fff;
  background: linear-gradient(90deg, #14a4db 0%, #0db30a 100%);
}
.form-control{
  border: 1px solid #619ffc ;
}
.form-control:focus{
  box-shadow: none;
  border-color: #080808;
}

.floating-group { position: relative; }
.floating-group .form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-size: 16px;
  color: #000000;
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 2;
}

.floating-group .form-control::placeholder { opacity: 0; }

.floating-group:focus-within .form-label {
  top: -0.6rem;
  transform: none;
  font-size: 12px;
  color: #2563eb;
}

.floating-group:has(.form-control:not(:placeholder-shown)) .form-label {
  top: -0.6rem;
  transform: none;
  font-size: 12px;
  color: #0d9e00;
}
