@font-face {
    font-family: 'Avenir-Regular';
    src: url("./fonts/Avenir-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir-Light';
    src: url("./fonts/Avenir-Light.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'Avenir-Black';
  src: url("./fonts/Avenir-Black.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
    font-family: 'Ritts';
    src: url("./fonts/Ritts-Cursive-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* // Colors >>>> */
  --primary-color: #6F2D9E;
  --background-color: #FAF3FF; 
  --white: #ffffff;
  --light-black: #7c7e8f;
  --black: #252525;
  --border-color: #d2d1dc;
  /* // Fonts >>>> */
  --font-regular: Avenir-Regular;
  --font-light: Avenir-Light;
  --font-bold: Avenir-Black;
  --font-cursive: Ritts;
  /*-- TO MAKE 1 rem  = 10px */
  --h1-font-size: 4.5rem;
  --h2-font-size: 3rem;
  --p-font-size: 1.6rem;
  --big-font-size: 2rem;
  --medium-font-size: 1.4rem;
  --small-font-size: 1.2rem;
  /* // Margin >>>> */
  --mpx150: 15rem;
  --mpx100: 10rem;
  --mpx75: 7.5rem;
  --mpx60: 6rem;
  --mpx50: 5rem;
  --mpx40: 4rem;
  --mpx30: 3rem;
  --mpx20: 2rem;
  --mpx15: 1.5rem;
  --mpx10: 1rem;
  --mpx5: 0.5rem;
  /* // Padding >>>> */
  --ppx30: 3rem;
  --ppx25: 2.5rem;
  --ppx20: 2rem;
  --ppx15: 1.5rem;
  --ppx10: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-regular);
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  display: none; /* Hides scrollbar */
}

/* For Firefox */
body {
  scrollbar-width: none; /* Hides scrollbar */
}


.section {
  max-width: 1340px;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}

button:hover {
  cursor: pointer;
}

.error {
  color: #f47479;
  font-family: var(--font-regular);
  font-size: 10px;
  margin: -5px auto;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.block {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
Alerts
-------------------------------------------------------------------------- */
.alert-box {
  position: fixed;
  z-index: 1000;
  top: 7vh;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 0.5rem 0 0 0.5rem;
  width: max-content;
  max-width: 50%;
  height: 100px;
}

.alert-box-img {
  width: 3rem;
  height: 3rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.alert-box-details {
  margin-right: 40px;
  flex: 1;
  line-height: 20px;
}

.alert-box-desc {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

.alert-box-close-img {
  width: 3rem;
  height: 3rem;
  margin-left: 20px;
  cursor: pointer;
}

/* // Success box >>>> */
.succ-alert-box {
  background: #cfe3ca;
}

.succ-alert-box .alert-box-title {
  color: #037d08;
}

/* // Fail box >>>> */
.fail-alert-box {
  background: #f5d0c9;
}

.fail-alert-box .alert-box-title {
  color: #ff0000;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Title ||||||||||||||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.section-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.section-title-primary {
  padding-bottom: 3px;
  font-size: 30px;
  font-family: var(--font-regular);
  color: #703699;
}

.section-title-secondary {
  font-size: 30px;
  font-family: var(--font-regular);
  font-weight: 900;
  color: #F5C56D;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Banner ||||||||||||||||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.banner {
  position: relative;
  width: 100%;
  background-image: url("./images/Rectangle 32.svg");
  background-position: center;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  margin: 0 auto;
  color: var(--white);
}
.banner-mobile,
.form-mobile{
  display: none;
}
.banner-logo-div {
  position: absolute;
  right: 7vh;
  top: 0;
  z-index: 1;
  width: auto;
  background: #FFF;
  padding: var(--mpx10);
  border-radius: 0 0 20px 20px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-logo-div .banner-logo{
  width: 80%;
  margin: 0 auto;
}
.banner-logo-div p{
    font-family: var(--font-cursive);
    font-size: 22px;
    text-align: center;
    color: #703699;
}
.c-logo{
  height: 96vh;
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner-content-main{
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 20vh;
  left: 5vw;
  z-index: 1;
}
.content-header{
  font-size: var(--mpx20);
  font-family: var(--font-bold);
  font-weight: 200;
  letter-spacing: 2px;
  line-height: calc(var(--mpx20) + 5px );
}
.banner-content-main :nth-child(3){
  padding-left: 5px;
}
.content-header-bold{
  font-family: var(--font-bold);
  font-size: 50px;
  line-height: 50px;
}
.content-desc{
  font-size: var(--mpx15);
  margin-top: var(--mpx10);
  font-weight: bold;
}

.banner-section{
  position: absolute;
  bottom: 0;
  display: flex;
  padding: 0 var(--mpx30);
  height: auto;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
}
.benefits-scroll-div{
  display: flex;
  flex-direction: column;
  width: 350px;
  position: relative;
  margin-bottom: var(--mpx30);
}

.benefits-title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--mpx10);
}
.benefits{
  height: auto;
  width: 300px;
  display: flex;
  flex-direction: column;
  margin-top: var(--mpx10);
}
.benefits-main{
  overflow-x: scroll;
  height: 25vh;
  scrollbar-width: thick;
  scrollbar-color: var(--primary-color) #f1f1f1; 
  direction: rtl;
  background: url("./images/Rectangle-37.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  padding: var(--mpx5) var(--mpx10);
}

/* Fallback for other browsers */
.benefits-main {
  overflow-y: scroll; /* Ensure the scrollbar appears */
}


.benefits-main > * {
  direction: ltr;
}

.benefits .key{
  position: absolute;
  right: -20px;
  width: 90px;
}

.benefit-single{
  display: flex;  
  margin: var(--mpx10) var(--mpx5);
  margin-left: var(--mpx5);
  padding-bottom: var(--mpx10);
  color: var(--primary-color);
  gap: var(--mpx10);
  border-bottom: 1px dashed #C72E9A;
}
.benefit-single img{
  width: var(--mpx20);
}
.benefit-single p{
  font-weight: 600;
  text-align: left;
}
.benefit-single p b{
  font-family: var(--font-bold);
}

.home-img{
  width: 25%;
  height: 25%;
  z-index: 2;
  margin-bottom: var(--mpx10);
}

.banner-form-card{
  position: relative;
  background-color: var(--white);
  width: 30vw;
  max-width: 300px;
  margin-bottom: var(--mpx75);
  border-radius: var(--mpx10);
  padding: var(--mpx15);
  z-index: 2;
  margin-left: var(--mpx10);
}
.banner-form-card form{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--mpx10);
}
.banner-form-card form input{
  border: none;
  padding: var(--mpx5);
  padding-left: 0;
  border-bottom: 1px solid var(--primary-color);
  width: 100%;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
}
.banner-form-card form input:focus {
  outline: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--primary-color);
}

.dual-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.text-input.mobile {
  width: 100%;
  padding-right: 60px; /* Space for the "Send OTP" text */
}

select {
  display: block;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Hover effect */
select:hover {
  border-color: #888;
}

/* Focus effect */
select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

/* Disabled dropdown */
select:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  border-color: #d6d6d6;
  cursor: not-allowed;
}

/* Optional: Remove arrow for disabled state */
select:disabled {
  background-image: none;
}


#send-otp-btn {
  position: absolute;
  right: 10px; 
  background: none;
  border: none;
  color: #E30A7F;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-decoration: none; 
  font-weight: 600;
}
#send-otp-btn:hover {
  color: #0056b3;   
}
.otp{
  display: none;
}
.checkbox-div{
  display: flex;
  color: #0000B4;
  font-weight: 600;
  padding: 0;
  gap: var(--mpx10);
  font-size: 12px;
  position:relative;
}
.checkbox-div input{
  padding: 0 !important;
  width: var(--mpx10) !important;
}

.float-t-and-c{
  display: none;
  position: absolute;
  bottom: 50px;
  width: 200%;
  background-color: var(--background-color);
  padding: var(--mpx10);
  border-radius: var(--mpx10);
}

.submit-btn button{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  padding: var(--mpx10);
  background-color: #5E2D81;
  border: none;
  border-radius: var(--mpx5);
}

.note{
  position: absolute;
  bottom: -18%;
  right: 0;
  left: 0;
}

.note li{
  font-size: 12px;
}
.banner-img{
  z-index: 2;
  width: 250px;
  height: 75vh;
  margin-left: var(--mpx10);
}


/* -------------------------------------------------------------------------
  Responsive : Media Queries >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  ------------------------------------------------------------------------- */
@media screen and (min-width: 0) and (max-width: 599px) {

      /*Alert*/

  .alert-box {
    max-width: 90%;
  }
  .alert-box-details {
    margin-right: 0;
  }
  .alert-box-details h1{
    font-size: 6vw;
  }
  .alert-box-details p{
    font-size: 4vw;
  }
  /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  Banner ||||||||||||||||
  >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
  .banner-desktop{
    display: none;
  }
  .banner-mobile,
  .form-mobile{
    display: block;
  }
  .c-logo{
    top: 30%;
    width: 100%;
    height: auto;
    left: 0;
  }
  .banner-logo-div{
    width: 40%;
  }
  .banner-logo-div .banner-logo{
    width: 80%;
  }
  .banner-logo-div p{
    font-size: 12px;
  }
  .banner-content-main{
    top: 15vh;
    left: var(--mpx5);
  }
  .banner-mobile .content-header{
    font-size: 22px;
    line-height: var(--mpx20);
  }
  .banner-mobile .content-header-bold{
    font-size: var(--mpx20);
    line-height: 35px;
  }
  .banner-mobile .content-desc{
    font-size: 18px;
    width: 70%;
    margin-top: var(--mpx5);
    font-family: var(--font-bold);
  }
  .banner-mobile .banner-section{
    flex-direction: column;
    bottom: 0;
    align-items: flex-start;
    padding: 0 var(--mpx5);
  } 
  .banner-mobile .benefits-title{
    color: var(--primary-color);
  }
  .banner-mobile .benefits-title h2{
    font-size: 14px;
    font-family: var(--font-bold);
  }
  .banner-mobile .benefits-title img{
    width: var(--mpx10);
  }
  .benefits-scroll-div{
    width: 100px;
    margin-bottom: 0;
    border: none;
  }
  .benefits-main{
    overflow-x: revert;
    width: 200px;
    height: auto;
    padding: var(--mpx15);
  }

  .benefits .key{
    top: 30px;
    right: -135px;
    width: var(--mpx30);
  }
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.benefit-single {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    margin: 0;
    margin-top: var(--mpx10);
    padding-bottom: 0;
    gap: var(--mpx5);
}

.benefit-single img {
    width: 30px;
    margin-bottom: 10px;
}
.benefit-single p{
  font-weight: 900;
  font-size: 12px;
}
.benefit-single p b{
  font-weight: bold;
}

.carousel-pagination {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.carousel-pagination .dot {
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-pagination .dot.active {
    background-color: #EB008B;
}

.apply-now-cta{
    padding: var(--mpx10) var(--mpx20);
    margin-top: var(--mpx10);
    border: none;
    background-color: #E42B98;
    color: var(--white);
    border-radius: var(--mpx5);
}
.home-img{
  margin-top: var(--mpx10);
  width: 180px;
  height: 120px;
}

.note{
  left: 5%;
  bottom: 3%;
  width: 70%;
}
.note li{
  font-size: 8px;
}

.banner-img{
  width: 180px;
  height: 50vh;
  position: absolute;
  right: 2%;
  bottom: 0;
}

.banner-form-card{
  width: 100%;
  margin-bottom: 0;
  padding: var(--mpx20) var(--mpx5);
  background-color: var(--background-color);
  max-width: 100%;
  margin-left: 0;
}
.banner-form-card form{
  padding: var(--mpx30) var(--mpx10);
  border-radius: var(--mpx10);
  background-color: var(--white);
}
.checkbox-div{
    position: relative;
}
.float-t-and-c{
  width: 200%;
  bottom: 50px;
}
.submit-btn button{
    padding: var(--mpx10) var(--mpx5);
    font-size: 12px;
}


  
}

@media screen and (min-width: 600px) and (max-width: 1200px) {

  /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  Banner ||||||||||||||||
  >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
  .banner-desktop{
    display: none;
  }
  .banner-mobile,
  .form-mobile{
    display: block;
  }
  .c-logo{
    top: 10%;
    width: 100%;
    height: auto;
    left: 0;
  }
  .banner-logo-div .banner-logo{
    width: 70%;
  }
  .banner-logo-div p{
    font-size: 20px;
  }
  .banner-content-main{
    top: 12vh;
    left: 5vw;
  }
  .banner-mobile .content-header{
    font-size: var(--mpx20);
  }
  .banner-mobile .content-header-bold{
    font-size: var(--mpx30);
  }
  .banner-mobile .content-desc{
    font-size: 22px;
    width: 100%;
    font-weight: 200;
    font-family: var(--font-regular);
    margin-top: var(--mpx5);
  }
  .banner-mobile .banner-section{
    flex-direction: column;
    top: 40vh;
    bottom: 0;
    align-items: flex-start;
  } 
  .banner-mobile .benefits-title{
    color: var(--primary-color);
  }
  .banner-mobile .benefits-title img{
    width: var(--mpx10);
  }
  .benefits-scroll-div{
    width: 240px;
    margin-bottom: 0;
  }
  .benefits-main{
    overflow-x: revert;
    width: 220px;
    height: auto;
    padding: var(--mpx15);
  }
  .benefits .key{
    top: 25px;
    right: -45px;
    width: var(--mpx50);
  }


.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.benefit-single {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    margin: 0;
    margin-top: var(--mpx20);
    padding-bottom: 0;
    gap: var(--mpx5);
}

.benefit-single img {
    width: var(--mpx30);
    margin-bottom: 10px;
}
.benefit-single p{
  font-weight: 900;
}

.carousel-pagination {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.carousel-pagination .dot {
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-pagination .dot.active {
    background-color: #EB008B;
}
.apply-now-cta{
    padding: var(--mpx10) var(--mpx20);
    margin-top: var(--mpx30);
    border: none;
    background-color: #E42B98;
    color: var(--white);
    border-radius: var(--mpx5);
}
.home-img{
  margin-top: var(--mpx20);
  width: 20vh;
  height: 18vh;
}

.note{
  left: 5%;
}

.banner-img{
  width: 30vh;
  height: 70vh;
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
}

.banner-form-card{
  width: 100%;
  margin-bottom: 0;
  padding: var(--mpx20);
  background-color: var(--background-color);
  max-width: 100%;
  margin-left: 0;
}
.banner-form-card form{
  padding: var(--mpx30);
  border-radius: var(--mpx10);
  background-color: var(--white);
}
.float-t-and-c{
  width: 80%;
  bottom: -250px;
}


}