 .main-section-background {
   
   background-repeat: no-repeat;
   background-size: 70% auto;
   background-position: center;
   min-height: 80vh;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 1;
 }
  .gradient-heading {
   font-size: 3rem;
   font-weight: 600;
   line-height: 2;
   background: linear-gradient(to bottom, #53b1ff 50%, #00539f 95%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
 }
  .gradient-heading-blue-1 {
  font-size: 1.7rem;
  /* Increase font size as needed */
  font-weight: 300;
  background: linear-gradient(to top, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.unique-card-container {
  border-radius: 20px;
}

.unique-left-section {
  background-color: #276591;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  min-height: 250px;
}

.unique-right-section {
  background-color: #fde8cd;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 250px;
}

/* Replace this div with <img class="img-fluid w-100 h-100 object-fit-cover"> if needed */

.unique-arrow-icon {
  width: 36px;
  height: 36px;
  background-color: #fe46ac;
  border-radius: 50%;
  font-size: 1.2rem;
}




.unique-filter-btn {
  background-color: #196ba7;
  border: 2px solid transparent;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.unique-filter-btn:hover,
.unique-filter-btn.active {
  background-color: #ffffff;
  color: #196ba7;
  border: 2px solid #196ba7;
}

/* Fade animation for entire row */
.fade-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-wrapper.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.gradient-text {
  line-height: normal;
  font-weight: 300;
  background: linear-gradient(to bottom, #53B1FF 34%, #326A99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-heading {
  font-size: 40px;
  font-weight: 600;
  /* semibold */
}

.gradient-heading-blue {
  font-size: 25px;
  /* Increase font size as needed */
  font-weight: 600;
  background: linear-gradient(to bottom, #53b1ff 34%, #326a99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  .container.my-5 .col-md-6 {
    margin-top: 60px !important;
  }

  @media (max-width: 600px) {
    .move-up-on-mobile {
      margin-top: -10px;
      margin-bottom: 2rem;
    }
  }

  .main-section-background {
    min-height: 50vh;
  }
}

@media (max-width: 600px) {
  .move-up-on-mobile {
    margin-top: -10px;
    margin-bottom: 2rem;
  }
}


@media (max-width: 480px) {
  .main-section-background {
    background-size: 100%;
    min-height: 70vh;
  }
  .gradient-heading{
    text-align: center;
  }
  
}