/* font-family: "Outfit", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* import files */
@import url("./auth.css");
@import url("./header_footer.css");

:root{
  --body-bg:#F0F6F6;
  --text-color: #0F172A;
  --text-color-4: rgba(15, 23, 42, 0.4);
  --text-color-5: rgba(15, 23, 42, 0.5);
  --text-color-6: rgba(15, 23, 42, 0.6);
  --text-color-7: rgba(15, 23, 42, 0.7);
  --primary: #2B798D;
  --white: #FFFFFF;
  --outfit: "Outfit", sans-serif;
  --error-color: #EF4444;
  --green: #34C759;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background: var(--body-bg);
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.1;
}
a:hover{
  color: var(--primary);
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
main{
  padding: 80px 0 0;
}
section{scroll-margin-top: 0px;}
/* stop body scroll */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
/* optional but recommended */
body.menu-open {
  touch-action: none;
}
/* ----------------- common button effect ---------------- */
.outline-btn{
  color: var(--primary);
}
.filled-btn{
  color: var(--white);
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  border: 1px solid var(--primary);
}
.comn-btn-effect{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  width: 100%;
  padding: 11px 36px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  white-space: nowrap;
  transition:
    color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid var(--primary);
}
.filled-btn::before {
  background: var(--white);
}
.filled-btn:hover svg path{
  stroke: var(--primary)
}
.outline-btn::before {
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
}
.comn-btn-effect:before{
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
/* button  hover */
.outline-btn:hover {
  color: var(--white);
  border-color: var(--primary);
}
.filled-btn:hover{
  background: transparent;
  color: var(--primary);
}
.comn-btn-effect:hover::before {
  transform: translateX(0);
}
/* ----------------- common button effect [ START ]---------------- */
.title-blog{
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  padding: 90px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-blog h1{
  font-weight: 600;
  font-size: 50px;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
.legal-blog{
  padding: 60px 0;
  position: relative;
}
.legal-area{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  border-radius: 10px;
  padding: 30px;
}
.legal-heading, .legal-txt-area ol li{
  font-weight: 500;
  font-size: 22px;
  color: #19204C;
  margin-bottom: 6px;
}
.legal-txt-area p{
  font-weight: 400;
  font-size: 18px;
  color: rgba(25, 32, 76, 0.7);
  margin-bottom: 8px;
}
.legal-txt-area ul{
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
}
.legal-txt-area ul li, .legal-txt-area ol li p{
  font-weight: 400;
  font-size: 18px;
  color: rgba(25, 32, 76, 0.7);
  margin-bottom: 8px;
}
.legal-txt-area ul li:last-child, .legal-txt-area p:last-child{
  margin-bottom: 0;
}
.legal-txt-area{
  margin-bottom: 12px;
}
/* number listing */
.legal-txt-area ol{
  margin: 0;
  padding-left: 18px;
  list-style: decimal;
}
.legal-txt-area ol li ol{
  list-style: lower-alpha;
    /* padding-left: 0; */
}
.legal-txt-area ol li ol li::marker {
  content: "(" counter(list-item, lower-alpha) ") ";
}
.legal-txt-area ol li ol li{
  font-weight: 400;
  font-size: 18px;
  color: #19204C;
  margin-bottom: 10px;
}
.legal-txt-area ol li p:first-child{
  margin-top: 4px;
}
.legal-txt-area ol li ol :last-child{
  margin-bottom: 0;
}
/* --------------- Home without Login --------------- */
.check-in-blog{
  padding: 110px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-in-icon{
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  box-shadow: 0px 5.98px 31.41px 0px #00000014;
  border: 12px solid #FFF;
  width: 300px;
  height: 300px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  border-radius: 50%;
  margin: 0 auto;
}
.check-in-icon p{
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 0;
}
.check-in-card{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  padding: 15px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  width: fit-content;
  margin: 40px auto 0;
}
.check-in-time{
  text-align: center;
  padding: 0 44px;
  border-right: 1px solid #0F172A1A;
  min-width: 160px;
}
.check-in-time:last-child{
  border-right: 0;
}
.check-in-time span{
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  color: var(--text-color-6);
  display: block;
  margin-bottom: 5px;
}
.check-in-time p{
  margin-bottom: 0;
}
.check-in-time p strong{
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
}
/* Wrapper */
.progress-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

/* Base ripple style */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
}
.r1 {
  inset: -10px;
  opacity: 0.30;
}

.r2 {
  inset: -20px;
  opacity: 0.10;
}
/*
.r3 {
  inset: -48px;
  opacity: 0.10;
} */

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.r1 { animation: breathe 4s ease-in-out infinite; }
.r2 { animation: breathe 4s ease-in-out infinite 0.6s; }
.r3 { animation: breathe 4s ease-in-out infinite 1.2s; }

/* Main Circle */
.progress-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #52BBC3, #41A8A1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5.86px 30.77px 0px #00000014;
  z-index: 2;
}
/* SVG */
.progress-wrapper svg {
 position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg) scale(1.07); /* 👈 increase here */
  pointer-events: none;
}
.progress-wrapper circle {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}
.progress-wrapper circle.bg {
  stroke: #ffffff;
}
circle.progress {
  stroke: #79C1BC;
  stroke-dasharray: 283;
  stroke-dashoffset: 212; /* 25% */
  stroke-width: 4;
}
/* Text */
.progress-content {
  position: relative;
  text-align: center;
  color: #fff;
}
.progress-wrapper .percent {
  font-weight: 600;
  font-size: 50px;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}
.progress-wrapper .label {
  font-size: 28px;
  font-weight: 500;
  display: block;
}
/* -------------- checked in -------------- */
.checked-in-status{
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  margin: 0 auto;
}
.checked-in-status::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--green);

  padding: 0px;
  pointer-events: none;
  z-index: -1;
}
.checked-in-status span{
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
/* -------------- subscription plan ------------- */
.subscription-blog{
  padding: 46px 0 80px;
  position: relative;
}
.trial-box{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  padding: 26px 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  margin-bottom: 25px;
}
.trial-plan-brand img{
  height: 62px;
  min-width: 63px;
  width: 63px;
  object-fit: contain;
}
.trial-plan-txt h2{
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
  color: #0F172A;
}
.trial-plan-txt p{
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color-6);
  margin-bottom: 0;
}
/* --------------- subscription plan box--------------- */
.plan-card{
  background: var(--white);
  border: 1px solid #0F172A1A;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-card.featured {
  border: 3px solid; border-image-source: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);

}
.plan-header {
  background: rgba(43, 121, 141, 0.10);
  padding: 16px;
  border-radius: 11px 11px 0 0;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  min-height: 165px;
}
.plan-header h3 {
  font-weight: 500;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 5px;
}
.plan-desc{
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color-5);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.plan-price{
  font-weight: 600;
  font-size: 30px;
  color: #2B798D;
  display: inline-block;
}
.plan-price span{
  font-weight: 500;
  font-size: 22px;
  color: #0F172A;
}
.trial-text{
  font-weight: 400;
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 0;
}
.plan-body{
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-body h4{
  font-weight: 600;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 10px;
}
.plan-body ul{
  margin: 0;
  padding-left: 16px;
  list-style: disc;
  flex-grow: 1;
  margin-bottom: 18px;
}
.plan-body ul li{
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  color: #0F172A;
}
.plan-body ul li:last-child{
  margin-bottom: 0;
}
.key-limit-dtls{
  padding-top: 16px;
  border-top: 1px solid #0F172A1A;
}
.key-limit-dtls h4{
  color: #FF383C;
}
.plan-btn {
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  color: var(--white);
  margin-top: auto;
}
.plan-btn:hover {
  color: #41A8A1;
}
.plan-btn::before {
  background: var(--white);
}
/* -------------- Check in History with no data ----------- */
.history-blog{
  padding: 60px 0;
  position: relative;
}
.no-history-data{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 80px 0;
}
.no-history-data span{
      background: linear-gradient(180deg, #D0EFF2 0%, #F0F6F6 100%);
    width: 120px;
    height: 120px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 14px;
    backdrop-filter: blur(15px);
    box-shadow: 4px 4px 23px 3px #00edff66;
    border: 3px solid #2B798D;
}
.no-history-data h2{
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 8px;
  color: #0F172A;
}
.no-history-data p{
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color-6);
  margin-bottom: 0;
  text-align: center;
}
.history-bx{
  background: #FFFFFF;
  padding: 16px;
  border: 1px solid #0F172A1A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  margin-bottom: 25px;
}
.history-dtls{
  display: flex;
  align-items: center;
  gap: 12px;
}
.history-desc h3{
  font-weight: 500;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 4px;
}
.history-desc p{
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color-6);
  margin-bottom: 0;
}
.history-icon{
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
}
.on-time{
  background: rgba(52, 199, 89, 0.10);
  color: #34C759;
}
.late{
  background: #FF8D281A;
  color: #FF8D28;
}
.halert{
  background: #FF383C1A;
  color: #FF383C;
}
.history-status{
  padding: 3px 10px;
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border-radius: 40px;
}
/* -------------- Check in History with no data [END]----------- */
/* ---------------- profile ------------------- */
.profile-blog{
  padding: 60px 0;
  position: relative;
}
.profile-dtls{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.profl-img img{
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
}
.profl-txt h3{
  font-weight: 500;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 0;
}
.profl-txt p{
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color-7);
  margin-bottom: 0;
}
.profile-menu{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  border-radius: 12px;
  padding: 14px;
}
.profile-menu ul li{
  list-style: none;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #0F172A1A;
}
.profile-menu ul li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.settings-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
}
.profl-item-lft{
  display: flex;
  align-items: center;
  gap: 12px;
}
.profl-item-lft span{
  width: 24px;
  height: 24px;
}
.profl-item-lft h6{
  font-weight: 500;
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 0;
  line-height: 1.2;
}
.profl-item-lft small{
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color-6);
  margin-bottom: 1px;
}
.menu-side-arrow svg{
  width: 20px;
  height: 20px;
}
/* ------------------ profile side details ----------------- */
.profile-dtls-bx{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  border-radius: 10px;
}
.profile-header{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
}
.interval-form, .profile-body, .profile-plan-area{
  padding: 0 25px 25px;
}
.plan-img img{
  width: 101px;
  min-width: 101px;
  height: 100px;
  object-fit: contain;
}
.profile-header h2{
  font-weight: 600;
  font-size: 26px;
  color: #0F172A;
  margin-bottom: 0;
  white-space: nowrap;
}
.profile-header span{
  height: 1px;
  width: 100%;
  background: #0F172A1A;
}
.profile-header a span{background: none; height: auto; width: unset;}
.profile-header .form-btn{width: fit-content; min-width: 164px; margin: 0; padding: 9px 15px;}
.interval-form{
  width: 100%;
  position: relative;
}
/* check interval radio */
.check-interval{
  margin-bottom: 20px;
  position: relative;
}
.check-interval input[type="radio"]{
  position: absolute;
  left: -9999px;
}
.check-interval label{
  position: relative;
  display: block;
  padding: 15px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color);
  cursor: pointer;
  z-index: 1;
}
/* unchecked */
.check-interval input[type="radio"]:not(:checked) + label{
  background: #fff;
  border: 1px solid #0F172A1A;
}
/* checked */
.check-interval input[type="radio"]:checked + label{
  border: none;
}

/* gradient border */
.check-interval input[type="radio"]:checked + label::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #52BBC3, #41A8A1);
  z-index: -2;
}
.check-interval input[type="radio"]:checked + label::after{
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: #fff;
  z-index: -1;
}
/* ---------- Edit profile --------- */
.profile-body .profile-form{
  margin: -56px auto 0;
}
.edit-profile-bg{
  background: linear-gradient(90deg, rgba(82, 188, 195, 0.10) 0%, rgba(65, 168, 161, 0.10) 100%);
  height: 107px;
}
.profile-wrapper {
  text-align: center;
}
/* outer ring */
.profile-photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFF;
  padding: 5px;
  margin: auto;
  border: 1px solid #0303011A
}
/* image */
.profile-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
/* upload button */
.upload-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 32px;
  height: 32px;
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  border: 2px solid #FFFFFF;
  margin: 0;
}
.upload-btn svg {
  display: block;
}
/* remove button */
.remove-btn {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  color: #FF383C;
  background: transparent;
  border: none;
}
/* ---------------------- Profile premium plan ----------------- */
.plan-img{
  text-align: center;
  margin: 0 auto 20px;
}
.plan-active-bx{
  padding: 16px;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%) border-box;
  border: 2px solid transparent;
  margin-bottom: 20px;
}
.plan-active-lft{
  display: flex;
  align-items: center;
  gap: 14px;
}
.plan-active-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-active-lft span {
  display: block;
  width: 28px;
  height: 28px;
  min-width: 28px;
}
.plan-active-lft span svg{
  width: 28px;
  height: 28px;
}
.plan-active-lft h6{
  font-weight: 500;
  font-size: 18px;
  color: #0F172A;
  margin-bottom: 2px;
}
.plan-active-lft small{
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color-7);
}
.plan-rates{
  font-weight: 500;
  font-size: 20px;
  color: #0F172A;
  margin: 0;
}
.plan-rates span{
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: var(--text-color-4);
}
.plan-active-botm{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #0F172A1A;
}
.plan-active-botm ul{
  margin: 0;
  padding: 0;
  width: 100%;
}
.plan-active-botm ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-active-botm ul li{
  margin-bottom: 8px;
}
.plan-active-botm ul li span{
  font-weight: 400;
  font-size: 16px;
  color: #0F172A;
  display: block;
  margin: 0;
}
.plan-active-botm ul li:last-child{
  margin-bottom: 0;
}
.active-status{color: #34C759 !important;}
.plan-dtls-bx{
  background: #FFFFFF;
  border: 1px solid #0F172A1A;
  padding: 16px;
  border-radius: 12px;
}
.plan-dtls-bx h3{
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #2B798D;
  margin-bottom: 10px;
}
/* toggle switch button */
.switch-btn{
  margin: 0 0;
  padding: 0;
  position: relative;
  border: none;
  height: 22px;
  width: 38px;
  border-radius: 90px;
  background: #D9D9D9;
}
.switch-btn.active{
  background: linear-gradient(90deg, rgba(82, 188, 195, 0.15) 0%, rgba(65, 168, 161, 0.15) 100%);
}
.switch-btn > .handle{
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: left 0.25s;
  box-shadow: 0px 3px 3px 0px #00000026;
}
.switch-btn.active > .handle{
  left: 19px;
  transition: left 0.25s;
  background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
}



/* -------------  PROFILE SIDEBAR ---------------- */
.sidebar-header{display: none;}
.profile-menu-toggle{display: none;}
.profile-sidebar{display: none;}
.close-sidebar{
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text-color);
}
.profile-sidebar ul li a.active{
  background: linear-gradient(90deg, #52BBC3, #41A8A1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.sidebar-open{overflow: hidden;}
.sidebar-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
body.sidebar-open .sidebar-overlay{
  opacity: 1;
  pointer-events: auto;
}


/* MOBILE SIDEBAR BEHAVIOR */
@media (max-width: 991px){
    .sidebar-header{
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 15px;
      border: none;
      margin-bottom: 10px;
    }
    .profile-sidebar{display: block;}
    .profile-menu-toggle{
      width: 100%;
      border: 1px solid var(--primary);
      background: linear-gradient(90deg, #52BBC3 0%, #41A8A1 100%);
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      border-radius: 8px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .profile-sidebar{
      position: fixed;
      top: 0px;
      left: 0;
      width: 280px;
      /* height: calc(100vh - 66px); */
      height: 100dvh;
      z-index: 1050;
      border-radius:0;
      background: #FFF;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      padding: 0;
      transform: translateX(-100%);
      transition: transform .35s ease;
      display: flex;
      flex-direction: column;
    }
    .profile-body-area{
      padding: 15px;
      overflow-y: auto;
    }
    /* When sidebar is open */
    .profile-sidebar.show{transform: translateX(0);}
    .profile-plan-area{margin-top: 10px;}
    .profile-dtls{flex-flow: column; border: none; padding: 0 0 15px; border-bottom: 1px solid #42a9a3; border-radius: 0; gap: 8px;}
    .profl-txt{text-align: center;}
    .profile-menu{border: none; padding: 0;}
    .profile-menu ul li{margin-bottom: 12px; padding-bottom: 12px;}
    .profl-item-lft h6{font-size: 15px;}
}

/* -------------  PROFILE SIDEBAR [END]---------------- */

.bg-section {
  /* padding: 280px 0; */
  background-image: url(../images/bg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Modal backdrop blur */
.custom-popup .modal-content {
  border-radius: 16px;
  padding: 30px 25px;
  border: none;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.modal-text-contant {
	margin: 20px 0;
}

.qr-inner img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.modal-text-contant .popup-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #0F172A;
}

.popup-text {
	font-size: 14px;
	color: var(--text-color-6);
	margin-bottom: 0;
}

/* Buttons */
.popup-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Outline button */
.btn-outline {
  border: 1px solid #CFA707;
  color: #CFA707;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
}
.icon-circle span {
	background: linear-gradient(180deg, #D0EFF2 0%, #F0F6F6 100%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: auto;
}
.qr-code-img {
	display: flex;
	gap: 22px;
	align-items: center;
}

.qr-inner .g-play img, .qr-inner .app-store img {
	margin-bottom: 0;
  max-width: 150px;
}
.qr-inner .g-play , .qr-inner .app-store {
  display: block;
}
.subscription-modal .modal-body {
	padding: 0;
}

.profile-bg {
  /* padding: 280px 0; */
  background-image: url(../images/bg-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.profile-header-para {
	padding-left: 25px;
}

.profile-header-para p {
	color: #0F172A99;
	font-size: 18px;
}
.profile-header-para p span {
	color: #0F172A;
}

.form-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
    border: none;
    box-shadow: 0px 3px 6px 0px #4FB7BCB2;
    margin-bottom: 30px;
}
.form-btn-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/btn-bg.jpg') center/cover no-repeat;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
}

.form-btn-new::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.25), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.form-btn-new span,
.form-btn-new svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.form-btn-new svg {
    display: block;
}

.form-btn-new:hover span {
    transform: translateX(5px);
}
.plan-dtls-bx ul li {
	list-style: none;
}
.plan-ul li span {
	margin-right: 2px;
}
.plan-ul li p {
	color: #6e6e6e;
	margin-bottom: 0;
	margin-left: 25px;
}
.plan-ul {
	padding-left: 0 !important;
}

.check-bg {
  background-image: url(../images/cheack-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.back-img-forgot {
    height: 100vh;
}

.profile-body .form-btn-new, .profile-dtls-bx .form-btn-new {
    margin:0px;
}

.login-head p {
	color: rgba(15, 23, 42, 0.6);
}

.header-btns .form-btn-new.active {
   display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
 padding: 8px 34px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
  border: none;
  box-shadow: 0px 3px 6px 0px #4FB7BCB2;
}

.header-btns .form-btn-new {
   border-radius: 12px;
  padding: 8px 34px;
  color: #2B798D;

  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #52BBC3, #41A8A1) border-box;
    box-shadow: unset;
    margin: 0px;
}

.header-btns .form-btn-new::before {
   content: "";
  position: absolute;
  inset: 0;
  background: url('../images/btn-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.header-btns .form-btn-new::after {
   content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.profl-txt p {
 display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profl-txt p {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 180px;
}

.add-contact-after {
    width: max-content;
    margin: 0 auto 50px !important;
}

.add-contact-before {
    width: 50%;
}

.edit-email-bg {
  background: unset;
}
.sub-heading-text {
  color: rgba(15, 23, 42, 0.6);
  padding-left: 25px;
}

.common-section {
    height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    overflow-y: auto;
}
.bg-full {
  height: 100dvh;
}
/*btn hover*/


/* ACTIVE + HOVER SAME STYLE */
.common-modal .form-btn-new.active {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13.5px 34px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	border-radius: 12px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
	border: none;
	box-shadow: 0px 3px 6px 0px #4FB7BCB2;
	transition: all 0.3s ease;
}

.common-modal .form-btn-new {
	border-radius: 12px;
	padding: 13.5px 34px;
	color: #2B798D;
	border: 1px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #52BBC3, #41A8A1) border-box;
	box-shadow: unset;
	transition: all 0.3s ease;
}

/* .common-modal .form-btn-new:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
  border: none;
  box-shadow: 0px 3px 6px 0px #4FB7BCB2;
} */

.common-modal .form-btn-new::before, .common-modal .form-btn-new::after {
	opacity: 0;
	transition: all 0.3s ease;
}
 
.common-modal .form-btn-new::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../images/btn-bg.jpg') center/cover no-repeat;
	opacity: 0.4 !important;
	mix-blend-mode: screen;
	pointer-events: none;
	transition: all 0.3s ease;
}
.common-modal .form-btn-new::before, .common-modal .form-btn-new::after {
	opacity: 0;
	transition: all 0.3s ease;
}
.common-modal .form-btn-new::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.25), transparent 60%);
	opacity: 0.6;
	pointer-events: none;
	transition: all 0.3s ease;
}

/* Default active (No) */
.common-modal .form-btn-new.active {
    background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
    color: #fff;
    box-shadow: 0px 3px 6px 0px #4FB7BCB2;
    border: 1px solid transparent;
}

/* When hovering ANY button → it becomes active */
/* .common-modal .form-btn-new:hover {
    background: linear-gradient(90deg, #18c7b6 0%, #2f7f79 100%);
    color: #fff;
    box-shadow: 0px 3px 6px 0px #4FB7BCB2;
    border: none;
} */

/* Important: when hovering container, remove active look from default */
/* .common-modal .modal-btn-grp:hover .form-btn-new.active:not(:hover) {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #52BBC3, #41A8A1) border-box;
    color: #2B798D;
    box-shadow: unset;
} */
