/* ------------------------ *
- Page: Index.html
--------------i------------- */

/* Header HERO OFFER SECTIOMN */
.header {
  padding: 30px 0 20px;
  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: 30px 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);
}

.faqs{
    background-color:rgb(236, 237, 249);
}



/*HERO SECTION MAIN CONTAINER CSS*/

.hero_container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.left-hero-container{
    width:50%;
}


.left-hero-content{
    display:flex;
    width:100%;
    justify-content:flex-start;
    flex-direction:column;
}

.header .title-5 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.header .title-1{
    font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),2.500rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom:15px;
}

.hero-off{
    color:var(--primary);
}

.hero-list-section {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:start;
    margin-bottom: 20px;
}

.hero-list-section .list-section-order {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
}


.hero-list-section .section-order-listing {
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    width: max-content;
    align-items: start;
}

.hero-list-section .section-order-listing::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;
    gap: 10px
}

.price-old {
    text-decoration: line-through;
    text-decoration-color:#61646e;
    font-size: 16px;
}

.price-current {
    position:relative;
}

.per-rupee{
  font-size: 28px;
  color:var(--text-gray);
  position:absolute;
  top:0px;
}

.rupee-number{
    color: var(--dark); 
    font-weight: 700;
    font-size: clamp(2.01rem, calc(.5rem + 2.9004vw), 2.500rem);
    margin-left:20px;
}

.per-month {
    font-weight: 500;
    font-size: 20px;
    color:var(--text-gray);
}

.bonus {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

.underline-dotted {
    color:var(--dark);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
}

.hero-button-timer{
    display:flex;
    justify-content:start;
    align-items:center;
    gap:20px;
}

.hero-btn{
    font-size: 15px;
    background-color: var(--primary);
    border:none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 54px;
    width:200px;
    line-height: 1;
    letter-spacing: 0.8px;
    font-family: var(--secondary-font);
}

#timer {
    font-size: 15px;
    background-color: #f5f3fe;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    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);
}

.hero-image-section{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50%;
}

.tooltip {
    position: relative; /* Important for absolute positioning of tooltip-content */
    display: inline-block;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%) scale(0.98);
    background: var(--primary);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 200px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    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;
    transform: translateY(-50%) scale(1);
}

.hero-moneyback{
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
    gap: 5px;
}

.moneyback-svg{
    display: flex;
    justify-content: center;
    align-items: center;
}

.moneyback-text{
    font-weight:16px;
    font-weight:500;
}


@media screen and (max-width: 768px) {
    
    .hero_container{
        flex-direction: column;
    }
    
    .left-hero-container{
        width:100%;
    }
    
    .header .title-1{
        width:100%;
    }
    
    .list-section-order{
        align-items:center;
    }
    
    .hero-list-price{
        justify-content:center;
    }
    
    .hero-button-timer{
        justify-content:center;
        flex-direction: column-reverse;
    }
    
    .hero-image-section{
        margin-top:50px;
        width:100%;
    }
    
    .hero-list-section {
        align-items: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);
    }
    
    .hero-moneyback{
        justify-content:center;
    }

}

/*HERO CONTAINER SECTION CSS END*/


/* 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;
}

.user-logo-txt{
    font-size:20px;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
}

.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;
  }
}

@media (max-width: 468px) {
  .rating-section {
    flex-wrap: wrap;
  }
  
  .review-box {
        flex: 0 0 100%;
    }
  
  .rating-text{
      margin-top: 10px;
  }
}

/* REVIEW SECTION CSS */



/* Base testimonials styles */

.client-testimonials-section {
    /*background: #f2f3f6;*/
    background: #ffffff;
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.client-testimonials-section>.container{
    max-width:100%;
    width:100% !important;
}

.client-testimonials-header {
    max-width: 750px;
    margin: 0 auto 40px;
}

.client-testimonial-quote{
    display:none;
}

.infinite-scroll-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.infinite-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollRight 60s linear infinite;
    padding: 20px 0;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.infinite-scroll-track-left{
    animation: scrollLeft 60s linear infinite;
}

.infinite-scroll-container:hover .infinite-scroll-track {
    /*animation-play-state: paused;*/
}

.infinite-scroll-container:before {
    background: linear-gradient(270deg, rgba(12, 13, 13, 0) 0, #ffffff 70%);
    left: 0;
}

.infinite-scroll-container:after{
    background: linear-gradient(90deg, rgba(12, 13, 13, 0) 0, #ffffff 70%);
    right: 0;
}


.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    width: 400px;
    min-width: 400px;
    min-height: 200px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    will-change: transform;
    backface-visibility: hidden;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card-head {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.testimonial-card-para {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-client-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.author-title1{
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.author-title2 {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}




/*MONEY BACK GUARANTEE CSS*/

/* Section */
.money-back-section {
  padding: 60px 0;
  background-color:#ffffff;
}

.money-back-box {
  background: var(--primary);
  border-radius: 30px;
  padding:20px;
}

.money-back-row {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 30px;
}

.money-back-image {
    width:30%;
  text-align: center;
}

.money-back-content{
    width:70%;
    margin:0 20px;
}

.money-back-img {
  width: 65%;
  filter: invert(1);
}

.money-back-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.money-back-text {
  font-size: 18px;
  color: #ffffff;
}


.money-back-btn {
  display: none;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  background: #ffffff;
  border:none;
}


@media (max-width: 768px) {
  .money-back-section {
    padding: 40px 0;
  }

  .money-back-box {
    text-align: center;
  }

  .money-back-row {
    flex-direction: column;
    gap: 20px;
  }

  .money-back-title {
    font-size: 28px;
  }

  .money-back-text {
    font-size: 16px;
  }
  
  .money-back-image{
      width:40%;
  }
  
  .money-back-img{
      width:80%;
  }
  
  .money-back-content{
      width:100%;
  }
}

@media (max-width: 468px) {
    
    .money-back-image{
        width:50%;
    }
    .money-back-img{
       width:100%;
     }
     
}


/*MONEY BACK GUARANTEE CSS END*/


/* ========== Plans Container 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:var(--primary);
    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:var(--primary);
}

#plan3{
    border-color:var(--primary);
    background-color: #f5f3fe;
}
#plan3:before{
    background-color: #f5f3fe;
}

#plan1:hover,#plan4:hover{
    border-color:var(--primary);
}


.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: var(--primary);
    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%;
  }
}

/* Pricing plan Start */

.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: var(--primary);
    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: var(--primary);
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: var(--primary);
    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: var(--primary);
    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: var(--primary);
    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 var(--primary);
    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:var(--primary);
    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: var(--primary);
    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%;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* 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;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* 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;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* 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-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: var(--primary);
  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: var(--primary);
}

.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: var(--primary);
  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: var(--primary);
  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: var(--primary);
  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;
}

/* Pricing plan Ends */

/* plan */
/*.se-i .plans .plan {*/
/*  position: relative;*/
/*  padding: 40px;*/
/*  background-color: var(--dark);*/
/*  border: 1px solid var(--dark);*/
/*  border-radius: 12px;*/
/*  height: 100%;*/
/*  z-index: 2*/
/*}*/
/*.light-theme .se-i .plans .plan {*/
/*  background-color: #ffffff;*/
/*  border-color: var(--border);*/
/*}*/

/* popular-box */
/*.se-i .plans .plan .popular-box {*/
/*  position: absolute;*/
/*  top: 15px;*/
/*  right: 15px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  background-color: #000000;*/
/*  font-size: 12px;*/
/*  font-weight: 600;*/
/*  color: #ffffff;*/
/*}*/
/*.light-theme .se-i .plans .plan .popular-box {*/
/*  background-color: #fff;*/
/*}*/
/*.se-i .plans .plan .popular-box::before {*/
/*  position: absolute;*/
/*  content: '';*/
/*  left: -4px;*/
/*  top: -4px;*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  background: conic-gradient(*/
/*    #fd004c,*/
/*    #fe9000,*/
/*    #fff020,*/
/*    #3edf4b,*/
/*    #3363ff,*/
/*    #b102b7,*/
/*    #fd004c*/
/*  );*/
/*  animation: spin 1.5s infinite linear;*/
/*  border-radius: 50%;*/
/*  z-index: -1;*/
/*}*/
/*.se-i .plans .plan .popular-box img {*/
/*  width: 17px;*/
/*  filter: invert(1);*/
/*}*/
/*.light-theme .se-i .plans .plan .popular-box img {*/
/*  filter: invert(0);*/
/*}*/

/* plan-icon */
/*.se-i .plans .plan-icon {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 54px;*/
/*  height: 54px;*/
/*  border-radius: 50%;*/
/*  margin-bottom: 20px;*/
/*  margin-left: -4px*/
/*}*/

/* plan-head */
/*.se-i .plans .plan-head {*/
/*  margin-bottom: 25px;*/
/*  padding-bottom: 10px;*/
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
/*}*/
/*.light-theme .se-i .plans .plan-head {*/
/*  border-color: var(--border);*/
/*}*/
/*.se-i .plans .plan-name {*/
/*  font-size: 20px;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 600;*/
/*  color: #ffffff;*/
/*}*/
/*.light-theme .se-i .plans .plan-name {*/
/*  color: var(--dark);*/
/*}*/
/*.se-i .plans .plan-para {*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  min-height: 50px*/
/*}*/

/* plan-price */
/*.se-i .plans .plan-price {*/
/*  margin-bottom: 20px*/
/*}*/
/*.se-i .plans .plan-price .price {*/
/*  font-size: 30px;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 700;*/
/*  color: #ffffff;*/
/*}*/
/*.light-theme .se-i .plans .plan-price .price {  */
/*  color: var(--dark);*/
/*}*/
/*.se-i .plans .plan-price .price-comment {*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*}*/

/* actions */
/*.se-i .plans .actions {*/
/*  padding-bottom: 10px*/
/*}*/

/* group */
/*.se-i .plans .group {*/
/*  margin-top: 45px;*/
/*}*/
/*.se-i .plans .group .title-4 {*/
/*  font-size: 16px;*/
/*  font-weight: 500;*/
/*  color: #ffffff;*/
/*  margin-bottom: 20px*/
/*}*/
/*.light-theme .se-i .plans .group .title-4 {*/
/*  color: var(--dark);*/
/*}*/
/*.se-i .plans .group .list li {*/
/*  position: relative;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  padding-right: 26px;*/
/*}*/
/*.se-i .plans .group .list li:not(last-of-type) {*/
/*  margin-bottom: 10px*/
/*}*/
/*.se-i .plans .group .list li img {*/
/*  margin-right: 10px;*/
/*  width: 16px*/
/*}*/

/* float-box */
/*.se-i .plans .group .list li .float-box {*/
/*  position: absolute;*/
/*  top: 2px;*/
/*  right: 0;*/
/*  width: 18px;*/
/*  height: 18px;*/
/*}*/
/*.se-i .plans .group .list li .float-box::before {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  position: absolute;*/
/*  content: '?';*/
/*  right: 0;*/
/*  top: 0;*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  background-color: rgba(255, 255, 255, .1);  */
/*  border-radius: 50%;*/
/*  font-size: 12px;*/
/*  font-family: var(--secondary-font);*/
/*  font-weight: 600;*/
/*  line-height: 1;*/
/*  transition: all .15s ease-in-out;*/
/*}*/
/*.light-theme .se-i .plans .group .list li .float-box::before {*/
/*  background-color: rgba(0, 0, 0, .1);*/
/*}*/
/*.se-i .plans .group .list li .float-box:hover::before {*/
/*  background-color: rgba(0, 0, 0, .2);*/
/*}*/
/*.se-i .plans .group .list li .float-box::after {*/
/*  position: absolute;*/
/*  content: attr(data-text);*/
/*  top: 50%;*/
/*  right: 26px;*/
/*  transform: translateY(-50%);*/
/*  width: 280px;*/
/*  background-color: var(--semi-dark);*/
/*  white-space: normal;*/
/*  padding: 10px;*/
/*  font-size: 13px;*/
/*  font-weight: 500;*/
/*  line-height: 1.6;*/
/*  color: var(--text-gray);*/
/*  border: 1px solid rgba(255, 255, 255, .1);*/
/*  border-radius: 4px;*/
/*  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);*/
/*  z-index: 3;*/
/*  visibility: hidden;*/
/*  opacity: 0;*/
/*  transition: all .15s ease-in-out;*/
/*}*/
/*.light-theme .se-i .plans .group .list li .float-box::after {*/
/*  background-color: #fff;*/
/*  border: 1px solid var(--border);*/
/*  background-color: #FFFFFF;*/
/*  box-shadow: 0 2px 15px #dde5eb;*/
/*}*/
/*.se-i .plans .group .list li .float-box:hover::after {*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*}*/

/* 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;
}
/*------------------------HERO OFFFER CSS------------------------------*/

/* Header */
/*.main-header {*/
/*  position: relative;*/
/*  padding: 30px 0;*/
/*  overflow: hidden;*/
/*}*/
/*.light-theme .main-header {*/
/*  background-color: #e6f4f8;*/
/*  background-image: url(../images/theme/bghxh.webp);*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center bottom;*/
/*}*/

/* title-1 & para-1 */
/*.main-header .title-1 {*/
/*  font-size: 60px;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 900;*/
/*  color: #000000;*/
/*  line-height: 1.2;*/
/*  max-width: 600px;*/
/*}*/
/*.light-theme .main-header .title-1 {*/
/*  color: #000000;*/
/*}*/
/*.main-header .para-1 {*/
/*  font-size: 16px;*/
/*  font-family: var(--secondary-font);*/
/*  line-height: 1.6;*/
/*  color: var(--text-gray);*/
/*  opacity: 0.8;*/
/*  max-width: 600px;*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header {*/
/*    padding: 100px 0 60px;*/
/*  }*/
/*  .main-header .title-1 {*/
/*    font-size: 44px;*/
/*  }*/
/*  .main-header .para-1 {*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* notify */
/*.main-header .notify {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  background-color: var(--semi-dark);*/
/*  border-radius: 50px;*/
/*  cursor: default;*/
/*}*/
/*.light-theme .main-header .notify {*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/
/*.main-header .notify .icon {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background-color: #ffffff;*/
/*  border-radius: 50px;*/
/*  width: 54px;*/
/*  min-width: 54px;*/
/*  height: 54px;*/
/*}*/
/*.main-header .notify .icon img {*/
/*  width: 16px;*/
/*}*/
/*.light-theme .main-header .notify .icon {*/
/*  background-color: var(--light);*/
/*}*/
/*.main-header .notify .text {*/
/*  padding: 0 25px 0 20px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .notify .text {*/
/*  color: var(--text-gray);*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header .notify .icon {*/
/*    display: none;*/
/*  }*/
/*  .main-header .notify .text {*/
/*    padding: 15px 30px;*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* header-form */
/*.main-header .header-form {*/
/*  position: relative;*/
/*  background-color: var(--semi-dark);*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  padding: 60px 40px 40px;*/
/*  text-align: center;*/
/*  border-radius: 16px;*/
/*  max-width: 380px;*/
/*}*/
/*.light-theme .main-header .header-form {*/
/*  background-color: #fff;*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/

/* form-title */
/*.main-header .form-title {*/
/*  font-size: 22px;*/
/*  line-height: 1.4;*/
/*  color: #ffffff;*/
/*  font-weight: 700;*/
/*}*/
/*.light-theme .main-header .form-title {*/
/*  color: var(--dark);*/
/*}*/

/* form-label */
/*.main-header .form-label {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*}*/
/*.main-header .form-label:not(:last-child) {*/
/*  margin-bottom: 15px;*/
/*}*/
/*.main-header .form-label input {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  height: 54px;*/
/*  padding: 0 20px;*/
/*  background-color: #282a3f;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  overflow: hidden;*/
/*  width: 100%;*/
/*  border-radius: 4px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 500;*/
/*  outline: none;*/
/*  transition: background-color 0.2s ease;*/
/*}*/
/*.light-theme .main-header .form-label input {*/
/*  color: var(--dark);*/
/*  background-color: var(--light);*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input:hover {*/
/*  background-color: #2f3146;*/
/*}*/
/*.light-theme .main-header .form-label input:hover {*/
/*  background-color: #eaedef;*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input::placeholder {*/
/*  color: rgba(255, 255, 255, 0.3);*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .form-label input::placeholder {*/
/*  color: rgba(0, 0, 0, 0.3);*/
/*}*/

/* hr */
/*.main-header .hr {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
/*.main-header .hr::before,*/
/*.main-header .hr::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  height: 1px;*/
/*  width: 100px;*/
/*  background-color: rgba(255, 255, 255, 0.2);*/
/*  z-index: 1;*/
/*  margin-top: 1px;*/
/*}*/
/*.light-theme .main-header .hr::before,*/
/*.light-theme .main-header .hr::after {*/
/*  background-color: rgba(0, 0, 0, 0.2);*/
/*}*/
/*.main-header .hr::after {*/
/*  left: unset;*/
/*  right: 0;*/
/*}*/
/*.main-header .hr span {*/
/*  position: relative;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  z-index: 2;*/
/*}*/

/* form-comment */
/*.main-header .form-comment {*/
/*  font-size: 12px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*}*/
/*.main-header .form-comment a {*/
/*  color: var(--primary);*/
/*}*/
/*.main-header .form-comment a:hover {*/
/*  text-decoration: underline;*/
/*}*/

/* review and rating */

/*^^^^^^^^^^^^^^^ rating-and-reviews ^^^^^^^^^^^^^^^^^^*/

.counter-section-one .rating-and-reviews p {
  font-size: 15px;
  font-weight: bold !important;
}
.counter-section-one .child-container {
  margin-top: 1rem;
}
.counter-section-one .rating-and-reviews p strong {
  font-weight: 900 !important;
  color: #04b928;
}
.counter-section-one .forbs {
  font-size: 12px !important;
  max-width: 13rem;
}
.counter-section-one .forbs span {
  font-weight: 900 !important;
  color: black;
}
.counter-section-one {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
  background-color: white;
}
.counter-section-one h6 {
  font-size: 20px;
  font-weight: 700 !important;
}

/*-------------------------------------*/

/* Section I */
.se-i {
  padding-bottom: 80px;
}
/*.light-theme .se-i {
  background-color: #cbe2ec;
}
*/
/* box */
.se-i .box {
  padding: 35px 30px;
  background-color: var(--semi-dark);
  border-radius: 8px;
}
.light-theme .se-i .box {
  background-color: #fff;
}
.se-i .box-icon {
  width: 48px;
  margin-bottom: 20px;
}
.light-theme .se-i .box-icon {
  filter: invert(1);
}
.se-i .box-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .box-title {
  color: var(--dark);
}
@media only screen and (max-width: 767px) {
  .se-i .box-icon {
    width: 38px;
  }
  .se-i .box-title {
    font-size: 14px;
  }
}
/*-------------------------------------*/

/* Section II */
.se-ii {
  padding: 60px 0;
}

/* title-1 */
.se-ii .title-1 {
  font-size: 46px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.light-theme .se-ii .title-1 {
  color: var(--dark);
}
.se-ii .title-1 span {
  line-height: 1;
  display: inline-block;
}

/* para-1 */
.se-ii .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* item */
.se-ii .item {
  background-color: var(--semi-dark-2);
  padding: 20px 15px 20px 15px;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}
.light-theme .se-ii .item {
  background-color: var(--light);
  border: 1px solid var(--border);
}
.se-ii .item img {
  width: 80px;
  margin-bottom: 15px;
}
.se-ii .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #9193a8;
}
.light-theme .se-ii .item .text {
  font-weight: 500;
  color: var(--text-gray);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii {
    padding: 60px 0 30px;
  }
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 36px;
    line-height: 1.4;
  }
  .se-ii .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 26px;
    line-height: 1.2;
  }
}
/*-------------------------------------*/

/* Section III */

/* plans */
.se-iii .plans {
  border-radius: 12px;
  background-color: #141526;
}
.light-theme .se-iii .plans {
  background-color: #fff;
  border: 2px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 2px 5px #dde5eb;
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    border-radius: unset;
  }
}

/* plan */
.se-iii .plans .plan {
  position: relative;
  padding: 50px 40px 40px;
  background-color: #141526;
  height: 100%;
  z-index: 2;
}
.light-theme .se-iii .plans .plan {
  background-color: #fff;
}
.se-iii .plans .row > div:nth-child(1) .plan {
  border-radius: 12px 0 0 12px;
}
.se-iii .plans .row > div:nth-child(4) .plan {
  border-radius: 0 12px 12px 0;
}
.se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    background-color: unset;
  }
  .se-iii .plans .row > div .plan {
    border-radius: 12px !important;
    border-right: unset !important;
  }
}

/* plan-head */
.se-iii .plans .plan-head {
  padding-bottom: 20px;
}
.se-iii .plans .plan-name {
  font-size: 23px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-name {
  color: var(--dark);
}
.se-iii .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px;
}

/* plan-price */
.se-iii .plans .plan-price {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .plan-price {
  border-bottom-color: var(--border);
}
.se-iii .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-price .price {
  color: var(--dark);
}
.se-iii .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-iii .plans .actions {
  padding-bottom: 10px;
}

/* group */
.se-iii .plans .group {
  margin-top: 45px;
}
.se-iii .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .group .title-4 {
  color: var(--dark);
}
.se-iii .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-iii .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px;
}
.se-iii .plans .group .list li img {
  margin-right: 10px;
  width: 16px;
}

/* float-box */
.se-iii .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-iii .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: "?";
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, 0.1);
}
.se-iii .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.se-iii .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, 0.4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-iii .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-iii .se-footer .line {
  margin: 6px 12px;
}
.se-iii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-iii .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*-------------------------------------*/

/* Section IV */

/* box */
/*.se-iv .box {*/
/*  background-color: var(--semi-dark);*/
/*  border-radius: 8px;*/
/*  padding: 35px 30px 10px;*/
/*  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*/
/*  transition: all 0.2s ease;*/
/*}*/
/*.light-theme .se-iv .box {*/
/*  background-color: #fff;*/
/*  border: 1px solid var(--border);*/
/*  box-shadow: none !important;*/
/*}*/
/*.se-iv .box:hover {*/
/*  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, 0.2);*/
/*  background-color: var(--semi-dark-2);*/
/*}*/
/*.light-theme .se-iv .box:hover {*/
/*  background-color: var(--light);*/
/*}*/

/* box-link */
/*.se-iv .box-link {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  z-index: 2;*/
/*}*/

/* icon */
/*.se-iv .box .icon {*/
/*  position: relative;*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  border-radius: 8px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin-bottom: 30px;*/
/*  overflow: hidden;*/
/*}*/
/*.se-iv .box .icon::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  background-color: var(--primary);*/
/*  opacity: 0.1;*/
/*}*/
/*.se-iv .box.color-1 .icon::before {*/
  /*background-color: #26c6da;*/
/*}*/
/*.se-iv .box.color-2 .icon::before {*/
  /*background-color: #fc573b;*/
/*}*/
/*.se-iv .box.color-3 .icon::before {*/
  /*background-color: #ffd200;*/
/*}*/
/*.se-iv .box.color-4 .icon::before {*/
  /*background-color: #bd63f9;*/
/*}*/
/*.se-iv .box.color-5 .icon::before {*/
  /*background-color: #00ffb7;*/
/*}*/
/*.se-iv .box.color-6 .icon::before {*/
  /*background-color: #fe9801;*/
/*}*/
/*.se-iv .box .icon img {*/
/*  width: 45px;*/
/*}*/

/* box-title */
/*.se-iv .box-title {*/
/*  color: #ffffff;*/
/*  font-size: 20px;*/
/*  font-weight: 500;*/
/*  margin-bottom: 10px;*/
/*}*/
/*.light-theme .se-iv .box-title {*/
/*  color: var(--text-gray);*/
/*}*/

/* box-para */
/*.se-iv .box-para {*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  line-height: 1.7;*/
/*  max-height: 70px;*/
/*  height: 70px;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 3;*/
  /*-webkit-box-orient: vertical;*/
/*  margin-bottom: 25px;*/
/*}*/

/* arrow */
/*.se-iv .arrow {*/
/*  margin-top: 20px;*/
/*}*/
/*.se-iv .arrow img {*/
/*  width: 24px;*/
/*  filter: contrast(0);*/
/*  transition: all 0.15s ease;*/
/*}*/
/*.se-iv .box:hover .arrow img {*/
/*  filter: contrast(100%);*/
/*}*/

/*-------------------------------------*/

/* Section V */

/* filter-nav */
.se-v .filter-nav {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .filter-nav {
    display: none;
  }
}

/* tab */
.se-v .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}
.light-theme .se-v .filter-nav .tab {
  background-color: #fff;
  border-color: var(--border);
}
.se-v .filter-nav .tab:not(.active):hover {
  background-color: var(--semi-dark);
}
.light-theme .se-v .filter-nav .tab:not(.active):hover {
  background-color: #fff;
  border-color: var(--primary);
}
.se-v .filter-nav .tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* compare-table */
.se-v .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-v .compare-table::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-v .compare-table::before {
  background-color: #fff;
  border-color: var(--border);
}

/* custom-thead */
.se-v .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-v .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-v .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.se-v .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #ffffff;
}
.light-theme .se-v .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-v .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-v .custom-thead .tab-content {
  padding: 30px;
}
.se-v .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-v .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .custom-thead .tab-content .table-title-1 {
  display: block;
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.light-theme .se-v .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-v .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-v .custom-thead .tab-content .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* thead */
.se-v .compare-table thead th {
  padding: 30px 30px 40px;
}
.se-v .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.se-v .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table thead {
    display: none;
  }
}

/* top-left-corner */
.se-v .compare-table thead th.top-left-corner {
  min-width: 470px;
  width: 470px;
  text-align: left;
  vertical-align: top;
}
.se-v .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1.2;
}
.light-theme .se-v .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-v .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-v .compare-table thead th.top-right-corner {
  min-width: 380px;
  width: 380px;
}

/* table-title-3 */
.se-v .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 35px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-v .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 46px;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  top: 10px;
  margin-right: 5px;
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* hovered */
.se-v .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-v .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-v .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.light-theme .se-v .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-v .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-v .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-v .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-v .compare-table tbody tr.tr-hide {
    display: none;
  }
}

/* tbody > tr */
.se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.light-theme .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light);
}

/* tbody > tr > td */
.se-v .compare-table tbody tr td {
  position: relative;
  padding: 20px 30px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.light-theme .se-v .compare-table tbody tr td {
  border-color: var(--border);
}
.se-v .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}

/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-v .compare-table tbody .left-corner {
  min-width: 470px;
  width: 470px;
  text-align: right;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .left-corner {
    min-width: 60%;
    width: 60%;
  }
}

/* right-corner */
.se-v .compare-table tbody .right-corner {
  min-width: 380px;
  width: 380px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .right-corner {
    min-width: 40%;
    width: 40%;
  }
}

/* se-footer > line */
.se-v .se-footer .line {
  margin: 6px 12px;
}
.se-v .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-v .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*-------------------------------------*/

/* Section VI */

/* box */
.se-vi .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 30px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.2s ease;
}
.light-theme .se-vi .box {
  background-color: var(--light);
  border: 1px solid var(--border);
  box-shadow: none !important;
}

/* user-info */
.se-vi .box .user-info {
  margin-bottom: 25px;
}
.se-vi .box .user-info .avatar {
  min-width: 54px;
  width: 54px;
  min-height: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.se-vi .box .user-info .name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}
.light-theme .se-vi .box .user-info .name {
  color: var(--dark);
}
.se-vi .box .user-info .job {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: var(--text-gray);
}

/* quotes */
.se-vi .box .quotes {
  font-size: 17px;
  font-weight: 600;
  /*font-style: italic;*/
  font-family: var(--third-font);
  color: var(--text-gray);
}
.se-vi .box .quotes::before {
  position: relative;
  content: '"';
  left: 0;
  top: 0;
  margin-right: 2px;
}
.se-vi .box .quotes::after {
  position: relative;
  content: '"';
  right: 0;
  top: 0;
  margin-left: 2px;
}
/*-------------------------------------*/

/*page padding */
.p-80 {
  padding: 60px 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, 0.1),
    0 2px 4px 0 rgba(14, 30, 37, 0.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, 0.02);
}
.compare table tbody tr td:nth-child(even) {
  background: rgba(14, 30, 37, 0.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: auto;
    height: 218px !important;
  }
  /* -- :: Wrapper 2 */
  .wrapper-2 img {
    width: 240px;
  }
  .wrapper-2 .t-c h3 {
    font-size: 24px;
  }
  .wrapper-2 .t-c p {
    font-size: 16px;
  }
}
/* ------------------------------- */
/*------------------Trustpilot-------------------*/

.p-80t {
  padding: 20px 0;
  background-color: #ffffff;
}

.col-md-2t {
    padding-left: 20px;
    padding-top:50px;
}
.col-md-3t {
    padding: 19px;
    background-color: #ecf4fa;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 30%;
}
.row1 {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.trustpilot-widget {
  max-width: 1550px;
  background: transparent;
  color: #333;
  /*padding: 30px 0 25px 0;*/
  overflow: hidden;
}
.trustpilot-widget .wrapper-left a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}
.trustpilot-widget .wrapper-left {
  text-align: left;
}
.trustpilot-widget .wrapper-left .title {
  color: #333;
  font-size: 24px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.trustpilot-widget .wrapper-left .rating img {
  max-width: 160px;
  margin: auto;
}
.trustpilot-widget .wrapper-left .info {
  color: #333;
  font-size: 13px;
  line-height: 45px;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  max-width: 25px;
  margin: auto;
  margin-top: -10px;
  display: inline-block;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  font-size: 18px;
  line-height: 35px;
  color: #333;
  text-align: center;
  display: inline-block;
}
.trustpilot-widget .reviews {
  margin-left: 2%
}
.trustpilot-widget .carousel-control {
    height: 25px;
    width: 25px;
    border: 1px solid #9E9E9E;
    border-radius: 50%;
    margin-top: 60px;
    font-size: 25px;
    background: transparent;
    line-height: 18px;
}
.trustpilot-widget .carousel-control.right {
  margin-right: -50px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.left {
  left: -70px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.right:hover, .trustpilot-widget .carousel-control.left:hover {
    color: #333;
}
.trustpilot-widget .carousel-inner .rating img {
  max-width: 110px
}
.trustpilot-widget .carousel-inner {
    overflow: hidden
}
.trustpilot-widget .carousel-inner .date, .trustpilot-widget .carousel-inner .name {
  color: rgba(0,0,0,0.6);
  font-size: 13px;
}
.trustpilot-widget .carousel-inner .title {
  margin: 15px 0 10px 0;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden; 
  width: 100%; 
  white-space: nowrap; 
}
.trustpilot-widget .carousel-inner .descriptions {
    min-height: 42px;
}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}
@media (max-width: 575.98px) {
  .col-md-2t {
     display: none;
    padding-top:50px;
}
.col-md-3t {
    display: none;
}
.row1 {
    display: none;
}
.trustpilot-widget {
  display: none;
}
.trustpilot-widget .wrapper-left a {
  display: none;
}
.trustpilot-widget .wrapper-left {
  display: none;
}
.trustpilot-widget .wrapper-left .title {
  display: none;
}
.trustpilot-widget .wrapper-left .rating img {
  display: none;
}
.trustpilot-widget .wrapper-left .info {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  display: none;
}
.trustpilot-widget .reviews {
  display: none;
}

}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}


/*PERFORMANCE SECTION CSS*/

.performance-section {
  padding: 60px 0;
  background: #fff;
}

.performance-header{
    max-width:750px;
    margin:0 auto 50px;
}

.performance-box {
  border-radius: 20px;
  display: flex;
  background: var(--primary);
}

.performance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.performance-image-div {
  text-align: center;
  padding: 30px;
}

.performance-image {
  max-width: 100%;
  border-radius: 20px;
}

.performance-content {
  padding: 30px;
}

.performance-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.highlight {
  text-align: left;
}

.per-highlight-h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.per-highlight-para {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.performance-cta {
  margin-top: 30px;
  text-align: left;
}

.performance-btn {
  display: inline-block;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ffffff;
  background: var(--primary);
  color: #ffffff;
}

.performance-btn:hover{
    background-color:#ffffff;
    color:var(--primary);
}

@media (max-width: 1024px) {
  .performance-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .performance-row {
    flex-direction: column;
  }

  .highlight {
    text-align: center;
  }

  .performance-content {
    padding-top: 0;
  }

  .performance-cta {
    text-align: center;
  }
}

@media (max-width: 468px) {
  .performance-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .per-highlight-h3 {
    font-size: 20px;
  }
}




/*ALL PAGES TAB SECTION CSS */

.pages-tab-section {
  padding:60px 0px;
  background-color:#ffffff;
}

.all-tab-header{
    margin: 0 auto 25px;
}

.pages-main-header{
    margin-bottom:15px;
}

input[type="radio"] {
  display: none;
}

.allpages-tabs{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: visible; 
}

.card-tab{
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text-gray);
  border:1px solid var(--border);
  width:150px;
  text-align:center;
}

.card-tab:hover {
  background: #ded3ff;
  border-color: #ded3ff;
}



#tab-hosting:checked ~ .allpages-tabs label[for="tab-hosting"],
#tab-cloud:checked ~ .allpages-tabs label[for="tab-cloud"],
#tab-server:checked ~ .allpages-tabs label[for="tab-server"],
#tab-domain:checked ~ .allpages-tabs label[for="tab-domain"],
#tab-service:checked ~ .allpages-tabs label[for="tab-service"] {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.allpages-tab-content {
  display: none;
}

#tab-hosting:checked ~ .hosting-content,
#tab-cloud:checked ~ .cloud-content,
#tab-server:checked ~ .server-content,
#tab-domain:checked ~ .domain-content,
#tab-service:checked ~ .service-content {
  display: block;
}

.tab-content-header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
}

.all-card-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: auto;
  align-items: stretch;
}

.hosting-card,
.cloud-card,
.server-card,
.domain-card,
.service-card {
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  border: 1px solid var(--border);
  transition: 0.3s ease-in-out;
  display: flex;            
  flex-direction: column; 
  justify-content: space-between;
  height: 420px;
}


.hosting-card:hover,
.cloud-card:hover,
.server-card:hover,
.domain-card:hover,
.service-card:hover{
  border: 1px solid var(--primary);
}

.all-card-h3{
  font-size: 20px;
  font-weight: 600;
  color:var(--text-gray);
}

.all-card-para{
  color:var(--text-gray);
  font-size: 16px;
}

.features {
  list-style: none;
}

.features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.all-card-icon {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 60px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 8px;
}

.all-card-icon img{
    height:35px;
    width:35px;
}

.price {
  font-weight: bold;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.price::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease; 
}

.hosting-card:hover .price::after,
.cloud-card:hover .price::after,
.server-card:hover .price::after,
.domain-card:hover .price::after,
.service-card:hover .price::after {
  width: 35%;
}

.active-card:hover .price::after {
  width: 35%;
  background-color:#ffffff;
}


.active-card{
    position: relative;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    overflow: hidden;
}

.active-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 3s infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}

.active-card .all-card-h3,
.active-card .all-card-para,
.active-card .price,
.active-card .features li {
  color: #ffffff;
}


.active-card .all-card-icon{
    background-color:#ffffff;
}


.active-card .features li::before {
  color: #ffffff;
}

@media (max-width: 1024px) {
  
    .allpages-tabs{
        justify-content:center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .allpages-tabs::-webkit-scrollbar {
       display: none;
    }

    .card-tab {
        flex: 0 0 auto;
        width: 150px;
    }
}

@media (max-width: 768px) {
    
    .allpages-tabs{
        justify-content: space-between;
    }
    
    .card-tab {
        width: 130px;
        font-size: 15px;
        padding: 10px 20px;
    }
  
    .content-header-para{
        text-align:center;
    }
}

/* BENEFITS SECTION */

.benefits-section {
  background-color: var(--primary);
  color: #ffffff;
  padding: 80px 0;
}

.benefits-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 25px;
}

.benefits-header-primary {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.benefits-header-secondary {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.benefits-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-template-areas:
    "box1 box2 box4"
    "box3 box3 box4";
}

.benefits-box {
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  color: var(--text-gray);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.benefits-box:nth-child(1) { grid-area: box1; }
.benefits-box:nth-child(2) { grid-area: box2; }
.benefits-box:nth-child(3) { grid-area: box3; }
.benefits-box:nth-child(4) { grid-area: box4; }

@media (max-width: 1024px) and (min-width: 769px) {
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "box1 box1"
          "box2 box4"
          "box3 box4";
        gap: 30px;
    }

    .benefits-box {
        aspect-ratio: auto;
        padding: 20px;
    }

    .benefits-box-title {
      font-size: 18px;
    }
    
    .benefits-box-para { 
        font-size: 14px; 
        overflow: auto; 
    }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "box1"
      "box2"
      "box3"
      "box4";
    gap: 30px;
  }

  .benefits-header-secondary { font-size: 28px; }
  .benefits-icon-img { width: 44px; padding: 6px; }
}

.benefits-icon-img {
  width: 60px;
  padding: 10px;
  border-radius: 8px;
  background: var(--primary);
}

.benefits-box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-gray);
}

.benefits-box-para {
  font-size: 16px;
  color: var(--text-gray);
}

.image-box {
  position: relative; 
  display: flex;
  justify-content:center;
  align-items:center;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.image-box::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.image-box:hover::before {
  animation: shine 2s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


/*BENEFITS SECTION CSS END */





/* ===== FEATURES SECTION CSS ===== */

.section-features {
  padding: 60px 0 !important; 
  background-color: #f2f3f6;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  border-radius: 8px;
  padding: 35px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  background-color: #ffffff;
  border: 1px solid var(--border);
  box-shadow: none !important;
  cursor:pointer;
  gap:10px;
  align-items:center;
}

.feature-card:hover {
  /*border: 1px solid var(--primary);*/
}

.feature-icon {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-bottom: 30px;*/
  overflow: hidden;
  /*background-color:#f2f3f6;*/
}


.feature-icon-img {
  width: 80px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover .feature-icon-img{
    cursor:pointer;
    transform: scale(1.05);
}

.feature-title {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 500;
  /*margin-bottom: 10px;*/
}

.feature-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.6;
  /*height: 70px;*/
  text-align: center;
}

.feature-arrow {
    text-align:end;
     margin-top: 20px;
}

.feature-arrow-img {
  width: 30px;
  /*filter: contrast(0);              */
  transform: translateX(-15px);     
  transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-card:hover .feature-arrow-img {
  /*filter: contrast(100%);           */
  transform: translateX(0);         
}


@media (max-width: 1024px) {
  .features-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}


/*FEATURES SECTION CSS END*/



/*TESTIMONIALS SECTION CSS*/


.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testimonials-section-header{
    margin:0 auto 50px;
}

.testimonials-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-box {
  border-radius: 8px;
  padding: 25px;
  border: 1px solid var(--border);
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.testimonial-box:hover {
    border:1px solid var(--primary);
    cursor:pointer;
}

.testimonial-box-header{
    display:flex;
    align-items:center;
    gap:20px;
}

.testimonial-user {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-avatar {
  display: flex;
  justify-content: center;
  align-items: end;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 70px;
  height: 70px;
  position: relative;
  overflow: hidden;
}

.testimonial-avatar::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.avatar-icon {
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.testimonial-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom:2px;
}

.testimonial-job {
  font-size: 13px;
  color: var(--text-gray);
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
}

.testimonials-footer {
    display:flex;
    justify-content:center;
    align-items:center;
}

.testimonials-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: var(--primary);
    padding: 17px 14px;
    font-size: 18px;
    width: max-content;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    text-decoration: none;
    position:relative;
}

.testimonials-btn: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;
    
}

.testimonials-col:nth-child(1),
.testimonials-col:nth-child(4) {
  margin-top: 40px;
}

@media (max-width: 1024px) {
    
    .test-column3{
        display:none;
    }
    
    .testimonials-col:nth-child(1),
    .testimonials-col:nth-child(3) {
        margin-top: 40px;
    }
    
    .testimonials-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-col {
        margin-top: 0;
    }

}

@media (max-width: 768px) {
    
    .test-column3{
        display:flex;
    }
    
    .testimonials-col:nth-child(1),
    .testimonials-col:nth-child(3),
    .testimonials-col:nth-child(4){
        margin-top: 0px;
    }
    
    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-footer{
        margin-top:20px;
    }
}

@media (max-width: 480px) {
    
    .testimonials-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-col {
        margin-top: 0 !important;
     }
}


/*TESTIMONIALS SECTION CSS END*/

/*SUPPORT SECTION CSS */

/* Section Wrapper */
/*.support-section {*/
/*  padding: 60px 0;*/
/*  background: #fff;*/
/*}*/

/*.support-container {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  gap: 40px;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.support-left {*/
/*  flex: 1;*/
/*  min-width: 320px;*/
  /*background: var(--primary);*/
/*  border-radius: 8px;*/
  /*padding:30px;*/
/*  text-align: center;*/
/*  color: #fff;*/
/*  position: relative;*/
/*}*/

/*.support-image{*/
/*    display:flex;*/
/*    justify-content:center;*/
/*    align-items:center;*/
/*}*/

/*.support-image img {*/
/*  width: 100%;*/
/*  border-radius:8px;*/
/*}*/

/*.support-badge {*/
/*  background: #fff;*/
/*  color: #333;*/
/*  display: inline-block;*/
/*  padding: 8px 16px;*/
/*  border-radius: 8px;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  margin: 8px 6px 0;*/
/*}*/

/*.support-right {*/
/*  flex: 1.2;*/
/*  min-width: 320px;*/
/*}*/

/*.support-subtitle {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: var(--primary);*/
/*    margin-bottom: 10px;*/
/*    text-transform: uppercase;*/
/*}*/

/*.support-title {*/
/*    font-size: 42px;*/
/*    font-weight: 700;*/
/*    color: var(--text-gray);*/
/*    line-height: 1.2;*/
/*    margin-bottom: 25px;*/
/*}*/

/*.support-desc {*/
/*  font-size: 16px;*/
/*  color:var(--text-gray);*/
/*  margin-bottom: 20px;*/
/*}*/

/*.support-points {*/
/*  list-style: none;*/
/*  padding: 0;*/
/*  margin: 0 0 20px;*/
/*}*/

/*.support-points li {*/
/*  position: relative;*/
/*  padding-left: 24px;*/
/*  margin-bottom: 10px;*/
/*  font-size: 15px;*/
/*  color:var(--text-gray);*/
/*}*/

/*.support-points li::before {*/
/*  content: "✔";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 0;*/
/*  color: var(--primary);*/
/*  font-weight: bold;*/
/*}*/


/*@media (max-width: 900px) {*/
/*  .support-container {*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*  }*/

/*  .support-right {*/
/*    text-align: center;*/
/*  }*/

/*  .support-points li {*/
/*    text-align: left;*/
/*    display: inline-block;*/
/*    width: auto;*/
/*  }*/
/*}*/

/* EXPERIENCE SECTION CSS */

.experience-section {
  padding: 60px 0;
  background: #fff;
}

.experience-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.experience-left {
  flex: 1;
  min-width: 320px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.experience-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience-image img {
  width: 100%;
  border-radius: 8px;
}

.experience-right {
  flex: 1.2;
  min-width: 320px;
}

.experience-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.experience-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.2;
  margin-bottom: 25px;
}

.experience-desc {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.experience-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.experience-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-gray);
}

.experience-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 900px) {
  .experience-container {
    flex-direction: column;
    text-align: center;
  }

  .experience-right {
    text-align: center;
  }

  .experience-points li {
    text-align: left;
    display: inline-block;
    width: auto;
  }
}



/*TECHSTACK SECTION CSS START*/

.techstack-section {
    background-color:#ffffff;
    text-align: center;
    padding: 60px 0px;
}

.techstack-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.techstack-title-1 {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.techstack-title-2 {
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-gray);
    line-height: 1.2;
    margin-bottom: 15px;
}

.techstack-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(236, 237, 249);
    width:90px;
    height:90px;
    border-radius: 8px;
    margin: 0 auto 15px;
}

.techstack-img {
  width: 65px;
  height: 65px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-gray);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -85%;
    width: 280px;
  height: 2px;
  border-top: 2px dashed var(--primary);
}

.connector {
  position: absolute;
  top: 37px;
  right: -80px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  z-index:2;
}

.subtitle{
    margin-top:20px;
}

@media (max-width: 1024px) {
  .techstack-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    justify-items: center;
    position: relative;
  }

  .step {
    position: relative;
  }

  .step:nth-child(1) .connector,
  .step:nth-child(3) .connector {
    position: absolute;
    top: 37px;         
    right: -130px;     
    left: auto;
    transform: none;
    display: block;
  }

  .step:nth-child(2) .connector,
  .step:nth-child(4) .connector {
    display: none;
  }

  .step:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 70%;
    width: 400px;
    height: 2px;
    border-top: 2px dashed var(--primary);
  }

  .step:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 768px) {

  .step:nth-child(1) .connector,
  .step:nth-child(3) .connector {
    position: absolute;
    top: 37px;         
    right: -75px;     
    left: auto;
    transform: none;
    display: block;
  }

  .step:nth-child(2) .connector,
  .step:nth-child(4) .connector {
    display: none;
  }

  .step:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 70%;
    width: 280px;
    height: 2px;
    border-top: 2px dashed var(--primary);
  }

  .step:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 568px) {
  .techstack-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step::after,
  .connector {
    display: none; 
  }
  
  .step:nth-child(1) .connector,
  .step:nth-child(2) .connector,
  .step:nth-child(3) .connector,
  .step:nth-child(4) .connector {
    display: none;
  }
}


/*TECHSTACK SECTION CSS END*/


/*DEVELOPER SECTION CSS START*/

.developer-showcase{
  background: #ffffff;
  padding: 60px 0px;
  width: 100%;
}

.developer-showcase-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.developer-showcase-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.developer-showcase-heading {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.2;
  margin-bottom: 20px;
}

.developer-showcase-description {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}


.grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #120a1f;
}

.card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.stacked-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
}

.mini-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.icon-box {
  width: 85px;
  height: 85px;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kvm-img{
    width:200px;
}

.mini-card-icon {
  width: 100%;
  height: 100%;
}

.left-icon {
    order: -1; 
}
.right-icon { 
    order: 1; 
}

.mini-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mini-card-text .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #120a1f;
  margin: 0;
}

.mini-card-text .card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  margin: 0;
}

.performance-card,
.os-card{
  background: rgb(236, 237, 249);
}

.domain-showcase {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.domain-show-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-gray);
  font-size: 14px;
  width: 135px;
  text-align: center;
  border:1px solid var(--border);
}

.businesses-showcase {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.businesses-show-card {
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-gray);
  font-size: 14px;
  width: 180px;
  text-align: center;
  border:1px solid var(--border);
}

.setup-card, .domain-com,
.domain-cloud {
  color: var(--primary);
}

.languages-grid {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.language-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.lang-card-title{
    font-size:16px;
    font-weight:600;
}

.language-icon {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.language-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .grid-section {
    grid-template-columns: 1fr;
  }
  
  .businesses-show-card{
      width:280px;
  }
  
  .domain-show-card{
      width:200px;
  }
}

@media (max-width: 768px) {
    
    .businesses-show-card{
        width:200px;    
    }
    
    .domain-show-card{
        width:150px;
    }
    
}

@media (max-width: 468px) {
    
    .mini-card-content{
        flex-direction:column;
    }
    
    .mini-card-text{
        text-align:center;
    }
    
    .card-header{
        text-align:center;
    }
    
    .businesses-showcase{
        justify-content:center;
    }
    
    .businesses-show-card{
        width:100%;
    }
    
    .domain-show-card{
        width:150px;
    }
}

/*DEVELOPERS SECTION CSS END*/

.power-hosting-section{
    background-color: #000000;
    padding:60px 0px;
}

.power-hosting-content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.power-hosting-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.power-hosting-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.power-hosting-heading {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.power-top-section {
  display: flex;
  flex-direction: column;
}

.power-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color:#ffffff;
}

.power-info-section {
  display: flex;
  justify-content:space-between;
  align-items: center;
}

.power-description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

.power-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
}

.power-stats-block{
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    width:23%;
    gap:10px;
}

.power-stats-number {
  font-size: 34px;
  font-weight: 500;
  color: var(--primary);
}

.power-stats-text {
  font-size: 14px;
  color: #ffffff;
  text-align:center;
}

.power-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.power-section {
  text-align: left;
}

.power-header {
    color:#ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #666666;
}

.power-list {
  list-style: none;
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
}

.power-list li {
  margin-bottom: 12px;
}

.power-contact-image{
    width:80%;
}

@media (max-width: 1024px) {
  .power-info-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .power-bottom-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .power-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .power-heading {
    font-size: 2rem;
  }
  .power-stats-row {
    gap: 20px;
  }
}


.data-contact-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.data-contact-container {
  width: 100%;
  margin: 0 auto;
}

.data-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.data-contact-card {
  background: var(--primary);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.data-contact-title {
  font-size: 24px;
}

.data-contact-text {
  font-size: 14px;
  line-height: 1.5;
}

.query-form { width: 100%; }

.data-contact-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}


.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius:999px;
  height:60px;
  width:100%;
  padding:10px;
}

.pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8%;
  height: 44px;
  border-radius: 999px;
  background: rgb(236, 237, 249);
  color: #6f2dbd;
  flex: 0 0 44px;
}

.pill__icon svg { 
  display: block; 
  color: var(--primary); 
}

.pill__btn {
  width:20%;
  border: none;
  background: var(--primary);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
}

.pill__display {
  font-size: 15px;
  color: var(--primary);
  font-weight:500px;
  padding: 6px 8px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  width: 0; 
  animation: typing 3s steps(55, end) forwards; /* adjust number */
}

@keyframes typing {
  from { width: 0; }
  to { width: 55ch; }
}

@scroll-timeline query-card-timeline {
  source: auto; /* the viewport */
  scroll-offsets: (enter 0.8, exit 1); 
}

.query-card .pill__display {
  font-size: 15px;
  color: var(--primary);
  padding: 6px 8px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(55, end) both;
  animation-timeline: query-card-timeline;
}



@media (max-width: 1024px) {
  .data-contact-content {
    grid-template-columns: 1fr;
  }
  .data-contact-card { min-height: auto; }
}









.partner-logo-section {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.partner-logo-section > .container{
    max-width:100%;
}

.partner-infinite-scroll-container {
  overflow: hidden;
  width: 100%;
}

.partner-infinite-scroll-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: infiniteScroll 25s linear infinite;
}

.partner-icon-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border, #eee);
  width: 250px;
  height: 125px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.partner-icon-card img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-icon-card:hover img {
    cursor:pointer;
    transform: scale(1.05);
    /*filter: brightness(1.05);*/
    
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .partner-infinite-scroll-track {
    gap: 30px;
    animation-duration: 30s;
  }
  .partner-icon-card {
    width: 200px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .partner-infinite-scroll-track {
    gap: 20px;
    animation-duration: 35s;
  }
  .partner-icon-card {
    width: 160px;
    height: 90px;
  }
}














/* ================= ZIGZAG SECTION ================= */

.zizzag-container-sections {
    padding: 60px 0;
    background: #ffffff;
}

.zigzag-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zigzag-item {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 20px;
}

.zigzag-item--speed {
    background-color: #ffe6e0;
    border-radius: 8px;
}

.zigzag-item--security {
    background-color: #ECEDF9;
    flex-direction: row-reverse;
    border-radius: 8px;
}

.zigzag-item--growth {
    background-color: #f0e6ff;
    border-radius: 8px;
}

.zigzag-item--performance {
    background: linear-gradient(94.66deg,#f8f6ff 35%,#bcb2ff 100%);
    border-radius: 8px;
}

.zigzag-item-contents {
    width: 63%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 6rem;
}

.zigzag-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.zigzag-image-container {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.zigzag-image-div {
    width: 100%;
    height: 100%;
}

.zigzag-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 500px;
}

.zigzag-title {
    font-size: 52px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
}

.zigzag-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.zigzag-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zigzag-list-item {
    position: relative;
    padding-left: 1.75rem;
    font-size: 16px;
    color: var(--text-gray);
}

.zigzag-list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 16px;
}

.zigzag-link {
    margin-top: 1rem;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.zigzag-text-link {
    text-decoration: underline;
    color: var(--primary);
}

.zigzag-image-div{
    display:flex;
    justify-content: center;
    align-items: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    
    .zigzag-item-contents,
    .zigzag-image-container {
        width: 100%;
        padding: 1.5rem;
    }
    
    .zigzag-image-div{
        text-align:center;
    }
    
    .zigzag-item-contents {
        padding: 2.5rem 4rem;
    }

    .zigzag-image-container {
        padding: 1.5rem;
    }

    .zigzag-title {
        font-size: 42px;
    }

    .zigzag-subtitle {
        font-size: 17px;
    }

    .zigzag-list-item {
        font-size: 15px;
    }

    .zigzag-list-item::before {
        font-size: 15px;
    }
    
    .zigzag-performance-items{
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    

    .zigzag-title {
        font-size: 32px;
    }

    .zigzag-subtitle {
        font-size: 16px;
    }

    .zigzag-list-item {
        font-size: 14px;
        padding-left: 1.5rem;
    }

    .zigzag-list-item::before {
        font-size: 14px;
    }

    .zigzag-link {
        display: block;
    }
    
    

}

@media (max-width: 480px) {

    .zigzag-title {
        font-size: 26px;
    }

    .zigzag-item-contents,
    .zigzag-image-container {
        padding: 2rem;
    }
}



/*BENEFITS SECTION 2 CSS START*/


.benefits-section-two{
    background: #f2f3f6;
}

.benefits-header-primary-two, .benefits-header-secondary-two, .benefits-header-para{
    color: var(--dark);
}

.benefits-icon-img-two{
    background: ;
}






