.Decoration{
  text-decoration: none;
}


.container1 {
     background: linear-gradient(135deg, #012663, #094067);
}


/* MEMBERSHIP SECTION */
.membership-section1 {
    position: relative;
    width: 100%;
    min-height: 403px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
   
    text-align: center;
}


/* Content box */
.membership-content1 {
    max-width: 998px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}


/* Typography */
.main-heading1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}


.subtitle1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 20px;
    color: #fff;
}


.description1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    max-width: 893px;
    margin: 0 auto 30px auto;
    color: #fff;
    
}


.description1 .highlight {
    font-weight: 700;
}




.corebtn11 {
  background: #1cc6dd;              /* cyan background */
  color: #fff;                      /* white text */
  font-size: 1.2rem;                /* scalable font size */
  font-weight: 600;
  padding: 14px 40px;               /* vertical + horizontal padding */
  border: none;
  border-radius: 999px;             /* fully rounded pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  white-space: nowrap;              /* text doesn’t wrap */
}


/* Hover effect */
.corebtn1:hover {
  background: #17aec2;
  transform: translateY(-2px);
}


/* Small screens - shrink padding + font */
@media (max-width: 768px) {
  .corebtn1 {
    font-size: 1rem;
    padding: 12px 28px;
  }
}


/* Extra small screens - full width button */
@media (max-width: 480px) {
  .corebtn1 {
    font-size: 0.95rem;
    padding: 12px 20px;
    width: 100%;             /* button stretches across */
    max-width: 300px;        /* optional limit */
  }
}




.corebtn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* Background images */
.bg-ring1,
.bg-vector1,
.bg-star1 {
    position: absolute;
    transform: translate(-50%, -50%); /* ensures true centering */
    z-index: 0;
}


/* place ring top-left */
.bg-ring1 {
    top: 18%;
    left: 8%;
    width: 465px;
    height: 465px;
    opacity: 3.9;


}










/* glowing vector behind content */
.bg-vector1 {
    top: 10%;
    left: 20%;
    width: 900px;
    height: 500px;
    background: radial-gradient(circle at center, #00D7FF42, transparent 70%);
    filter: blur(100px);
    opacity: 1;
}


/* star top-right */
.bg-star1 {
    top: 40%;
    left: 90%;
    width: 343px;
    height: 340px;
    opacity: 3.9;
}






/* Responsive adjustments */
@media (max-width: 768px) {
    .main-heading1 {
        font-size: 40px;
        line-height: 45px;
    }
    .subtitle1,
    .description1 {
        font-size: 18px;
        line-height: 28px;
    }
    .corebtn1 {
        width: 100%;
        max-width: 350px;
        font-size: 18px;
    }
}




/* SERVICES GRID SECTION */
.services-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    margin: 20px auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    justify-content: center;
}


.service-card1 {
    position: relative;
    display: flex;              /* make it a flex container */
    flex-direction: column;     /* stack content vertically */
    width: 100%;
    max-width: 577px;
    height: auto;
    min-height: 399px;
    border-radius: 45px;
    border: 1px solid #191A23;
    background: linear-gradient(
        180deg,
        rgba(1, 38, 99, 0.6) 12.98%,
        rgba(46, 239, 253, 0.5) 100%
    );
    box-shadow: 0 5px 0px 0px #191A23;
    padding: 40px 35px;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    opacity: 1;
}


.service-card1:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Service Card Typography */
.service-title1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 15px;
    color: #fff;
}


.service-subtitle1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 20px;
    color: #fff;
}


.service-benefits1 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
    margin-bottom: auto;
    padding-right: 140px;
}








/* Logo container for all cards */
.logocontainer {
  position: absolute;
  right: 25px;   /* adjust spacing from right edge */
  bottom: 20px;  /* adjust spacing from bottom */
  width: 120px;  /* fixed box size for consistency */
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Logo images adapt inside the container */
.logocontainer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .logocontainer {
    width: 90px;
    height: 90px;
    right: 20px;
    bottom: 15px;
  }
}


@media (max-width: 480px) {
  .logocontainer {
    width: 70px;
    height: 70px;
    right: 15px;
    bottom: 10px;
  }
}




/* .service-logo11 {
    width: 150px;
    height: 155px;
    object-fit: contain;
    position: absolute;
    right: 35px;
    bottom: 10px;
   
} */






/* .service-logo1 {
    width: 150px;
    height: 155px;
    object-fit: contain;
    position: absolute;
    right: 35px;
    bottom: -10px;
   
}


.service-logo1 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
} */


 .access-btn {
    align-self: flex-start; /* keeps button aligned to left */
    margin-top: auto;       /* pushes button to bottom */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 209px;   /* stays max 209px on large screens */
      height: 58px;
      border-radius: 30px;
      background: #21c0dc;
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0 20px; /* allows text to scale inside */
      box-sizing: border-box;
    }

    .access-mml-btn {
    align-self: flex-start; /* keeps button aligned to left */
    margin-top: auto;       /* pushes button to bottom */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 100px;   /* stays max 209px on large screens */
      height: 50px;
      border-radius: 30px;
      background: #21c0dc;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0 20px; /* allows text to scale inside */
      box-sizing: border-box;
    }

    .access-btn:hover {
      background: #1aa8c2;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }


      /* Responsive tweaks */
    @media (max-width: 768px) {
      .access-btn {
        max-width: 180px;
        height: 54px;
        font-size: 16px;
      }
    }


    @media (max-width: 480px) {
      .access-btn {
        max-width: 50%;   /* full width on mobile */
        height: 50px;
        font-size: 15px;
      }
    }


/* BOTTOM CTA SECTION */
.bottom-cta1 {
    text-align: center;
    margin-top: 80px;
    padding: 60px 20px 40px;
    max-width: 910px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color: #fff;
}


/* Bottom CTA Heading */
.bottom-cta1 h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1;
    color: #fff;
}


/* Bottom CTA Paragraph */
.bottom-cta1 p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 25px;
    opacity: 1;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}


/* CTA Button */
.bottom-cta1 .corebtn1 {
    display: block;
    margin: 20px auto;
    width: 453px;
    max-width: 100%;
    height: 58px;
    border-radius: 30px;
    opacity: 1;
}


/* Disclaimer */
.bottom-cta1 .disclaimer1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    max-width: 752px;
    margin: 20px auto 0;
    opacity: 1;
}


.bottom-cta1 .ellipse11 {
    position: absolute;
    top: -150px;
    left: 83%;
    transform: translateX(-40%);
    width: 439px;
    height: 439px;
    border-radius: 50%;
   
   
   
}


/* Make the logo container stick to bottom-right */
.lifestyle-card1 .logo-container1 {
   position: absolute;
  bottom: 20px;   /* smaller offset */
  right: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;   /* ✅ wrap logos if too small on mobile */
  max-width: 100%; 
}



.service-card1.lifestyle-card1 {
  position: relative;  
  overflow: hidden;    
}


/* Common logo style (responsive) */
.lifestyle-card1 .logo-container1 img {
  width: 100px;   /* default size */
  height: auto;
  object-fit: contain;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .lifestyle-card1 .logo-container1 img {
    width: 70px; /* smaller on tablets */
  }
}


@media (max-width: 480px) {
  .lifestyle-card1 .logo-container1 {
    bottom: 15px;  
    right: 10px;
    gap: 8px;
  }
  .lifestyle-card1 .logo-container1 img {
    width: 55px; /* smaller on mobile */
  }
}


/* Centered logo container when logged in */
.logo-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    /* spacing between images */
    margin-top: 20px;
    /* little spacing from text */
}

.logo-container-center img {
    width: 170px;
    /* increase size */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-container-center img:hover {
    transform: scale(1.1);
    /* hover zoom effect */
}


/* RESPONSIVE BREAKPOINTS */


/* Large Desktop (1440px and below) */
@media (max-width: 1440px) {
    .membership-section1 {
        width: 100%;
        left: 0;
    }
}


/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .membership-section1 {
        top: 60px;
        padding: 60px 15px;
    }
   
    .main-heading1 {
        font-size: 52px;
        line-height: 54px;
    }
   
    .services-grid1 {
        max-width: 950px;
        gap: 25px;
        margin: 140px auto;
    }
   
    .service-card1 {
        max-width: 100%;
        padding: 35px 30px;
    }
   
    .service-benefits1 {
        padding-right: 120px;
    }
   
    .service-logo1 {
        width: 95px;
        height: 140px;
        right: 30px;
        bottom: 30px;
    }
}


/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    .membership-section1 {
        top: 40px;
        padding: 50px 15px;
    }
   
    .main-heading1 {
        font-size: 45px;
        line-height: 48px;
    }
   
    .subtitle1 {
        font-size: 22px;
        line-height: 32px;
    }
   
    .description1 {
        font-size: 22px;
        line-height: 32px;
    }
   
    .services-grid1 {
        margin: 120px auto;
        gap: 25px;
        max-width: 800px;
    }
   
    .service-card1 {
        padding: 32px 28px;
        border-radius: 40px;
    }
   
    .service-title1 {
        font-size: 28px;
    }
   
    .service-subtitle1 {
        font-size: 18px;
    }
   
    .service-benefits1 {
        font-size: 18px;
        line-height: 22px;
        padding-right: 110px;
    }
   
    .service-logo1 {
        width: 85px;
        height: 125px;
        right: 28px;
        bottom: 28px;
    }
   
    .bottom-cta1 h2 {
        font-size: 40px;
        line-height: 44px;
    }
   
    .bottom-cta1 p {
        font-size: 22px;
        line-height: 32px;
    }
   
    .bg-ring1 {
        width: 280px;
        height: 245px;
        top: -140px;
        left: -25px;
    }
   
    .bg-vector1 {
        width: 750px;
        height: 420px;
        top: -140px;
        left: -50px;
    }
   
    .bg-star1 {
        width: 250px;
        height: 250px;
        top: 15px;
        right: -35px;
    }
}


/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }
   
    .membership-section1 {
        top: 20px;
        padding: 40px 15px;
    }
   
    .main-heading1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 15px;
    }
   
    .subtitle1 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }
   
    .description1 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 25px;
    }
   
    .description1 br {
        display: none;
    }
   
    .corebtn1 {
        width: 100%;
        max-width: 400px;
        font-size: 18px;
    }
   
    .services-grid1 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 80px auto;
        padding: 0 15px;
        max-width: 100%;
    }
   
    .service-card1 {
        width: 100%;
        max-width: none;
        padding: 30px 25px;
        border-radius: 35px;
        min-height: auto;
        height: auto;
    }
   
    .service-title1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
   
    .service-subtitle1 {
        font-size: 17px;
        margin-bottom: 15px;
    }
   
    .service-benefits1 {
        font-size: 16px;
        line-height: 20px;
        padding-right: 0;
        margin-bottom: 70px;
    }
   
    .service-logo1 {
        width: 70px;
        height: 105px;
        right: 25px;
        bottom: 25px;
    }
   
    .bottom-cta1 {
        margin-top: 60px;
        padding: 40px 15px 30px;
    }
   
    .bottom-cta1 h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 25px;
    }
   
    .bottom-cta1 p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
   
    .bottom-cta1 p br {
        display: none;
    }
   
    .bottom-cta1 .disclaimer1 {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }
   
    .bg-ring1 {
        width: 220px;
        height: 195px;
        top: -100px;
        left: -15px;
    }
   
    .bg-vector1 {
        width: 500px;
        height: 300px;
        top: -100px;
        left: -30px;
    }
   
    .bg-star1 {
        width: 180px;
        height: 180px;
        top: 25px;
        right: -25px;
    }
   
    .bottom-cta1 .Ellipse1 {
        width: 180px;
        height: 170px;
        top: -20px;
        left: 75%;
        font-size: 10px;
    }
}


/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
    .membership-section1 {
        top: 15px;
        padding: 35px 12px;
    }
   
    .main-heading1 {
        font-size: 32px;
        line-height: 36px;
    }
   
    .subtitle1 {
        font-size: 18px;
        line-height: 26px;
    }
   
    .description1 {
        font-size: 16px;
        line-height: 24px;
    }
   
    .services-grid1 {
        margin: 70px auto;
        gap: 18px;
        padding: 0 12px;
    }
   
    .service-card1 {
        padding: 25px 20px;
        border-radius: 30px;
    }
   
   
    .service-title1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
   
    .service-subtitle1 {
        font-size: 15px;
        margin-bottom: 12px;
    }
   
    .service-benefits1 {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 60px;
    }
   
    .service-logo1 {
        width: 60px;
        height: 90px;
        right: 20px;
        bottom: 20px;
    }
   
    .bottom-cta1 {
        padding: 35px 12px 25px;
    }
   
    .bottom-cta1 h2 {
        font-size: 28px;
        line-height: 32px;
    }
   
    .bottom-cta1 p {
        font-size: 16px;
        line-height: 24px;
    }
   
    .corebtn1 {
        font-size: 16px;
        height: 52px;
        line-height: 52px;
    }
}


/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    body {
        padding: 0 8px;
    }
   
    .membership-section1 {
        top: 10px;
        padding: 30px 10px;
    }
   
    .main-heading1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }
   
    .subtitle1 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 12px;
    }
   
    .description1 {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
   
    .services-grid1 {
        margin: 50px auto;
        gap: 15px;
        padding: 0 10px;
    }
   
    .service-card1 {
        padding: 22px 18px;
        border-radius: 25px;
    }
   
    .service-title1 {
        font-size: 20px;
        margin-bottom: 8px;
    }
   
    .service-subtitle1 {
        font-size: 14px;
        margin-bottom: 10px;
    }
   
    .service-benefits1 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 55px;
    }
   
    .service-logo1 {
        width: 50px;
        height: 75px;
        right: 18px;
        bottom: 18px;
    }
   
    .bottom-cta1 {
        margin-top: 40px;
        padding: 30px 10px 20px;
    }
   
    .bottom-cta1 h2 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 20px;
    }
   
    .bottom-cta1 p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }
   
    .corebtn1 {
        font-size: 15px;
        height: 48px;
        line-height: 48px;
    }
   
    .bottom-cta1 .disclaimer1 {
        font-size: 10px;
        line-height: 18px;
        margin-top: 12px;
    }
   
    .bg-ring1 {
        width: 160px;
        height: 140px;
        top: -70px;
        left: -8px;
    }
   
    .bg-vector1 {
        width: 350px;
        height: 220px;
        top: -70px;
        left: -15px;
    }
   
    .bg-star1 {
        width: 130px;
        height: 130px;
        top: 15px;
        right: -15px;
    }
   
    .bottom-cta1 .Ellipse11 {
        width: 140px;
        height: 130px;
        top: -10px;
        left: 65%;
    }
}


/* Small Mobile (380px and below) */
@media (max-width: 380px) {
    .main-heading1 {
        font-size: 24px;
        line-height: 28px;
    }
   
    .subtitle1 {
        font-size: 15px;
        line-height: 22px;
    }
   
    .description1 {
        font-size: 14px;
        line-height: 20px;
    }
   
    .service-card1 {
        padding: 20px 15px;
        border-radius: 20px;
    }
   
    .service-title1 {
        font-size: 18px;
    }
   
    .service-subtitle1 {
        font-size: 13px;
    }
   
    .service-benefits1 {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 50px;
    }
   
    .service-logo1 {
        width: 45px;
        height: 65px;
        right: 15px;
        bottom: 15px;
    }
   
    .bottom-cta1 h2 {
        font-size: 20px;
        line-height: 24px;
    }
   
    .bottom-cta1 p {
        font-size: 14px;
        line-height: 20px;
    }
   
    .corebtn1 {
        font-size: 14px;
        height: 44px;
        line-height: 44px;
    }
   
    .bottom-cta1 .disclaimer1 {
        font-size: 11px;
        line-height: 16px;
    }
}


/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .membership-section1 {
        top: 5px;
        padding: 25px 8px;
    }
   
    .main-heading1 {
        font-size: 22px;
        line-height: 26px;
    }
   
    .subtitle1 {
        font-size: 14px;
        line-height: 20px;
    }
   
    .description1 {
        font-size: 13px;
        line-height: 19px;
    }
   
    .services-grid1 {
        margin: 40px auto;
        gap: 12px;
        padding: 0 8px;
    }
   
    .service-card1 {
        padding: 18px 12px;
        border-radius: 18px;
    }
   
    .service-title1 {
        font-size: 16px;
    }
   
    .service-subtitle1 {
        font-size: 12px;
    }
   
    .service-benefits1 {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 45px;
    }
   
    .service-logo1 {
        width: 40px;
        height: 55px;
        right: 12px;
        bottom: 12px;
    }
   
    .bottom-cta1 {
        padding: 25px 8px 15px;
    }
   
    .bottom-cta1 h2 {
        font-size: 18px;
        line-height: 22px;
    }
   
    .bottom-cta1 p {
        font-size: 13px;
        line-height: 19px;
    }
   
    .corebtn1 {
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
    }
   
    .bottom-cta1 .disclaimer1 {
        font-size: 10px;
        line-height: 14px;
    }
   
    .bg-ring1 {
        width: 120px;
        height: 105px;
        top: -50px;
        left: -5px;
    }
   
    .bg-vector1 {
        width: 280px;
        height: 180px;
        top: -50px;
        left: -10px;
    }
   
    .bg-star1 {
        width: 100px;
        height: 100px;
        top: 10px;
        right: -10px;
    }
   
    .bottom-cta1 .Ellipse1 {
        width: 100px;
        height: 95px;
        top: -10px;
        left: 60%;
    }
}


/* Container responsiveness */
.container1 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}


/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

.highlight-amount {
  position: relative;
  color: #fff !important;
  display: inline-block;
  z-index: 1;              
}

.highlight-amount::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;   /* adjust glow size */
  height: 150px;
  /* background: radial-gradient(circle at center, rgba(0, 174, 255, 0.8), transparent 70%); */
  filter: blur(30px);
  z-index: -1;    /* glow behind text */
  border-radius: 50%;
}

