.hero-section {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero Content */
.hero-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-off {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Hero List Section */
.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}

/* Buttons + Timer */
.hero-button-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero-timer-wrapper {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: #f5f3fe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero_timer {
  display: flex;
  justify-content: space-around;
  width: 85%;
  align-items: center;
  font-family: var(--secondary-font);
}

/* Guarantee */
.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 5px;
}

.hero-guarantee-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-guarantee-text {
  font-size: 14px;
  font-weight: 500;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
  font-size: 16px;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.hero-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-list-section {
    align-items: center;
  }

  .hero-ul-list-items {
    align-items: center;
  }

  .hero-list-price {
    justify-content: center;
  }

  .hero-button-timer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 468px) {
  .hero-btn,
  .hero-timer-wrapper {
    width: 100%;
    max-width: 200px;
  }
}

/* Header */
.header {
  padding: 30px 0 50px;
  background: rgb(152,221,202);
  background: linear-gradient(0deg, rgba(152,221,202,1) -20%, rgba(173,232,216,1) 15%, rgba(173,232,216,1) 54%, rgba(152,221,202,1) 100%);
  background: #ffffff;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .header {
    padding: 70px 0;
  }
}

/* navigator */
.header .navigator {
  margin-bottom: 100px;
  font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--dark);
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 500;
  border-bottom-color: var(--dark);
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: var(--dark);
}

/* title-5 */
.header .title-5 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
  font-family: var(--third-font);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

/* hero */
.header .hero {
    position: absolute;
    bottom: 0px;
    left: 55%;
    width: 40%;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    left: 60%;
    width: 700px;
    visibility: hidden;
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none
  }
}
/* ========== Plans Container CSS ========== */

/* REVIEW SECTION CSS */

.review-section-container {
  background-color: #ffffff;
  padding: 25px 0;
  text-align:center;
}

.review-section{
    max-width:1100px;
}

.rating-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.rating-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-icon .icon-cpanel {
  width: 100px;
  height: 50px;
}

.rating-icon .icon-wordpress {
  height: 45px;
}

.rating-plus {
  font-size: 20px;
  margin: 0 5px;
}

.rating-dash {
  font-size: 100%;
  margin: 0 5px;
}

.rating-text-bold {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
}

.rating-text {
  font-size: 26px;
  color: var(--text-gray);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px;
  min-width: 220px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.review-logo, .review-stars{
    display:flex;
    justify-content:center;
    align-items:center;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
  width: 180px;
}

.review-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.review-text strong {
  color: var(--text-gray);
  font-weight: 600;
}

.review-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

.review-link:hover {
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
}


@media (max-width: 768px) {
  .reviews-section {
    flex-wrap: nowrap;                 
    overflow-x: auto;                  
    scroll-snap-type: x mandatory;     
    -webkit-overflow-scrolling: touch; 
    gap: 20px;
    padding: 0 10px;
  }

  .review-box {
    flex: 0 0 50%;
  }

  .reviews-section::-webkit-scrollbar {
    display: none;
  }
}

/*flexbox section*/


.flex-box-section{
padding : 60px 0;
background:#ffffff;
}

.flex-box-container{
    display:flex;
    justify-content:center;
    flex-direction: column;
    gap:20px;
    max-width:1400px;
    margin:auto;
}

.flexbox-items{
    display : flex;
    flex-direction : row;
    gap :20px;
}

.flexbox-content-list{
    list-style : none;
}


.flexbox-item-box{
    display : flex;
    background :  linear-gradient(29deg, #fff 50.19% 20.19%, #e6e2fa 100%);
     border: 1px solid #7526e32e;
     padding : 20px;
     flex : 1 1 35%;
     border-radius : 20px;
    
}

.highlight{
    color : var(--primary);
}
.list-item{
    display : flex;
    align-items : center;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.list-item::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #13b763;
    font-weight: bold;
}

.check-mark{
    width : 15px;
    height : 15px;
}


.flexbox-item{
   display:flex;
   flex-direction:column;
   gap:20px;
   color:#000000;
   border: 1px solid #7526e32e;
    height : auto;
    border-radius : 20px;
}

.flexbox-item.left{
      display :flex;
      flex-direction : column;
      width : 35%;
      padding: 25px;
      background :  linear-gradient(29deg, #fff 50.19% 20.19%, #e6e2fa 100%);
}

.flexbox-item.right {
    display : flex;
    flex-direction: row;
    justify-content: space-between;
    width : 65%;
    align-items : center;
    padding : 85px 50px 85px 35px;
    background : linear-gradient(353deg, #fff 70.19%, #e6e2fa 100%);
}

.flexbox-image-container{
    display: flex;
    align-items: center;
    justify-content: center;

}

.flexbox-item.right .flexbox-image-container{
    display : flex;
    justify-content : center;
    align-items : center;
    width : 100%;
}

.flexbox-img{
    width : 100%;
    height : 200px;
}
.flexbox-content{
    display : flex;
    flex-direction : column;
    justify-content: space-between;
    gap : 20px;
}

.flexbox-content-heading{
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    font-family: var(--secondary-font);
    
}

.flexbox-content-discription{
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    font-family: var(--secondary-font);
}

.heading-highlight{
    color :#7526e3;
    font-family: poppins;
}

/* Main button */
.flexbox-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #673DE6;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size : 18px;
    font-weight : 600;
    width:fit-content;
    border : 1px solid #7526e347;
    font-family: var(--secondary-font);
}

.flexbox-btn.mobile{
    display : none;
}

/* Arrow */
.flexbox-btn-arrow {
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.flexbox-btn:hover {
    background: #7526e3;
    color: #fff;
}

.flexbox-btn:hover .flexbox-btn-arrow {
    transform: translateX(10px);
}

.flexbox-item.below{
    display : flex;
    flex-direction : row;
    width : 100%;
    align-items : center;
    justify-content: space-between;
    padding: 30px;
    background : #f4eaf4;
    background: linear-gradient(176deg, #fff 50.19% 30.19%, #e6e2fa 100%);
}

.flexbox-item.right .flexbox-img{
    width :100%;
    height : auto;
    border-radius : 20px;
}

.flexbox-item.left .flexbox-img{
    width :100%;
    height : auto;
    border-radius : 20px;
}
.flexbox-item.below .flexbox-image-container{
    width : 40%;
    /*height :stretch;*/
}

.flexbox-item.below .flexbox-img{
    width : 100%;
    height : auto;
    border-radius : 20px;
}

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.flexbox-item.left.third{
    width : 35%;
    height : auto;
}
.flexbox-items.third .flexbox-img-container{
    display : flex;
    align-items : center;
    justify-content : center;
    margin-bottom : 20px;
}


.cards-img-container{
    border: 1px solid #7526e317;
    justify-items: center;
    width: 100%;
    height: 280px;
    background: #e6e6e633;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-img{
    width : 100%;
    height : 180px;
}

.cards-content{
    align-items :center;
}

.cards-content-text{
    text-align : center;
}

.cards-hosting-title{
    font-size: 28px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-family: var(--secondary-font);
}

.cards-button{
    display: block;
    align-items: center;
    text-align: center;
    margin-top : 20px;
}
.cards-btn{
    align-items: center;
    gap: 10px;
    color: #673DE6;
    font-size : 18px;
    font-weight : 600;
    font-family: var(--secondary-font);
}


.cards-btn-bottom{
    height: 2px;
    background: #673DE6;
    width: 50px;
    justify-self: center;
    transition : 0.3s ease;
    
}

.cards-button:hover .cards-btn-bottom {
    width : 100px;
}

@media (max-width : 1024px){
    .flexbox-item.right{
        flex-direction : column-reverse;
        padding : 25px;
        width : 60%;
    }
    
    .flexbox-item.left{
        width : 40%;
    }
    
    .flexbox-content-heading{
        font-size : 36px;
    }
    .flexbox-item.below{
        flex-direction : column-reverse;
        padding : 25px;
    }
    
    .flexbox-item.below .flexbox-image-container{
        width : 100%;
    }
    .flexbox-item.below .flexbox-img{
        width : 100%;
        height : 200px;
    }
}

@media(max-width : 1200px){
    .flexbox-item.right .flexbox-img{
        height : 300px;
    }
    .flexbox-item.right{
        flex-direction : column;
        padding : 25px;
    }
}

@media (max-width : 992px){
    
    .flexbox-item.left .flexbox-img {
        width : 100%;
        height : 300px;
    }
    
    .flexbox-item.right .flexbox-img {
        width : 100%;
        height : 300px;
    }
    
    
    .flexbox-items.first{
        flex-direction : column;
    }
    
    .flexbox-item.left{
        flex-direction: column-reverse;
        width : 100%;
    }
    
     .flexbox-item.left.flexbox-image-container{
         width : 100%;
     }
    
    
    .flexbox-item.right{
        width : 100%;
    }
    
    .flexbox-item.below .flexbox-img{
        width : 100%;
        height : 300px;
    }
    
    .flexbox-items.third{
        flex-direction : column;
    }
    
    .flexbox-item.left.third{
        width : 100%;
    }
    
    .flexbox-items.third .flexbox-img-container reveal{
        flex : 1 1 35%;
    }
    .cards-content-img{
        flex-direction : row;
        align-items : center;
        gap : 40px;
    }
    
    .cards-button{
        text-align : left;
    }
    .cards-content-text{
        text-align : left;
    }

    .cards-button{
        display : inline-block;
    }
    .flexbox-btn.desktop{
        display : none;
    }
    
    .flexbox-btn.mobile {
        display : inline-flex;
    }
    
    /*.flexbox-items.first .flexbox-image-container{*/
    /*    width : 100%;*/
    /*}*/
    
}

@media (max-width : 768px){
    .flexbox-item.right{
        flex-direction : column-reverse;
        padding : 25px;
    }
    
    .flexbox-item.right .flexbox-image-container {
        width : 100%;
    }
    
    .flexbox-content-heading{
        font-size : 26px;
    }
    .flexbox-item.third .flexbox-img-container{
        display : none;
    }
    
}

@media (max-width : 576px){
    .flexbox-items.third .flexbox-img-container{
        display : none;
    }
}



@media (max-width: 468px) {
  .rating-section {
    flex-wrap: wrap;
  }
  
  .review-box {
        flex: 0 0 100%;
    }
  
  .rating-text{
      margin-top: 10px;
  }
}

/* REVIEW SECTION CSS */

.plan_outer_container{
    margin:0 auto !important;
}

.plan_container_pointers{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.outer_plan_features{
    display: block;
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}

.outer_plan_features:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_container {
    width: 100%;
    /*margin: 84px auto 0;*/
    /*padding: 0 10px;*/
    /* padding-top: 60px;  */
    position: relative;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    /*padding: 0 20px;*/
    z-index: 1000;
}

.slider-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color:#673DE6;
    box-shadow: 0 4px 16px #00000029;
    cursor: pointer;
    height: 45px;
    justify-content: center;
    width: 45px;
    z-index: 2;
    font-size: 22px;
    line-height: 22;
    border: 0;
    outline: 0;
}

.slider-prev{
    transform:rotate(180deg);
}

.slider-button:disabled {
    background-color: #fff;
    opacity:0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 80px 0px 20px;
}

.plan_column {
    background: #fff;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    margin: 10px;
    padding: 44px 17px 14px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
}

/*.plan_column:hover {
    transform: scale(1.02);
    z-index: 100;
    
}*/

.plan_column:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

#plan2{
    border-color:#673DE6;
}

#plan3{
    border-color:#673DE6;
    background-color: #f5f3fe;
}
#plan3:before{
    background-color: #f5f3fe;
}

#plan1:hover,#plan4:hover{
    border-color:#673DE6;
}


.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -46px;
    z-index: -1;
    left: 0;
    text-align: center;
    padding: 7px 0 44px;
    padding-top: 8px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.plan-badge:before {
    position: absolute;
    background: #673DE6;
    content: "";
    left: -4px;
    top: -2px;
    right: 0;
    bottom: -43px;
    z-index: -2;
    border-radius: 14px 14px 0 0;
}

.plan-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shinePlanBadge 2s infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes shinePlanBadge {
  100% {
    left: 125%;
  }
}





.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text{
    color: #fff;
    font-size: 15px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: bolder;
}

.plan_title {
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

.plan_para {
    font-size: 14px;
    font-weight: 500;
    padding-top: 8px;
    color:var(--text-gray);
}

.plan_content {
    border-radius: 20px;
    transition: all .3s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.plan_header_box {
    position: relative;
    z-index: 10;
}

.plan_header_padding {
    padding-top: 16px;
}

.plan_price_strikethrough {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.plan_price_strikethrough:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
    background: #61646e;
}

.plan_currency_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.plan_old_price {
    /*padding-left: 2px;*/
}

.plan_save {
    color: #ED7E07;
    background: #FFF0E3;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 8px;
    display: inline-block;
}

.plan_price {
    width: 100%;
    line-height: 1;
    margin-top: 15px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
}

.plan_price_discounted {
    font-size: 48px;
    margin: 0 3px;
    line-height: 1.2;
    font-weight: 600;
}

.plan_price_unit {
    font-size: 16px;
    transform: translate(0,-4px);
    font-weight: 400;
    align-self: flex-end;
}

.plan_month_free {
    color: #673DE6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.plan_button_box {
    margin: 24px 0 22px;
    text-align: center;
}

.plan_button {
    display:flex;
    justify-content:center;
    align-items:center;
    color: #673DE6;
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid #673DE6;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: #673DE6;
    color: #fff;
}

.plan_button {
  position: relative;
  overflow: hidden;
}

.plan_button:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.btn_active_plan{
    background: #673DE6;
    color: #fff;
}

.btn_active_plan {
  position: relative;
  overflow: hidden;
}

.btn_active_plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.plan_renew_note {
    padding: 2px 0 30px;
    font-size: 12px;
}

.plan_divider {
    margin-bottom: 34px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
}

.plan_feature_list {
    padding: 0;
    list-style: none;
}

.plan_feature, .plan_feature_crossed {
    display: block;
    margin-bottom: 18px;
    padding-left: 25px;
    font-size: 13px;
    line-height: 1.2;
    position: relative;
}

.plan_feature:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_crossed {
    color: #9baab8 !important;
}

.plan_feature_crossed:before {
    content: "✗";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #ef4444;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_bold {
    font-weight: 800;
}

.plan_feature_highlight {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
    padding-bottom: 2px;
    position: relative;
    cursor: help;
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #673DE6;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 150px;
    max-width: 300px;
    max-height: 120px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
}

.plan_feature_highlight[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #673DE6;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_list_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.plan_toggle_features {
    text-align: left;
    padding-bottom: 28px;
    margin-top: auto;
}

.plan_toggle_button {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    width:100%;
    margin-bottom:20px;
}

.plan_toggle_button:after {
    background:#673DE6;
    width: 70px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.plan_toggle_button:hover:after {
    width: 138px;
}

.plan_hidden_features {
    /*display: none;*/
}

.plan_hidden_features.show {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.month_free {
    color: #673DE6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span{
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:3px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 769px) and (max-width: 1024px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Large - Show 4 plans */
@media (min-width: 1025px) and (max-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
    
    .slider-controls {
        display: none;
    }
}

/* Desktop - Show 4 plans */
@media (min-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .plan_container {
        /* padding-top: 80px; */
    }
    
    .plan_save {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .plan_price_discounted {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .plan_container {
        /* padding: 80px 5px 0; */
    }
    
    .plan_column {
        /*margin: 5px;*/
    }
    
    .plan_save {
        display: block;
        margin: 8px 0;
        margin-left: 0;
        text-align: center;
    }
}

.plan_hidden_features {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.6s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.plan_hidden_features.expanded {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: visible;
}

/*.plan_toggle_button {*/
/*  display: inline-block;*/
/*  cursor: pointer;*/
/*  margin-top: 10px;*/
/*  color: #0073e6;*/
/*  font-weight: bold;*/
/*}*/

/*BLOG SECTION CSS START*/

.section-blog-container {
  width:100%;
  background-color: #ffffff;
}

.div-container {
  /*max-width: 1600px;*/
  /*margin: 0 auto;*/
}

.div-heading-wrapper {
  margin-bottom: 40px;
}

.div-heading-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.h2-main-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.a-view-all-btn {
  font-size: 16px;
  background-color: #673DE6;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* CSS-only slider container */
.blog-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.blog-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 18px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* Navigation hint styling */
.desktop-hint {
  display: inline !important;
}

/* Blog Card Styles */
.blog-card {
  background-color: #f9f9f9;
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  min-width: 280px;
}

.blog-image-wrapper {
  overflow: hidden;
  height: 200px;
  position: relative;
  background-color: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.4) rotate(5deg);
}

.blog-card:hover {
  cursor: pointer;
}

.blog-card:hover .blog-title {
  color: #673DE6;
}

.blog-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-author a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #673DE6;
  transition: color 0.3s ease;
}

.blog-author a:hover {
  color: #5429c7;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-right: 10px;
  background-color: #673DE6;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 8px 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-tag {
  margin-top: auto;
  padding-top: 8px;
}

.tag-label {
  display: inline-block;
  background-color: rgba(103, 61, 230, 0.1);
  color: #673DE6;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive breakpoints */
@media (max-width: 480px) {
  .blog-card {
    width: calc(100% - 20px);
    max-width: 320px;
  }
  
  .blog-image-wrapper {
    height: 180px;
  }
  
  .blog-content {
    padding: 16px;
  }
  
  .blog-title {
    font-size: 16px;
  }

  .desktop-hint {
    display: none !important;
  }
  


  .nav-controls {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .blog-card {
    width: calc(50% - 10px);
    min-width: 280px;
  }
  
  .blog-image-wrapper {
    height: 160px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .blog-card {
    width: calc(33.333% - 14px);
    min-width: 280px;
  }
  
  .blog-image-wrapper {
    height: 150px;
  }
  
  .blog-title {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .blog-card {
    width: calc(25% - 15px);
    min-width: 270px;
  }
  
}

a, a:hover {
  text-decoration: none;
}

/* Smooth scrolling enhancement */
.blog-slider {
  scroll-padding-left: 20px;
}

/* Hide scrollbar but keep functionality */
.blog-slider {
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .blog-image-wrapper {
    height: 140px;
  }
  
  .blog-title {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .blog-image-wrapper {
    height: 150px;
  }
}

a, a:hover {
  text-decoration: none;
}
/* se-footer */
.se-i .se-footer .line {
  margin: 6px 12px;
}
.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-i .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}

/*------------------------------------------------------*/
/*page padding */
.p-80 {
    padding: 80px 0;
    background-color: #ffffff;
}
.about .i-c img {
    width: 400px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
/* -- :: About */
.about .row:not(:last-child) {
  margin-bottom: 60px;
}
/* text contain */
.about .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.about .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* image contain */
.about .i-c img {
  width: 400px;
}
/* ------------------------------- */

/* -- :: Features */
/* text contain */
.features .t-c h4 {
  font-size: 22px;
  color: var(--typeColor);
  font-weight: 600;
}
.features .t-c p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5 !important;
  color: var(--pColor);
  font-weight: 400;
}
/* ------------------------------- */

/* -- :: Compare */

/* table contain */
.compare .table-contain {
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 2px 4px 0 rgba(14,30,37,.12);
  border-radius: 8px;
  overflow: hidden;
}
.compare table {
  background: #fff;
}
/* table head */
.compare table thead {
  background: #e3ebed;
}
.compare table thead tr th {
  padding: 17px 20px;
}
.compare table thead tr th:nth-child(3) {
  border: 2px solid var(--thBlue);
  border-bottom: 0;
}
.compare table thead tr th img {
  min-width: 130px;
  width: 130px;
}
.compare table thead tr th span.header {
  font-size: 24px;
  color: var(--typeColor);
}
.compare table thead tr th span.th-title {
  font-size: 24px;
}
/* table body */
.compare table tbody tr:nth-child(odd) {
  background: rgba(14,30,37,.02);
}
.compare table tbody tr td:nth-child(even) {
  background: rgba(14,30,37,.02);
}
.compare table tbody tr th,
.compare table tbody tr td {
  position: relative;
  padding: 17px 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--typeColor);
  min-width: 200px;
}
.compare table tbody tr td:nth-child(3) {
  border-right: 2px solid var(--thBlue);
  border-left: 2px solid var(--thBlue);
}
.compare table tbody tr:last-child td:nth-child(3) {
  border-bottom: 2px solid var(--thBlue);
}
.compare table tbody tr td span.text {
  z-index: 1;
  position: relative;
}
.compare table tbody tr td span.text i.fa-check {
  color: var(--thGreen);
}
.compare table tbody tr td span.text i.fa-times {
  color: var(--hotColor);
}
/* ------------------------------- */

/* -- :: Wrapper 2 */
.wrapper-2 img {
  width: 400px;
}
/* text contain */
.wrapper-2 .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.wrapper-2 .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* ------------------------------- */

/* -- :: Media Query */

/* Extra Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(1) .box,
  .wrapper .boxes .row > div:nth-child(2) .box,
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-bottom-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 0;
  }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 70px;
  }
  header h1 {
    font-size: 36px;
  }
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-left-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 1px;
    border-bottom-width: 0;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* -- :: About */
  .about .t-c h3 {
    font-size: 28px;
  }
  .about .t-c p {
    font-size: 17px;
  }
  /* -- :: Compare */
  .compare table thead tr th span.header {
    font-size: 18px;
  }
  .compare table tbody tr th, .compare table tbody tr td {
    font-size: 14px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 60px;
  }
  header h1 {
    font-size: 28px;
  }
  header p {
    font-size: 18px;
  }
  /* -- :: About */
  .about .t-c h3 {
    font-size: 24px;
  }
  .about .t-c p {
    font-size: 16px;
  }
  .about .i-c img {
    width: 240px;
  }
  /* -- :: Wrapper 2 */
  .wrapper-2 img {
    width: 240px;
  }
  .wrapper-2 .t-c h3 {
    font-size: 24px;
  }
  .wrapper-2 .t-c p {
    font-size: 16px;
  }
}
/* ------------------------------- */


.flexbox-item.left{
  flex: 1 1 35%; 
}

.flexbox-item.right {
    flex : 1 1 60%;
}