
/* Import Geist from Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */


@import url("https://fonts.googleapis.com/css2?family=Geist&display=swap");


@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


/* Apply font and basic resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #07172c;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll */
}


/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: #0d6efd;
}

/* Custom spacing utility */
.section {
  padding: 60px 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

/* Buttons */
.btn-custom {
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #0b5ed7;
}

.spaceT48 {
margin-top: 48px;
}

.spaceT32 {
margin-top: 26px;
margin-bottom: 24px;
}

.spaceT100{
  padding-top: 120px;
}

@media(max-width:1400px){
  .spaceT48 {
margin-top: 32px;
}

}
@media(max-width:991px){
  .spaceT48 {
margin-top: 30px;
}
.spaceT32 {
margin-top: 12px;
}
.spaceT100{
  padding-top: 70px;
}
}

/* Navbar Styles */
.navbar {
  margin-top: 47px;
  padding: 0px;
}

/* Sticky version when scrolled past 50px */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0 !important;
  background-color: #07172c;

  z-index: 999;
  padding: 20px 0px;
}

.sticky-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-nav {
  border-radius: 184px;
  background-color: #07172c;
  box-shadow: 0 0 10px 1px rgba(2, 242, 243, 0.6);
  justify-content: space-between;
  width: 80%;
  padding: 6px;
  gap: 4px;
}

.navbar-nav .nav-item {
  padding: 8px 28px;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
  position: relative;
  transition-delay: 0.05s; /* Small delay to debounce hover */
}

.navbar-nav .nav-link {
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.2s ease;
}

.navbar-logo {
  height: 64px;
  width: 230px;
}

.navbar-nav .nav-item:hover {
  border-radius: 56px;
  background-color: #081c35;
  color: #ffffff;
}
.navbar-nav .nav-item.active {
  border-radius: 56px;
  background-color: #ffffff;
  color: #081c35;
}


.navbar-nav .nav-item:hover .nav-link {
  color: #ffffff !important;
  font-weight: 400 !important;
}

.navbar-nav .nav-item.active .nav-link {
  color: #081c35;
  font-weight: 700;
}

/* Prevent hover from overriding active state */
.navbar-nav .nav-item.active:hover {
  background-color: #ffffff !important;
}

.navbar-nav .nav-item.active:hover .nav-link {
  color: #081c35 !important;
  font-weight: 700 !important;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none;
  background-color: #07172c;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 1px rgba(2, 242, 243, 0.6);
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 0px !important;
  }
}

@media (max-width: 1200px) {
  .navbar-nav {
    width: 90%;
  }
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .navbar-logo {
    height: 54px;
    width: 150px;
  }

  .navbar-nav {
    flex-direction: row !important;
    justify-content: space-around;
    width: 95%;
    max-width: 95%;
    box-sizing: border-box;
    padding: 6px 6px;
    margin: 10px;
    gap: 4px;
  }

  .navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    margin: 0;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
  }

  /* Mobile expanded state */
  .navbar.mobile-expanded .navbar-brand,
  .navbar.mobile-expanded .navbar-toggler {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .navbar.mobile-expanded .navbar-collapse {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    overflow: hidden; /* Prevent animation overflow */
  }

  .navbar.mobile-expanded .navbar-nav {
    width: 95%;
    max-width: 95%;
    height: auto;
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 6px;
    transform: translateX(0);
    opacity: 1;
    animation: slideNavItems 0.4s ease-out;
  }

  .navbar.mobile-expanded .nav-item {
    flex: 1;
    padding: 8px 6px;
    opacity: 0;
    transform: translateX(10px);
    animation: fadeInNavItem 0.5s ease-out forwards;
  }

  .navbar.mobile-expanded .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .navbar.mobile-expanded .nav-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .navbar.mobile-expanded .nav-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .navbar.mobile-expanded .nav-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .navbar.mobile-expanded .nav-link {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0;
  }
  .navbar-nav .nav-item.active .nav-link {
  color: #081c35;
  font-weight: 700;
}


  /* Keyframe animations */
  @keyframes slideNavItems {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes fadeInNavItem {
    from {
      opacity: 0;
      transform: translateX(10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Closing animation for nav items */

  .navbar.mobile-closing .navbar-nav {
    animation: fadeOutNavbar 0.3s ease-out forwards;
  }

  .navbar.mobile-closing .navbar-brand,
  .navbar.mobile-closing .navbar-toggler {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    pointer-events: auto;
  }

  @keyframes fadeOutNavbar {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 28px;
    width: 120px;
  }
  .navbar.mobile-expanded .nav-item {
    padding: 4px 8px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
  }

  .navbar.mobile-expanded .nav-link {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .navbar-nav .nav-item {
    padding: 4px 4px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 400;
    padding: 0px;
  }

  .navbar.mobile-expanded .nav-link {
    font-size: 14px;
  }

  .navbar.mobile-expanded .nav-item {
    padding: 4px 12px;
  }
}




/* banner section  */

.banner-btnSection {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.banner-btnWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
  margin-top: 16px;
}
.banner-btnWrapper a {
  background: transparent;
  border: none;
  cursor: default;
}

@media (max-width: 991px) {

  .banner-btnSection {
    font-size: 18px;
  }
  .banner-btnWrapper {
    gap: 22px;
    margin-top: 16px;
  }

  .sticky-navbar {
    padding: 24px 0px;
  }
}

@media (max-width: 576px) {

  .banner-btnSection {
    font-size: 16px;
  }
  .banner-btnWrapper {
    gap: 22px;
    margin-top: 12px;
  }
}




/* ////////////////// */
/* parallax start  */
#parallax-section {
  background-image: url("images/Simplify-parallax-laptop.webp");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  margin-top: 100px;
}

#parallax-section::before {
  bottom: 0;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
   background-color: rgba(0, 0, 0, 0.2);
}

.parallax-section-area {
  padding: 140px 0;
  width: 100%;
  min-height: 300px;
}


@media (max-width: 991px) {
  #parallax-section {
    background-image: url("images/Simplify-parallax-mob-new.webp");
    background-attachment: scroll; 
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
   .parallax-section-area {
    padding: 50px 0;
    min-height: 200px;
  }
}


@media (max-width: 571px) {
  #parallax-section {
     margin-top: 50px;
  }
  .parallax-section-area {
    padding: 50px 0;
    min-height: 120px;
  }
}


/* About section  */

#aboutApp-section {
  padding-top: 70px;
}

#aboutApp-section h2 {
  color: #02f2f3;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

.aboutApp-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 70%;
  margin: 0 auto;
}

.aboutApp-content {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  padding: 28px 33px;
  border-radius: 24px;
  box-shadow: 0 0 12px -1px rgba(1, 225, 225, 0.32);
  gap: 24px;
  background: linear-gradient(
    180deg,
    rgba(145, 145, 145, 1)
    rgba(73, 73, 73, 1)
  );
  margin-top: 270px;
}

.aboutApp-content.L-Img {
  margin-top: 270px;
}

.aboutApp-content.first-about {
  margin-top: 200px;
}

.aboutApp-content.L-Img.last-L-Img {
    margin-top: 250px;
  }

.aboutApp-content h4 {
  color: #02f2f3;
  font-size: 28px;
  font-weight: 700;
}
.aboutApp-content p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}
.left-content {
  width: 60%;
}

.left-content button {
  border-radius: 24px;
  padding: 6px 12px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 1px 7px -1px rgba(0, 0, 0, 0.62);
  border: none;
}

.right-image {
  width: 40%;
  position: relative;
  overflow: visible;
}

.right-image img {
  height: 466px;
  width: 100%;
  object-fit: cover;
  position: absolute;
  /* right: -20px;  */
  top: -16rem;
}

.L-Img .right-image {
  text-align: left;
  width: 37%;
}
.L-Img .left-content {
  width: 63%;
}

.L-Img .right-image img {
  height: 466px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -15.5rem;
}

.last-L-Img.L-Img .right-image img {
  height: 466px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -13rem;
}
.aboutApp-button {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.aboutApp-button button {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  cursor: default;
}
  .periodTracker-Img .right-image img {
  top: -14rem;
  }
@media (max-width: 1400px) {
  .right-image img {
    height: 466px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -13.5rem;
  }
  

  .last-L-Img.L-Img .right-image img {
  height: 466px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -25px;
  top: -9rem;
}
.aboutApp-content.first-about {
  margin-top: 170px;
}
  .aboutApp-content {
    margin-top: 230px;
  }
    .aboutApp-content.L-Img {
    margin-top: 270px;
  }
      .aboutApp-content.L-Img.last-L-Img {
    margin-top: 210px;
  }
  .periodTracker-Img .right-image img {
  top: -9rem;
  }
}

@media (max-width: 1200px) {
  .aboutApp-wrapper {
    width: 80%;
  }
  .aboutApp-content.first-about {
    margin-top: 150px;
  }
    .aboutApp-content {
    margin-top: 220px;
  }

  .aboutApp-content.L-Img {
    margin-top: 240px;
  }

  .aboutApp-button button {
    font-size: 14px;
  }
    .right-image img {
    height: 430px;
    width: 100%;
    object-fit: contain;
    position: absolute;
    /* right: -20px;  */
    top: -13rem;
  }
  .L-Img .right-image img {
  height: 430px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -14rem;
}
  .last-L-Img.L-Img .right-image img {
  height: 400px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -10rem;

  }
    .periodTracker-Img .right-image img {
  top: -10rem;
  }
}
/* 123 */
@media only screen and (min-width: 1100px) and (max-width: 1200px) {
    .periodTracker-Img .right-image img {
  height: 400px;
  }
}
@media (max-width: 1100px) {
    .L-Img .right-image img {
  height: 430px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -13rem;
}
 .last-L-Img.L-Img .right-image img {
  height: 400px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: -30px;
  top: -5rem;

  }
    .aboutApp-content.first-about {
    margin-top: 150px;
  }
    .aboutApp-content {
    margin-top: 180px;
  }

  .aboutApp-content.L-Img {
    margin-top: 250px;
  }
    .aboutApp-content.L-Img.last-L-Img {
    margin-top: 160px;
  }
      .right-image img {
    height: 430px;
    width: 100%;
    object-fit: contain;
    position: absolute;
    top: -10rem;
  }
    .periodTracker-Img .right-image img {
  top: -7rem;
  }

}

@media (max-width: 991px) {
  .aboutApp-wrapper {
    width: 95%;
  }
  .aboutApp-content {
    margin-top: 150px;
  }
  .aboutApp-content.first-about {
    margin-top: 100px;
  }
  .aboutApp-content.L-Img {
    margin-top: 160px;
  }

   .aboutApp-content.L-Img.last-L-Img {
    margin-top: 140px;
  }
  .aboutApp-content h4 {
    color: #02f2f3;
    font-size: 26px;
    font-weight: 700;
  }
  .aboutApp-content p {
    font-size: 16px;
  }
  .aboutApp-button button {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
  }
  .right-image img {
    height: 356px;
    width: 100%;
    object-fit: contain;
    position: absolute;
    top: -10rem;
  }

  .L-Img .right-image img {
    height: 356px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -30px;
    top: -10rem;
  }
  .last-L-Img.L-Img .right-image img {
    height: 356px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -30px;
    top: -6rem;

  }
  .periodTracker-Img .right-image img {
  top: -6.5rem;
  }
}

@media (max-width: 766px) {
  #aboutApp-section h2 {
    font-size: 22px;
  }

  .aboutApp-wrapper {
    width: 100%;
  }
  .aboutApp-content {
    padding: 16px;
    border-radius: 24px;
    gap: 12px;
    margin-top: 140px;
  }

  .aboutApp-content.first-about {
    margin-top: 120px;
  }
  .aboutApp-content.L-Img.last-L-Img {
    margin-top: 120px;
  }
  .aboutApp-content.L-Img {
    margin-top: 140px;
  }
  .aboutApp-content h4 {
    color: #02f2f3;
    font-size: 16px;
    font-weight: 700;
  }
  .aboutApp-content p {
    font-size: 12px;
  }
  .right-image img {
    height: 284px; 
    width: 100%;
    object-fit: cover;
    position: absolute;
    right: 7px;
    top: -9rem; 
  }

  .L-Img .right-image img {
    height: 284px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -9rem;
  }
  .last-L-Img.L-Img .right-image img {
    height: 290px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -6rem;

  }

  .L-Img .right-image {
    text-align: left;
    width: 45%;
  }
  .L-Img .left-content {
    width: 65%;
  }

  .aboutApp-button {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    gap: 8px;
  }
  .aboutApp-button button {
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
  }
  .left-content button {
    padding: 2px 8px;
  }
}

@media(max-width:571px){
  .aboutApp-content.first-about {
    margin-top: 60px;
  }
  .aboutApp-content.L-Img {
    margin-top: 100px;
  }
    .aboutApp-content {
    margin-top: 100px;
  }
  .aboutApp-content.L-Img.last-L-Img {
    margin-top: 90px;
  }
   .right-image img {
    height: 230px;
    width: 100%;
    object-fit: contain;
    position: absolute;
    top: -6rem;
  }
  .L-Img .right-image img {
    height: 224px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -6rem;
  }
  .last-L-Img.L-Img .right-image img {
    height: 220px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -3rem;

  }
      .periodTracker-Img .right-image img {
  top: -5.2rem;
  }

}

@media (max-width: 500px) {
  .right-image img {
    height: 284px; 
    width: 100%;
    object-fit: cover;
    position: absolute;
    right: 7px;
    top: -6.4rem; 
  }

  .L-Img .right-image img {
    height: 284px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -5.7rem;
  }
  .last-L-Img.L-Img .right-image img {
    height: 290px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -4.5rem;

  }
}

@media (max-width: 430px) {
  .left-content {
  width: 57%;
}

.right-image {
  width: 43%;
}

}

@media (max-width: 390px) {

    .left-content {
  width: 60%;
}

.right-image {
  width: 40%;
}
  .aboutApp-content {
    gap: 8px;
    margin-top: 60px;
  }
  .aboutApp-content.L-Img {
    margin-top: 80px;
  }
  .aboutApp-content.L-Img.last-L-Img {
    margin-top:80px;
  }
  .right-image img {
    height: 224px;
    width: 100%;
    object-fit: cover;

    position: absolute;
    right: 5px;
    top: -3.7rem;
  }

  .L-Img .right-image img {
    height: 240px;
    object-fit: cover;
    position: absolute;
    left: -10px;
    top: -3.7rem;
  }
    .last-L-Img.L-Img .right-image img {
     height: 240px;
    object-fit: cover;
    position: absolute;
    left: -10px;
    top: -3.5rem;

  }
      .periodTracker-Img .right-image img {
  top: -4rem;
  }
}

@media (max-width: 349px) {
  .aboutApp-content.L-Img {
    margin-top: 70px;
  }
  .aboutApp-content.L-Img.last-L-Img {
    margin-top:60px;
  }
  .L-Img .right-image img {
    object-fit: contain;
  }
    .last-L-Img.L-Img .right-image img {
  object-fit: contain;
    }
}
@media only screen and (min-width: 431px) and (max-width: 445px) {

      .aboutApp-content.L-Img {
        margin-top: 120px;
    }

  .L-Img-S.L-Img .right-image img {
    height: 284px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -7.7rem;
  }

      .right-image img {
    height: 284px; 
    width: 100%;
    object-fit: cover;
    position: absolute;
    right: 7px;
    top: -7rem; 
  }
    .custom-tabs {

  gap: 20px;
}
.back-arrow img{
  margin-right: 12px;
}
}
@media only screen and (min-width: 445px) and (max-width: 499px) {

    .right-image img {
    height: 284px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    right: 7px;
    top: -7.2rem; 
  }
      .L-Img .right-image img {
    height: 264px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -7.5rem;
  }
  .L-Img-S.L-Img .right-image img {
    height: 264px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -8rem;
  }
}
@media only screen and (min-width: 438px) and (max-width: 480px) {
      .L-Img-m.L-Img .right-image img {
    height: 264px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -7.2rem;
  }
    .L-Img-S.L-Img .right-image img {
    height: 264px;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -7rem;
  }
    .last-L-Img.L-Img .right-image img {
    height: 270px; 
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: -10px;
    top: -4.5rem;

  }
      .periodTracker-Img .right-image img {
  top: -4.8rem;
  }
}
/* //////////////// */
/* notify me  */
#notifyMe-section {
  background-image: url("images/Simplify-parallax-laptop.webp");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
  position: relative;
  width: 100%;
  margin-top: 100px;
  margin-top: 100px;
}

#notifyMe-section::before {
  bottom: 0;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0; /* Put below content */
}
.notifyMe-wrapper {
  padding: 100px 0px;
  width: 70%;
  margin: 0 auto;
}
.notifyMe-section-area {
  border-radius: 8px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px); /* Mild blur */
  -webkit-backdrop-filter: blur(4px); /* Safari support */

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
}
.notifyMe-section-area h4 {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}
.notifyMe-section-area p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}
.notifyMe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.notifyMe-form .form-control {
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #fff;
  width: 100%;
  padding: 8px 16px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.notifyMe-form button {
  padding: 10px 35px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #ffffff;
  border: none;
  height: 51px;
  transition: opacity 0.3s ease;

  background: linear-gradient(to bottom, #2a7be5, #0a2242);
}
.notifyMe-form button:hover {
  opacity: 0.85;
}

.notifyMe-form .form-control::placeholder {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .notifyMe-wrapper {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .notifyMe-wrapper {
    width: 95%;
  }
  #notifyMe-section {

    background-image: url("images/Simplify-parallax-mob-new.webp");
      background-attachment: scroll; /* Change to scroll */
    /* Add smooth scrolling */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 766px) {
  .notifyMe-wrapper {
    width: 100%;
      padding: 70px 24px;
  }
  .notifyMe-section-area h4 {
    font-size: 16px;
  }
  .notifyMe-section-area p {
    font-size: 14px;
  }
  .notifyMe-form .form-control {
    border-radius: 8px;
    height: 38px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
  }
  .notifyMe-form button {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: 38px;
  }
  .notifyMe-form .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
  }
  .notifyMe-section-area {
    padding: 16px;
  }
}

/* Show only on screens wider than 576px */
.desktop-text {
  display: block;
}

.mobile-text {
  display: none;
}

@media (max-width: 576px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: block;
  }
}

/* //////////////////// */
/* footer  */
footer {
padding-bottom: 30px;
  background: linear-gradient(to bottom, #07172c, #000000);
}
.footer-wrapper {
    padding: 120px 0px 66px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.footer-left button {
  background-color: transparent;
  border: none;
  text-decoration: underline;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #ffffff;
}
.footer-left button:hover {
  font-weight: 600;
  /* color: rgba(2, 242, 243, 0.8); */
}
.footer-left .social-links {
  display: flex;
  gap: 33px;
}
.footer-left .social-links a{
border-radius: 50%;
}
.footer-left .social-links a:hover{
 box-shadow: 0 0px 12px rgba(2, 242, 243, 0.8);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.footer-right a {
  font-size: 22px;
  font-weight: 400;
  text-decoration: underline !important;
  color: #d6d6d6 !important;
  cursor: pointer;

}
.footer-right a:hover {
 font-weight: 600;
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #D9D9D9;
  font-weight: 400;
  font-size: 16px;
}
.footer-copyright a{
  color: #02F2F3;
  text-decoration: underline;
}
.footer-copyright a:hover{
 color: #AEFFFF;
}



@media (max-width: 766px) {

  .footer-wrapper {
        padding: 56px 0px 56px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-right {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 14px;
  }
  .footer-left button {
    line-height: 26px;
    font-size: 20px;
  }
  .footer-right a {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 390px) {
  .footer-left button {
    font-size: 16px;
  }
  .footer-right a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 990px) {
  .footer-copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-align: center;
}
}

/* /////////////////////////// */
/* model contact form  */
/* Modal overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  margin: 0;
}

.modal h2 {
  margin-top: 0;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #ffffff;
}

  .modal-header {
    justify-content: center;
    position: relative;
    border: none;
    padding: 0px;
  }

  .modal-title {
    text-align: center;
    width: 100%;
  }

  .modal-header .custom-close-btn {
    position: absolute;
    right: 1rem;
    /* top: 1rem; */
    color: #fff !important;
    background-color: transparent;
    border: none;
  }

body.modal-open {
  padding-right: 0 !important;
}

.modal-content {
  background: linear-gradient(to bottom, #07172c, #000000);
  border-radius: 40px;
  border: 2px solid #02f2f3;
  padding: 24px;
}
.modal-body {
  padding: 0px;
}
.contactForm-modal {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}
.contactForm-title {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
     text-align: center;
    width: 100%;
}

.contactForm-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, 1fr));
  align-items: center;
  column-gap: 24px;
  row-gap: 18px;
  margin-bottom: 24px;
}
.contactForm-wrapper .form-control {
  background-color: transparent;
  border-radius: 16px;
  border: 1px solid #ffffff !important;
  width: 100%;
  padding: 16px 24px;
  margin-bottom: 0px;
  color: #8e8e93;
  font-size: 20px;
  font-weight: 400;
}
.contactForm-wrapper .form-control::placeholder {
  color: #8e8e93;
  font-size: 20px;
  font-weight: 400;
}

.textarea-wrapper {
  margin-bottom: 14px;
}

.contactForm-wrapper .send-button {
  padding: 10px 35px;
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(to bottom, #2272db, #0c2a52);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.contactForm-wrapper .send-button:hover {
  opacity: 0.85;
}

.contactForm-details {
  border-radius: 16px;
  padding: 8px 16px;
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contactForm-details h2 {
  font-size: 24px;
  font-weight: 500;
  color: #f2f2f7;
  margin-bottom: 0px;
}
.contactForm-detailsContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #f2f2f7;
}
.contactForm-details .flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contactForm-details .flex-start {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 400;
}
.contactForm-details .flex-start img {
  height: 20px;
  width: 20px;
}

 .contactForm-details .flex-start a{
     word-break: break-word; 
  overflow-wrap: break-word; 
  white-space: normal; 

 }

@media (max-width: 991px) {

  .contactForm-modal {

  gap: 24px;
  margin-top: 24px;
}
  .contactForm-title {
    font-size: 20px;
  }
  .contactForm-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(10rem, 1fr));
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .contactForm-details {

  padding: 8px 12px;


}
  .contactForm-details .flex-between {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 12px;
  }
  .contactForm-wrapper .form-control {
    border-radius: 12px;
    width: 100%;
    padding: 12px 18px;
    font-size: 16px;
  }
  .contactForm-wrapper .form-control::placeholder {
    font-size: 16px;
  }
  .contactForm-wrapper .send-button {
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
  }
  .contactForm-details h2 {
    font-size: 20px;
    font-weight: 500;
  }
  .contactForm-details .flex-start {
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
  }
  .contactForm-details .flex-start img {
    height: 18px;
    width: 18px;
  }
  .textarea-wrapper {
  margin-bottom: 0px;

}
}

@media(max-width:571px){
  .contactForm-wrapper .form-control {
    font-size: 14px;
  }
  .contactForm-wrapper .form-control::placeholder {
    font-size: 14px;
  }
}

@media(max-width:390px){
    .contactForm-details .flex-start {
    font-size: 14px;
  }
}
@media(max-width:375px){
    .contactForm-details .flex-start {
    font-size: 13px;
  }
}
/* ////////////// */
/* policy page tabs  */

.custom-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  border-bottom: none;
}

.custom-tabs .nav-link {
  color: #8e8e93;
  border: none;
  border-bottom: 1.55px solid transparent;
  background-color: transparent;
  font-weight: 600;
  font-size: 32px;
  display: inline-flex;
  padding: 4px;
}

.custom-tabs .nav-link:hover {
  color: #fff !important;
  border-bottom: 1.5px solid transparent !important;
}
.custom-tabs .nav-link.active {
  color: #02f2f3 !important;
  border-bottom: 1.5px solid #02f2f3 !important;
  background-color: transparent !important;
  font-weight: 600;
}


.back-arrow img{
  height: 42px;
  width: 42px;
}
@media(max-width:1200px){
  .custom-tabs .nav-link {
  font-weight: 200;
  font-size: 26px;
}
.back-arrow img{
  height: 38px;
  width: 38px;
}
}

@media(max-width:991px){
  .custom-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-bottom: none;
}
  .custom-tabs .nav-link {
  font-weight: 200;
  font-size: 24px;

}
.back-arrow img{
  height: 28px;
  width: auto;
}
}

@media(max-width:571px){
    .custom-tabs {
  gap: 12px;
}
  .custom-tabs .nav-link {
  font-weight: 200;
  font-size: 20px;

}
.back-arrow img{
  height: 24px;
  width: auto;
}
}


/* faq  start*/

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-accordion {

  display: flex;
  flex-direction: column;
  gap: 30px;
}
  .faq-accordion .accordion-button {
    border: none;
    color: #ffffff;
    font-weight: 500;
    padding: 16px 24px;
    font-size: 24px;
  }
  .accordion-item:not(:first-of-type) {
    border-top: 1px solid #02F2F3;
}

  .faq-accordion .accordion-button::after {
    display: none; /* Hide default Bootstrap icon */
  }

  .faq-accordion .icon-toggle {
    transition: transform 0.3s ease;
  }

  /* Rotate the icon when expanded */
  .faq-accordion .accordion-button[aria-expanded="true"] .icon-toggle {
    transform: rotate(180deg);
  }
  .accordion-item{
 background-color: transparent; 
 border: 1px solid #02F2F3;
 border-radius: 16px !important;
  }
.faq-accordion .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none; /* Remove focus outline */
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: transparent; 
  box-shadow: none;
    border-bottom: 1px solid #8E8E93; 
}
.faq-accordion .accordion-body{
  color: #fff;
  font-size: 18px;
}

.icon-toggle {
  font-size: 18px;
}
  .question-text {
    flex-grow: 1;
    text-align: left;
  }
  .faq-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
    .faq-contact h4{
      font-size: 24px;
      margin-bottom: 0px;
      font-weight: 500;

    }
     .faq-contact p{
      font-size: 20px;
      margin-bottom: 0px;
      font-weight: 500;

    }

.contactForm-wrapper .faq-send-button {
  padding: 12px 100px;
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(to bottom, #2272db, #0c2a52);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.contactForm-wrapper .faq-send-button:hover {
  opacity: 0.85;
}


@media(max-width:991px){

  .faq-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

  .content-fullwidth {
  padding: 18px 12px;
  }
    .contactForm-wrapper .faq-send-button {

    padding: 12px 54px;
    font-size: 16px;
    font-weight: 500;
  }


  .faq-accordion {

  display: flex;
  flex-direction: column;
  gap: 28px;
}
    .faq-accordion .accordion-button {
  
    font-weight: 500;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .faq-accordion .accordion-body{
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}
.icon-toggle {
  font-size: 14px;
}

    .faq-contact h4{
      font-size: 18px;

    }
     .faq-contact p{
      font-size: 16px;

    }
}

@media(max-width:571px){
  .faq-accordion {

  display: flex;
  flex-direction: column;
  gap: 20px;
}
    .faq-contact p{
      font-size: 14px;

    }
}


/* terms of service  */
.TS-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.TS-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: justify;
}
.TS-content-l{
    font-size: 18px;
  font-weight: 600;
}
.TS-content-m{
    font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}
.TS-content-s {
    font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}

@media(max-width:571px){

  .TS-content-l{
    font-size: 16px;
}
.TS-content-m{
    font-size: 20px;
}
.TS-content-s {
    font-size: 14px;
}
}


.custom-list {

  list-style: none;    /* remove default numbers */
  padding-left: 10px;  /* adjust spacing */
}
 ol.custom-list{
  margin-bottom: 0px;
}





/* ////////banner /////// */

#banner-section {
  padding: 230px 0px 110px 0px;
}

.content {
  padding: 120px 0px;
}

@media (max-width: 1400px) {
#banner-section {
  padding: 190px 0px 80px 0px;
}

}
@media (max-width: 991px) {
#banner-section {
  padding: 180px 0px 80px 0px;
}

}

@media (max-width: 571px) {
  .content {
    padding: 80px 10px;
  }
  #banner-section {
    padding: 130px 0px 40px 0px;
  }
}
.banner-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}
.banner-content-1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.banner-content h1 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
}
.banner-content h1 span {
  color: #02f2f3;
}
.banner-content p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 40px;
  font-family: "Geist", sans-serif;
}

.banner-content .banner-italic {
  color: rgba(174, 255, 255, 1);
  font-style: italic;
  font-weight: 400;
  font-size: 22px !important;
  line-height: 29px;
  font-family: "Poppins", sans-serif;
}


@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 36px;
    margin-bottom: 0px;
  }

  .banner-content p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0px;
  }

  .banner-content .banner-italic {
    font-weight: 400;
    font-size: 24px !important;
    line-height: 29px;
  }

}


@media (max-width: 991px) {
  .banner-content {
    gap: 24px;
  }
  .banner-content-1 {
    gap: 18px;
  }
  .banner-content h1 {
    font-size: 30px;
    margin-bottom: 0px;
  }

  .banner-content p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
  }

  .banner-content .banner-italic {
    font-weight: 400;
    font-size: 16px !important;
    line-height: 22px;
  }

}

@media (max-width: 576px) {
  .banner-content {
    gap: 24px;
  }
  .banner-content-1 {
    gap: 12px;
  }
  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 16px;
    line-height: 22px;
  }

  .banner-content .banner-italic {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 20px;
  }

}

/* /////////////////////carousel ////////// */


 .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: start;
  }
/* ===========================
   Main Carousel Wrapper
=========================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  /* aspect-ratio: 9 / 16; */
}

/* Right Banner */
.right-banner {
  position: relative;  
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; 
}

/* ===========================
   Carousel Background
=========================== */
.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel {
  position: relative;
  top: 80px;
  margin: 0;
  padding: 0;
}

.carousel-inner {
  margin: 0;
  padding: 0;
}

 .carousel-background img {
  width: 100%;
  height: auto; 
  max-height: 328px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -7px;
 
}


/* ===========================
   Foreground Overlay
=========================== */
.foreground-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.foreground-image {
  width: 102%;
  max-width: 102%;
  height: auto;
}

/* ===========================
   Icon Arc Setup
=========================== */
.icon-container {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.icon-container .icon {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  object-fit: cover; 
  display: block;
  padding: 0;
  margin: 0;
  border: none; 
    width: 64px;
  height: 64px;
}

.icon.active {
  box-shadow: 0 0px 12px rgba(2, 242, 243, 0.8);
}

/* Arc Positions - Desktop */
.icon:nth-child(1) {
  transform: rotate(159deg) translate(232px) rotate(-159deg);
}
.icon:nth-child(2) {
  transform: rotate(198deg) translate(211px) rotate(-198deg);
}
/* .icon:nth-child(3) {
  transform: rotate(230deg) translate(180px) rotate(-230deg);
} */
.icon:nth-child(3) {
  transform: rotate(256deg) translate(167px) rotate(-256deg);
}
.icon:nth-child(4) {
  transform: rotate(335deg) translate(151px) rotate(-335deg);
}
.icon:nth-child(5) {
  transform: rotate(390deg) translate(173px) rotate(-390deg);
}

/* ===========================
   Responsive Layout Adjustments
=========================== */

@media (max-width: 1400px) {
    .carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  /* aspect-ratio: 9 / 16; */
}
  .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 63% 37%;
    align-items: start;
  }

  .carousel {
  position: relative;
  top: 67px;
  margin: 0;
  padding: 0;
  /* background-color: #9e6e6e; */
}

  .foreground-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

 .carousel-background img {
  width: 100%;
  height: auto; 
  max-height: 273px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -5px;
 
}

.icon-container .icon {
  position: absolute;
  width: 52px;
  height: 52px;

}

.icon:nth-child(1) {
  transform: rotate(165deg) translate(185px) rotate(-165deg);
}
.icon:nth-child(2) {
  transform: rotate(206deg) translate(185px) rotate(-206deg);
}
.icon:nth-child(3) {
  transform: rotate(258deg) translate(158px) rotate(-258deg);
}
.icon:nth-child(4) {
  transform: rotate(325deg) translate(137px) rotate(-325deg);
}
.icon:nth-child(5) {
  transform: rotate(380deg) translate(135px) rotate(-380deg);
}
}

@media(max-width:1200px){
      .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: start;
  }
}

@media (max-width: 991px) {
  .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 1fr;       
    grid-template-rows: 500px auto;     
    gap: 1rem;                          
  }

  .left-banner {
    grid-row: 2; 
  }

  .right-banner {
    grid-row: 1;  
  }

  .left-banner,
  .right-banner {
    width: 100%;
  }
    .carousel-background {
    position: static; 
    height: auto;
    background-color: transparent; 
  }


  .icon-container {
    top: 160px;
  }

  .icon:nth-child(1) {
    transform: rotate(175deg) translate(187px) rotate(-175deg);
  }
  .icon:nth-child(2) {
    transform: rotate(212deg) translate(200px) rotate(-212deg);
  }
  .icon:nth-child(3) {
    transform: rotate(260deg) translate(190px) rotate(-260deg);
  }
  .icon:nth-child(4) {
    transform: rotate(318deg) translate(152px) rotate(-318deg);
  }
  .icon:nth-child(5) {
    transform: rotate(368deg) translate(130px) rotate(-368deg);
  }
}

@media (max-width: 576px) {
  .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 1fr;      
    grid-template-rows: 500px auto;     
    gap: 12px;                         
  }
    .foreground-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 388px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
 .carousel-background img {
  width: 270px;
  height: auto;
  max-height: 274px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -5px; 
}

.icon-container .icon {
  width: 41px;
  height: 41px;

}

  .icon-container {
    top: 140px;
  }

  .icon:nth-child(1) {
    transform: rotate(170deg) translate(170px) rotate(-170deg);
  }
  .icon:nth-child(2) {
    transform: rotate(208deg) translate(175px) rotate(-208deg);
  }
  .icon:nth-child(3) {
    transform: rotate(260deg) translate(157px) rotate(-260deg);
  }
  .icon:nth-child(4) {
    transform: rotate(322deg) translate(135px) rotate(-322deg);
  }
  .icon:nth-child(5) {
    transform: rotate(370deg) translate(127px) rotate(-370deg);
  }
}

@media(max-width:490px){
    .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 1fr;      
    grid-template-rows: 500px auto;     
    gap:2rem;                         
  }
   .carousel-background img {
  width: 270px;
  height: auto;
  max-height: 272px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -5px; 
}
    
}

@media(max-width:440px){

   .carousel-background img {
  max-height: 275px; 
  margin-left: -5px; 
}   
}

@media(max-width:420px){

   .carousel-background img {
  max-height: 270px; 
  margin-left: -5px; 
}   
}

@media (max-width: 391px) {

      .bannerMain-wrapper {
    display: grid;
    grid-template-columns: 1fr;      
    grid-template-rows: 480px auto;     
    gap: 12px;                         
  }

 .carousel-background img {
  width: 100%;
  height: auto;
  max-height: 248px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -4.3px; 
}

 .icon:nth-child(1) {
    transform: rotate(175deg) translate(162px) rotate(-175deg);
  }

  .icon:nth-child(5) {
    transform: rotate(366deg) translate(120px) rotate(-366deg);
  }
}
@media (max-width: 375px) {

        .bannerMain-wrapper {  
    grid-template-rows: 450px auto;                            
  }
    .carousel {
  position: relative;
  top: 58px;
  margin: 0;
  padding: 0;

}

 .carousel-background img {
  width: 100%;
  height: auto;
  max-height: 243px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -4px; 
}

 .icon:nth-child(1) {
    transform: rotate(175deg) translate(155px) rotate(-175deg);
  }
  .icon:nth-child(2) {
    transform: rotate(210deg) translate(167px) rotate(-210deg);
  }
  .icon:nth-child(3) {
    transform: rotate(261deg) translate(156px) rotate(-261deg);
  }
  .icon:nth-child(4) {
    transform: rotate(320deg) translate(129px) rotate(-320deg);
  }
  .icon:nth-child(5) {
    transform: rotate(370deg) translate(108px) rotate(-370deg);
  }
}

@media (max-width: 360px) {

  .bannerMain-wrapper {  
    grid-template-rows: 430px auto;                            
  }
    .carousel {
  position: relative;
  top: 56px;
  margin: 0;
  padding: 0;
 
}

 .carousel-background img {
  width: 100%;
  height: auto;
  max-height: 233px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -4.5px; 
}

  .icon:nth-child(1) {
    transform: rotate(173deg) translate(150px) rotate(-173deg);
  }
  .icon:nth-child(2) {
    transform: rotate(211deg) translate(165px) rotate(-211deg);
  }
  .icon:nth-child(3) {
    transform: rotate(259deg) translate(160px) rotate(-259deg);
  }
  .icon:nth-child(4) {
    transform: rotate(320deg) translate(127px) rotate(-320deg);
  }
  .icon:nth-child(5) {
    transform: rotate(366deg) translate(107px) rotate(-366deg);
  }
}
@media (max-width: 348px) {

   .bannerMain-wrapper {  
    grid-template-rows: 410px auto;                            
  }
    .carousel {
  position: relative;
  top: 52px;
  margin: 0;
  padding: 0;

}

 .carousel-background img {
  width: 100%;
  height: auto;
  max-height: 223px; 
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-left: -3.5px; 
}

  .icon:nth-child(1) {
    transform: rotate(180deg) translate(145px) rotate(-180deg);
  }
  .icon:nth-child(2) {
    transform: rotate(215deg) translate(165px) rotate(-215deg);
  }
  .icon:nth-child(3) {
    transform: rotate(260deg) translate(160px) rotate(-260deg);
  }
  .icon:nth-child(4) {
    transform: rotate(315deg) translate(127px) rotate(-315deg);
  }
  .icon:nth-child(5) {
    transform: rotate(362deg) translate(100px) rotate(-362deg);
  }
}

@media only screen and (min-width: 376px) and (max-width: 393px) {

  .carousel {
  position: relative;
  top: 63px;
  margin: 0;
  padding: 0;
  }
}


.carousel-inner {
  transition: transform 0.2s ease-in-out !important;
}

.carousel-item {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out !important;
    background: rgb(255, 255, 255);
}

.inactiveLink {
     pointer-events: none;
     cursor: default;
 }






