.hero-section {
  min-height: 80vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.hero-image img {
  height: 50vh;
}

.hero-content {
  background-color: #031119;
  /* Optional dark bg for contrast */
  color: white;
}

@media (max-width: 991px) {
  .hero-image {
    display: none;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }
}

.contact_apply_sec {
  justify-content: center;
  display: flex;
  align-items: center;
  background-color: #20313b;
  height: 50vh;
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Zoom Out on Hover */
.zoom-out:hover {
  transform: scale(0.95);
}

/* Zoom In on Hover */
.zoom-in:hover {
  transform: scale(1.08);
}

/* Optional: Add a subtle shadow */
.btn:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}



.split-form {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
 
}

.split-form .image-side {
  flex: 1;
  background: linear-gradient(45deg, #20313b, #5c5532);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.split-form .form-side {
  flex: 1;
  padding: 3rem;
}

.split-form input {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border: none;
  border-bottom: 2px solid #eee;
  outline: none;
  transition: border-color 0.3s;
}

.split-form input:focus {
  border-bottom-color: darkorange;
}

.split-form button {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: #20313b;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
}

.split-form button:hover {
  transform: translateY(-2px);
}



/* Floating Labels Form */
.floating-form {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  color: white;
}

.floating-form .input-group {
  position: relative;
  margin: 2rem 0;
}

.floating-form input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-bottom: 2px solid #444;
  background: transparent;
  color: white;
  outline: none;
}

.floating-form label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  transition: 0.3s;
  pointer-events: none;
}

.floating-form input:focus ~ label,
.floating-form input:valid ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: #8b5cf6;
}

.floating-form input:focus {
  border-bottom-color: #8b5cf6;
}

.floating-form button {
  width: 100%;
  padding: 1rem;
  background: #8b5cf6;
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.floating-form button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.floating-form button:hover::after {
  width: 300px;
  height: 300px;
}

/* Card Flip Form */
.card-flip-container {
  perspective: 1000px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.card-flip {
  position: relative;
  width: 100%;
  height: 400px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-flip.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-back {
  background: linear-gradient(135deg, #1a1a1a, #20313b);
  color: white;
  transform: rotateY(180deg);
}

.card-flip input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.card-flip button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  border: none;
  border-radius: 5px;
  background: #031119;
  color: white;
  cursor: pointer;
}
