* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  /* background-color: yellow; */
  height: 100%;

}



.outer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.merge {
  position: relative;
  top: -90%;
  padding: 0px 10px;
}

.left-div {

  padding: 1%;
  height: 100%;

}

.right-div {

  height: 100%;
}



.left-upper {
  height: 95vh;
}

.left-bottom {
  margin-top: 20%;
}

.left-middle {

  margin-top: 1%;
  text-align: justify;


  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.service-img {
  width: 100%;
  height: 100%;
}



.bottom-1,
.bottom-2,
.bottom-3 {
  margin-top: 20px;
}

.heading {
  display: inline-block;
  text-align: center;
  font-weight: bold;
}

.description {
  margin-top: 15px;
  border-top: 1px solid #fff;
}

.heading,
.description {
  color: #fff;
}

.image-container {
  height: 100%;
}







.left-upper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Black with 50% opacity */
  z-index: 1;
}

.merge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /* ensures it sits above the overlay */
  width: 100%;
  padding: 20px;
  color: white;
  /* Optional: for visibility over dark overlay */
}


.apply-btn-for-mobile {
  display: none;
}























/*ANIMATIONS*/

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s ease forwards;
}

/* Keyframes */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}























/*================ FORM CSS START ===================*/


.form-section {
  display: grid;
  grid-template-columns: 1fr;

}



h2 {
  text-align: center;
  background: linear-gradient(to right, rgb(243, 32, 0), yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.apply-now-heading {
  margin-bottom: 10px;
}

.right-section {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7); */
  margin: 15px;
  padding: 15px;
  height: 100%;
  border-radius: 6px;

  background-color: #fff;
}

#applyForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

select {
  padding: 10px;
  border: none;
  border-bottom: solid 1px rgb(69, 69, 255);
  margin-top: 5px;
}

input {
  padding: 10px;
  border: none;
  border-bottom: solid 1px rgb(69, 69, 255);
  margin-top: 5px;
}

.apply-now-button {
  padding: 8px;
  cursor: pointer;
  color: white;
  border: none;
  background: linear-gradient(to right, rgb(243, 32, 0), yellow);
  border-radius: 100px;
  margin-top: 15px;
  transition: 0.15s;
}

.apply-now-button:hover {
  opacity: 0.9;
}


/*================ FORM CSS FINISH ===================*/


@media(max-width: 786px) {


  .outer-wrapper {
    grid-template-columns: 1fr;
  }

  .left-div {
    padding: 1%;
    height: 100vh;
  }

  .apply-btn-for-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30%;
  }

  .apply-link {
    width: 90%;
  }

  .apply-btn {
    padding: 10px;
    width: 90%;
    border: none;
    background: linear-gradient(to right, rgb(243, 32, 0), yellow);
  }
}