 * {
   box-sizing: border-box;
 }

 h1 {
   font-size: 33px;
   font-weight: 800;
   margin-bottom: 30px;
   text-align: center;
   max-width: 400px;
   width: 100%;
 }

 .swiper-button-next,
 .swiper-button-prev {
   svg {
     display: none !important
   }
 }

 body {
   margin: 0;

   background-image: url('../images/splash-body.png');
   color: white;
   background-attachment: fixed;
   height: 100vh;
   overflow-x: hidden;
   background-repeat: no-repeat;
   background-size: cover;
 }

 /* ===== Initial Centered View ===== */
 .screen-center {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   height: auto;
   flex-direction: column;
   transition: all 0.8s ease;
 }

 .logo-wrapper {
   transform: scale(0);
   animation: logoAnim 3s ease forwards;
   /* transition: all 0.8s ease; */
 }

 .main-wrap-containers {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

 .latest-logo {
  padding-bottom: 30px;
  transform: scale(0);
  animation: growAnim 1s ease forwards;
 }

@keyframes growAnim {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

 .logo-wrapper.show {
   transform: scale(1);
 }

 .logo {
   height: 80px;
   object-fit: contain;
 }

 .form-wrapper {
   margin-top: 30px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(30px);
   transition: all 0.8s ease;
   /* width: 100%;
   padding-left:30px; */
 }

 .form-wrapper.show {
   visibility: visible;
   opacity: 1;
   transform: translateY(0);
 }

 .form-wrapper .form-section {
   max-width: 400px;
   width: 100%;
 }

 .form-section h1 {
   font-size: 33px;
   font-weight: 800;
   margin-bottom: 20px;
   text-align: center;
   max-width: 500px;
   width: 100%;
 }

 .form-group {
   margin-bottom: 15px;
 }

 .form-group label {
   display: block;
   margin-bottom: 6px;
   font-weight: 500;
 }

 .form-group input {
   width: 100%;
   height: 54px;
   padding: 0 10px;
   border: none;
   border-radius: 4px;
   font-size: 16px;
   background-color: #F4F4F4;
 }

 .bt-wrap {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .bt-wrap a {
   color: #fff;
   text-decoration: underline;
 }

 .btn {
   margin-top: 20px;
   height: 54px;
   background-color: #00c6a2;
   color: white;
   border-radius: 30px;
   font-size: 16px;
   cursor: pointer;
   min-width: 116px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   border: none;
 }

 /* ===== Final 50-50 Layout ===== */
 .full-layout {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: flex-start;
   flex-wrap: wrap;
   /* margin-top: 50px; */
   padding: 0;
   gap: 0;
   /* border: 1px solid red; */
 }

 .full-layout::-webkit-scrollbar {
  display: none;
 }

 .form-wrapper-left,
 .carousel-section {
   width: 50%;
   height: 100%;
   padding: 60px;
   padding-top: 0;
   box-sizing: border-box;
 }

 .carousel-section {
   padding-right: 0;
 }

 .carousel-section {
   padding-left: 0;
 }

 .mySwiper {
   width: 100%;
 }

 .swiper-wrapper {
   width: 100%;
 }

 .swiper-slide {
   flex-shrink: 0;
   width: auto;
   /* Important for fractional slides like 2.5 */
 }

 .form-wrapper-left {
   display: flex;
   align-items: center;
   visibility: hidden;
   opacity: 0;
   transform: translateY(200px);
   /* start lower */
   transition: all 1.2s ease;
 }

 .form-wrapper-left.visible {
   visibility: visible;
   opacity: 1;
   transform: translateY(0);
   /* slide up into place */
 }

 .carousel-section {
   display: flex;
   flex-direction: column;
   justify-content: center;
   opacity: 0;
   transform: translateX(100%);
   transition: all 0.6s ease;
 }

 .carousel-section.show {
   opacity: 1;
   transform: translateX(0);
 }

 .carousel-section h1 {
   font-size: 33px;
   font-weight: 800;
   margin-bottom: 20px;
   max-width: 500px;
   margin-left: auto;
   margin-right: auto;
 }

 .swiper {
   padding: 20px 0;
 }

 .swiper-slide {
   background: white;
   border-radius: 8px;
   color: #000;
   text-align: center;
   max-width: 320px;
   height: auto;
   overflow: hidden;
 }

 .swiper-slide img {
   width: 100%;
   height: 170px;
   object-fit: cover;
   margin-bottom: 10px;
 }

 .swiper-fade-wrapper {
   position: relative;
   overflow: hidden;
 }

 .swiper {
   padding: 0;
 }

 .fade-left {
   /* position: absolute;
      top: 0;
      left: 0;
      width: 150px;
      height: 100%;
      background: linear-gradient(to right, rgba(75, 0, 115, 0.9) 0%, transparent 100%);
      pointer-events: none;
      z-index: 10;
      opacity: 0;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px; */
   /* transition: opacity 0.3s; */

   position: absolute;
   top: 0;
   left: 0;
   width: 100px;
   /* how much of the left side should blend */
   height: 100%;
   background: inherit;
   /* inherits background from parent */
   mask-image: linear-gradient(to right, rgba(75, 0, 115, 0.9), transparent);
   /* fade mask */
   -webkit-mask-image: linear-gradient(to right, rgba(75, 0, 115, 0.9), transparent);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   z-index: 2;
   pointer-events: none;
   border-top-left-radius: 8px;
   border-bottom-left-radius: 8px;
 }

 .active-fade-left::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 40%;
   /* Only left half */
   height: 100%;
   background: linear-gradient(to right, rgba(75, 0, 115, 0.9), transparent);
   pointer-events: none;
   z-index: 5;
   border-radius: 8px;
 }

 .swiper-slide {
   position: relative;
   transition: opacity 0.3s;
 }


 /* .swiper-slide.swiper-slide-active {
      opacity: 0.4
    } */

 /* .swiper-fade-wrapper .swiper::before {
      border: 1px solid red;
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      background: #ffffff;
      background: radial-gradient(circle, rgba(255, 255, 255, 1) 50%, rgba(63, 3, 133, 1) 100%);
      opacity: 0.4
    } */


 /* .swiper-fade-wrapper .swiper-slide.swiper-slide-active::before {
      border: 1px solid red;
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 80px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    } */

 .swiper-slide .description-section {
   width: 100%;
   padding: 20px;
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
   flex-direction: column;
 }

 .swiper-slide .description-section .rating-mfe {
   color: #BEBEBE;
   font-size: 12px;
   font-style: normal;
   font-weight: 400;
   line-height: 20px;
   display: flex;
   align-items: center;
   column-gap: 3px;
 }

 .swiper-slide .description-section .rating-mfe img {
   width: 90px;
   height: auto;
   margin-bottom: 0;
 }

 .swiper-slide .description-section .company-name {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   font-size: 12px;
   text-transform: uppercase;
   margin-top: 12px;
   column-gap: 9px;
 }

 .swiper-slide .description-section .company-name img {
   width: 20px;
   height: auto;
   margin-bottom: 0;
 }

 .swiper-slide .description-section .company-desc {
   margin-top: 12px;
   display: flex;
   align-items: flex-start;
   column-gap: 9px;
   text-align: left;
 }

 .swiper-slide .description-section .company-desc img {
   width: 20px;
   height: auto;
   margin-bottom: 0;
 }

 .swiper-slide .description-section hr {
   float: left;
   width: 100%;
   margin: 10px 0;
   border-top: 1px solid #F4F4F4;
 }

 .swiper-slide .description-section .pricewhishlist {
   float: left;
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .swiper-slide .description-section .price {
   display: flex;
   justify-content: center;
   column-gap: 12px;
   flex-direction: column;
 }

 .swiper-slide .description-section .price-text {
   display: flex;
   flex-direction: row;
   column-gap: 12px;
 }

 .swiper-slide .description-section .price label {
   margin: 0;
   color: #108D79;
   font-size: 24px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
 }

 .swiper-slide .description-section .price span {
   color: #741FA2;
   font-family: Mulish, sans-serif;
   font-size: 24px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
   display: flex;
   align-items: center;
   column-gap: 12px;
 }

 .swiper-slide .description-section .price span del {
   color: #BEBEBE;
   font-size: 12px;
   font-weight: 400;
   line-height: 24px;
 }

 .swiper-slide .description-section .discount-text {
   font-size: 12px;
   color: #EB0504;
   font-weight: 700;
 }

 .swiper-button-next.custom-next {
   position: absolute;
   top: 50%;
   right: 0;
   background-color: #741FA2;
   border-radius: 50%;
   width: 54px;
   height: 54px;
   display: flex;
   justify-content: center;
   align-items: center;
   transform: translateY(-50%);
   cursor: pointer;
   z-index: 999;
   margin-right: 20px;
 }

 .swiper-button-next.custom-next::after {
   content: '➜';
   color: white;
   font-size: 20px;
 }

 @media (max-width: 1200px) {
   .carousel-section {
     padding-left: 50px;
   }
 }

 @media (max-width: 991px) {
   .logo-wrapper.show {
     padding-left: 30px;
     padding-right: 30px;
     width: 90%;
   }

   .logo-wrapper.show img.logo {
     width: 100% !important;
     max-width: 100% !important;
   }

   .form-wrapper {
     padding-left: 30px;
     padding-right: 30px;
     width: 100%;
   }

   .latest-logo {
     padding: 0 30px;
   }

   .latest-logo .logo {
     max-width: 100% !important;
     width: 100%;
   }

   h1 {
     max-width: 100% !important;
   }

   .full-layout {
     flex-direction: column;
     /* padding: 40px 20px; */
     gap: 30px;
     overflow-y: auto;
     align-items: center;
   }

   .form-wrapper-left,
   .carousel-section {
     width: 100%;
     height: auto;
     padding: 20px;
   }

   .form-section {
     margin-left: auto;
     margin-right: auto;
     width: 100%;
     padding: 20px;
   }

   .swiper-button-next.custom-next {
     right: 0;
   }

   .carousel-section {
     display: none;
   }
 }

 .latest-logo {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 20px;
 }

 .latest-logo.hide-logo {
   display: none;
 }

 .skip-part {
   width: 100%;
   display: flex;
   justify-content: center;
 }

 .skip-part a {
   font-size: 16px;
   text-decoration: underline;
   margin-top: 30px;
   margin-bottom: 120px;
 }

 .form-section .list-desc {
   width: 100%;
   display: flex;
   align-items: flex-start;
   column-gap: 12px;
   color: #fff;
   font-size: 20px;
   margin-bottom: 14px;
 }

 .form-section .list-desc img {
   margin-top: 5px;
 }

 .checkbox-wrapper a {
   color: #21C7AD;
 }

 .OTP-screen {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
 }

 .OTP-screen h4 {
   font-size: 24px;
   margin-bottom: 20px;
 }

 .OTP-screen h5 {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .OTP-screen p {
   margin-bottom: 20px;
 }

 .OTP-screen .otp-container .otp {
   color: #fff
 }

 .OTP-screen .otp-container {
   margin-bottom: 20px;
 }

 .OTP-screen .condition-box a {
   color: #21C7AD;
 }

 a.btn {
   text-decoration: none;
 }

 .btn:disabled {
   background-color: rgba(190, 190, 190, 0.4);
 }

 @media (max-width: 991px) {
   .createpwd-inner.OTP-screen .otp-box {
     width: 40px;
     height: 40px;
   }
 }