body {
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.plan-details {
  padding: 100px 0;
}

.banner-plan {

  position: relative;
  background-image: url(../images/2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  padding: 100px 0;
}
.banner-plan::after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000078;
}


.banner-plan .planinner-text {
    margin-top: 180px;
    /* background-color: #000000;
    padding: 10px 80px;
    border-radius: 20px;
    border-left: 5px solid #f0c800;
    border-bottom: 5px solid #f0c800; */
    position: relative;
    z-index: 1;
    /* display: inline-block; */
}

.planinner-text h2 {
  text-align: center;
  font-weight: bold;
  font-size: 60px;
  color: #ffffff;

  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(0, 0, 0, 0.4);
}

.wave-text h2 span {
  display: inline-block;
  animation: wave 1.8s ease-in-out infinite;
}

/* Delay for wave motion */
.wave-text h2 span:nth-child(1)  { animation-delay: 0s; }
.wave-text h2 span:nth-child(2)  { animation-delay: 0.1s; }
.wave-text h2 span:nth-child(3)  { animation-delay: 0.2s; }
.wave-text h2 span:nth-child(4)  { animation-delay: 0.3s; }
.wave-text h2 span:nth-child(5)  { animation-delay: 0.4s; }
.wave-text h2 span:nth-child(6)  { animation-delay: 0.5s; }
.wave-text h2 span:nth-child(7)  { animation-delay: 0.6s; }
.wave-text h2 span:nth-child(8)  { animation-delay: 0.7s; }
.wave-text h2 span:nth-child(9)  { animation-delay: 0.8s; }
.wave-text h2 span:nth-child(10) { animation-delay: 0.9s; }
.wave-text h2 span:nth-child(11) { animation-delay: 1s; }
.wave-text h2 span:nth-child(12) { animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  } 

  50% {
    transform: translateY(-15px);
  }
}





.banner-plan .extra-head {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    background: #000000;
    border-bottom: 6px solid #f2d896;
    border-radius: 20px;
    box-shadow: rgba(228, 225, 225, 0.25) 0px 54px 55px, rgba(190, 189, 189, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    padding: 12px 10px;
    transform: translate(-50%, -50%);
        min-height: 50px;
		max-height: 60px;
}

.banner-plan .second-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-plan .second-link img {
  height: 76px;
  padding-right: 40px;
}

.banner-plan .second-link li a {
  font-size: 15px;
  text-transform: capitalize;
  font-weight: bold;
  color: #ffffff;
}
@media  (max-width:900px){

.banner-plan .planinner-text {
    margin-top: 185px;
    color: #fff;
}
.banner-plan .planinner-text h2 {
    color: #ffffff;
}
}
@media  (min-width:1800px) and (max-width:2500px){
    .banner-plan {
   height: 700px;
    }
    .tab-buttons{
      margin-left: 25px !important;
      margin: 0;
    }
    .banner-plan .planinner-text{
      margin-top: 347px;
    }
}
/******** plan banner end *********/
/******** plan-box start *********/
.plan-details {
  /* background-image: url(../images/planinner-midBG.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}


.plan-details .plan-innerbox {
padding: 20px 10px;
    height: 267px;
    border: 2px solid #000000;
    border-radius: 20px;
    transition: 1.5s all;
}
 .plan-details .plan-innerbox:hover {
  box-shadow: none;
  transform: translateY(10px);
}
.plan-details .plan-duration h2 {
  font-weight: bold;
  font-size: 25px;
  padding: 5px 0;
  color: #114b70;
}

.plan-details .innerbox-details {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 11px;
}

.plan-details .img-plan {
  display: flex;
  justify-content: center;
  align-items: center;
}
 .plan-subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-benefitBTN {
  padding: 15px 100px;
  background-color: #f2d896;
  color: #000000;
  font-size: 22px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  margin-top: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Unique smooth hover with shine effect */
 .plan-benefitBTN::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

 .plan-benefitBTN:hover {
  background-color:#fff;
  color: #000;
  box-shadow: 0 0 20px rgba(246, 216, 97, 0.6);
  transform: translateY(-3px);
}

 .plan-benefitBTN:hover::before {
  left: 125%;
}

.tab-container {
  padding: 20px;
  border-radius: 10px;
  max-height: 550px;
  min-height: 520px;
}

.plan-benefit {
  padding: 50px 0;
  background-color: #000000;
}

.benefit-img {
  margin-top: 20px;
  border-top: 3px solid #d1ab36;
  border-left: 3px solid #000000;
  padding-top: 10px;
  padding-left: 10px;
}

.benefit-img img {
  border-radius: 20px;
  width: 100%;
  height: 380px;
}

.plan-cutprice {
  padding: 10px 0px 5px 0px;
  color: red;
  font-size: 25px;
  font-weight: 500;
  text-decoration: line-through;
}

.plan-mainprice {
  padding: 10px 0px 5px 0px;
  color: #000000;
  font-size: 30px;
  font-weight: 600;
}

.plan-innerBTN {
    background: linear-gradient(90deg, #0d6efd 0%, rgba(0, 0, 0, 1) 100%);
  padding: 5px 22px;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 18px;
  color: #fff;
  margin: 10px 0 5px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.8s ease;
}

/* Simple hover with glow and lift */
.plan-innerBTN:hover {
background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  box-shadow: 0 0 12px rgba(197, 173, 16, 0.6);
  transform: translateY(-2px);
 color: #ffffff;
}


/******** tab start *********/
.heading-with-checkbox {
  position: relative;
}

.heading-with-checkbox h2 {
  /* padding-left: 20px; */
  font-size: 20px;
  font-weight: bold;
  color: #dbffdb;
}

.tab-content p {
  padding-left: 20px;
  color: #fff;
}

.tab-content li {
  color: #fff;
  /* padding: 0px 0px 20px 10px; */
}
.tab-content ul li i {
  color: #0075ff;
}


@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 10px rgb(1, 197, 17));
  }

  50% {
    filter: drop-shadow(0 0 20px rgb(0, 255, 34));
  }

  100% {
    filter: drop-shadow(0 0 5px rgb(217, 255, 0));
  }
}

.plan-checkPOINT {
  position: relative;
  /* padding-left: 10px; */
}

.plan-checkPOINT h5 {
  padding-bottom: 10px;
  color: #d9b46d;
  font-weight: bold;
  font-size: 25px;
}

.planinner-tab {
  padding: 0px 0;
}

.tab-buttons {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  margin-bottom: 30px;
  border-bottom: 2px solid #fff;
  background: #f2d896;
  padding: 8px 10px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
}

.tab-buttons button {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
  cursor: pointer;
  color: #000000;
  font-size: 16px;
}

.tab-buttons button.active {
  background:#000000;
  border-radius: 15px;
  color: #ffffff;
}

.tab-content {
  display: none;
  padding: 20px;
  /* border-left: 1px solid #030375; */
}

.tab-content.active {
  display: block;
}

@media (max-width:1200px) {
  .tab-buttons::before {
    display: none;
  }

  .tab-buttons::after {
    display: none;
  }
}
@media (max-width:990px) {
  .tab-container{
    padding: 20px 0px 0px 0px;
  }
.plan-innerbox{
  margin-bottom: 20px;
}
}
/******** tab end *********/


.benefit-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.05) 75%,
      transparent 75%,
      transparent);
  background-size: 50px 50px;
  animation: move-bg 6s linear infinite;
}

@keyframes move-bg {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50px);
  }
}

.benefit-content {
  position: relative;
  color: #000000;
  z-index: 2;
}

.benefit-name {
  text-align: center;
}

.benefit-name h5 {
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #fff;
}

.benefit-name p {
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 10px;
  color: #fff;
}

.animated-text {
  font-weight: 800;
  text-align: center;
  color: #ffffff;
font-size: 20px;
  text-shadow:
    0 0 10px rgba(43, 0, 255, 0.6),
    0 0 25px rgba(22, 76, 255, 0.4);
}

/* Cursor */
.animated-text::after {
  content: "|";
  margin-left: 6px;
  animation: blink 5s infinite;
  color: #ffffff;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


