
.light-theme{
    background-color : #fff;
}

.faqs{
    background : #ecf4fa;
}

/*HERO SECTION*/
.cloud-server-hero-section{
    background : #fff;
    padding : 30px 0;
    overflow : hidden;
}

.cloud-server-hero-wrapper{
    display :flex;
    justify-content : space-between;
    align-items : center;
    gap : 20px;
    width : 100%;
}

.highlight{
    color : var(--primary);
}

.cloud-server-hero-content{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-heading-1{
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-heading-2{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 15px;
}

.cloud-server-hero-text{
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}


.cloud-server-hero-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.cloud-server-hero-image{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-button{
    display: flex ;
    justify-content: center ;
    align-items: center;
    color: #ffffff ;
    background: var(--primary) ;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 35% ;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight: 500 ;
    position: relative;
    overflow: hidden;
}

.hero-button::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;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
  font-size: 16px;
  font-weight: 400;
}


@media screen and (max-width: 768px) {
    .cloud-server-hero-image{
        max-width : stretch;
    }
    
    .cloud-server-hero-wrapper{
        flex-direction: column;
    }
    
    .cloud-server-hero-content{
        width:100%;
    }
    
    .hero-heading-1{
        width:100%;
    }
    
    .cloud-server-list-section{
        align-items:center;
    }
    
    .cloud-server-hero-img-container{
        width:100%;
    }
    
    .hero-list-section {
        align-items:center;
    }
    
    .cloud-server-list-section{
    align-items: center;
   }
    .cloud-server-heading-container{
        text-align : center;
    }
    .cloud-server-hero-text{
        text-align : center;
    }
    .cloud-server-hero-btn{
        justify-items : center
    }
}


@media(max-width:480px){
    
    .hero-button{
        width : 60%;
    }
}


/* REVIEW SECTION CSS */

.review-section-container {
  background-color: #ffffff;
  padding: 25px 0;
  text-align:center;
}

.review-section{
    max-width:1100px;
}

.rating-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.rating-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-icon .icon-cpanel {
  width: 100px;
  height: 50px;
}

.rating-icon .icon-wordpress {
  height: 45px;
}

.rating-plus {
  font-size: 20px;
  margin: 0 5px;
}

.rating-dash {
  font-size: 100%;
  margin: 0 5px;
}

.rating-text-bold {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
}

.rating-text {
  font-size: 26px;
  color: var(--text-gray);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px;
  min-width: 220px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.review-logo, .review-stars{
    display:flex;
    justify-content:center;
    align-items:center;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
  width: 180px;
}

.review-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.review-text strong {
  color: var(--text-gray);
  font-weight: 600;
}

.review-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

.review-link:hover {
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
}


@media (max-width: 768px) {
  .reviews-section {
    flex-wrap: nowrap;                 
    overflow-x: auto;                  
    scroll-snap-type: x mandatory;     
    -webkit-overflow-scrolling: touch; 
    gap: 20px;
    padding: 0 10px;
  }

  .review-box {
    flex: 0 0 50%;
  }

  .reviews-section::-webkit-scrollbar {
    display: none;
  }
}


/* ========== 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 {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(103, 61, 230, 0.4);
    visibility: visible;
    line-height: 1;
}

.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;
    
}*/



#plan2{
    border:2px solid var(--primary);
}

#plan3{
    border:2px solid var(--primary);
    background: linear-gradient(to bottom, #e6e0ff 0%, #ffffff 50%, #f2eaff 100%);
}

#plan1:hover,#plan4:hover{
    border-color:#673de6;
}

#plan6{
    border : 2px solid var(--primary);
}
 #plan7{
     border: 2px solid var(--primary);
     background: linear-gradient(to bottom, #e6e0ff 0%, #ffffff 50%, #f2eaff 100%);
 }

.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -46px;
    z-index: -1;
    left: 0;
    text-align: center;
    padding: 7px 0 44px;
    padding-top: 8px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.plan-badge:before {
    position: absolute;
    background: #673de6;
    content: "";
    left: -4px;
    top: -2px;
    right: 0;
    bottom: -43px;
    z-index: -2;
    border-radius: 14px 14px 0 0;
}

.plan-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shinePlanBadge 2s infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes shinePlanBadge {
  100% {
    left: 125%;
  }
}

/* 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: #673de6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.plan_button_box {
    margin: 24px 0 22px;
    text-align: center;
}

.plan_button {
    display:flex;
    justify-content:center;
    align-items:center;
    color: #673de6;
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid #673de6;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: #673de6;
    color: #fff;
}

.plan_button {
  position: relative;
  overflow: hidden;
}

.plan_button:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.btn_active_plan{
    background: #673de6;
    color: #fff;
}

.btn_active_plan {
  position: relative;
  overflow: hidden;
}

.btn_active_plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.plan_renew_note {
    padding: 2px 0 30px;
    font-size: 14px;
}

.plan_divider {
    margin-bottom: 34px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
}

.plan_feature_list {
    padding: 0;
    list-style: none;

}

.plan_feature, .plan_feature_crossed {
    display: block;
    margin-bottom: 18px;
    padding-left: 25px;
    font-size: 13px;
    line-height: 1.2;
    position: relative;
}

.plan_feature:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_crossed {
    color: #9baab8 !important;
}

.plan_feature_crossed:before {
    content: "✗";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #ef4444;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_bold {
    font-weight: 800;
}

.plan_feature_highlight {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
    padding-bottom: 2px;
    position: relative;
    cursor: help;
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #673de6;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 150px;
    max-width: 300px;
    max-height: 120px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
}

.plan_feature_highlight[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #673de6;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_list_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.plan_toggle_features {
    text-align: left;
    padding-bottom: 28px;
    margin-top: auto;
}

.plan_toggle_button {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    width:100%;
    margin-bottom:20px;
}

.plan_toggle_button:after {
    background:#673DE6;
    width: 70px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.plan_toggle_button:hover:after {
    width: 138px;
}

.plan_hidden_features {
    /*display: none;*/
}

.plan_hidden_features.show {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.month_free {
    color: #673de6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span{
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:3px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

.plan_header_note{
    margin-bottom : 20px !important;
}


.vps_plan_title{
    display : flex;
    justify-content : space-between;
    align-items : center;
}

.plan_save {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
    background: rgb(236, 237, 249);
    padding: 8px 16px;
    border-radius: 5px;
}

.plan_button-light{
    background : rgb(222 225 255);
}
/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 769px) and (max-width: 1024px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Large - Show 4 plans */
@media (min-width: 1025px) and (max-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
    
    }

/* Desktop - Show 4 plans */
@media (min-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    }

/* 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;
}






/*MANAGE WORDPRESS SECTION*/

.managed-wp-section{
    background : #fff;
    padding : 60px 0;
}

.section-heading-container{
    text-align: center;
    max-width: 850px;
    margin: 0 auto 75px;
}


.section-title{
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle{
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}   

.managed-wp-container{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap : 30px;
    align-items: center;
    width: 100%;
}

.managed-wp-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.managed-wp-image{
    width : 100%;
    height : auto;
    object-fit : contain
}

.managed-wp-left-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.left-wp-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-radius : 12px;
    background : #e5e5e542;
}

.wp-left-description{
    margin-bottom: 20px;
}

.wp-box-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: var(--primary);
    border-radius: 8px;
}

.wp-box-head{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom : 10px;
}

.wp-box-img {
    width : 50px;
    height :50px;
}   
 

 /*SECTION-2*/
 
 .se-head.cloud-server{
    text-align: left;
    max-width: 850px;
    margin : 0;
 }
 
 .se-head.cloud-server.mobile{
     display : none;
     text-align: center;
    max-width: 850px;
    margin: 0 auto 75px;
 }
 
.cloud-server-section{
    padding : 60px 0;
    background : #f2f3f694;
    margin: 60px 0;
}   

.cloud-server-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap : 30px;
}

.cloud-server-right-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 45%;
}

.cloud-server-cta-btn{
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.cloud-cta-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 10px;
    padding: 1rem 4rem;
    font-size: 18px;
    border: 1px solid var(--border);
    width: max-content;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.cloud-left-container{
    width : 55%;
}


.cloud-grid-container{
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px;
}

.cloud-grid-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    box-shadow :  0 0 10px rgba(0, 0, 0, 0.08);;
}

.cloud-grid-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #e0e0e136;
    margin-bottom: 20px;
    border-radius : 50%;
    width : 80px;
    height : 80px;
}

.cloud-grid-img{
    width : 50px;
    height : 50px;
}


.grid-box-head{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.cloud-grid-box.highlighted{
    background : var(--primary);
    color : #fff;
}

.cloud-grid-box.highlighted .grid-box-head{
    color : #fff;
}

.cloud-server-cta-btn.mobile{
    display : none;
}

.cloud-right-box:nth-child(1){
    height : 350px;
    background: #a994e733;
}

.cloud-right-box:nth-child(2){
    height : 300px;
    background: #f1f4f4bd;
}

.cloud-right-box:nth-child(3){
    height : 250px;
    background: #f1efef91;
}

@media (max-width : 1140px){
     .se-head.cloud-server.mobile{
         display : block;
     }
     .se-head.cloud-server.desktop{
         display : none;
     }
     .cloud-server-container{
        flex-direction :column;
    }
    .cloud-server-right-container{
        width : 100%;
    }
    .cloud-left-container{
        width : 100%;
    }
    .cloud-server-cta-btn.mobile{
        display: flex;
        justify-content: center;
    }
    .cloud-server-cta-btn.desktop{
        display : none;
    }
}

@media (max-width : 768px){
    .se-head.cloud-server.mobile{
        margin-bottom : 45px;
    }
}


@media (max-width : 576px){
    .cloud-grid-container {
        grid-template-columns: 1fr;
    }
}

/*SECTION-3*/

.cld-grid-section{
    padding : 60px 0;
}

.cld-grid-wrapper{
    display : flex;
    flex-direction : row-reverse;
    justify-content : space-between;
    width : 100%;
    gap : 30px;
}

.cld-grid-container{
    display : grid;
    grid-template-column : 1fr;
    align-items : center;
    width : 50%;
    gap : 30px;
}

.cld-grid-box:nth-child(2) { 
    width :90%;
    margin-left : auto;
}

.cld-grid-box:nth-child(4) { 
    width :90%;
    margin-left : auto;
}

.grid-left-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-direction: column;
}

.grid-left-img{
    width : 100%;
    height : auto;
    object-fit : contain;
}

.cld-grid-box{
    width : 90%;
    padding : 30px;
    border-radius : 12px;
    box-shadow :0 0 10px rgba(0, 0, 0, 0.08);
}

.cld-image-container{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
}

.cld-grid-head{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.cld-box-head{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
}

.cld-box-img{
    width : 25px;
    height : 25px;
}

.cld-grid-box.highlighted{
    background : var(--primary);
    color : #fff;
}

.cld-grid-box.highlighted .cld-box-head{
    color : #fff;
}

.cloud-right-description{
    margin-bottom : 20px;
}

.cloud-right-list-container{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cloud-right-list-item{
    position: relative;
    padding-left: 1.75rem;
    font-size: 16px;
    color: var(--text-gray);
}

.cloud-right-list-item::before{
    content: "✔";
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--primary);
    font-size: 16px;
}

@media(max-width : 1200px){
    .cld-grid-container{
        width : 60%;
    }
    
    .grid-left-img-container{
    width : 40%;
}
}

@media (max-width : 1024px){
    .cld-grid-wrapper{
        flex-direction : column-reverse;
    }
    .cld-grid-container{
        width : 100%;
    }
    .grid-left-img-container{
        width : 100%;
    }
}

@media (max-width : 768px){
    .cloud-right-description{
        text-align : center;
    }
}

@media (max-width : 576px) {
    .cld-grid-box{
        width : 100%;
    }
    .cld-grid-box:nth-child(2){
        width : 100%;
    }
    .cld-grid-box:nth-child(4) {
        width : 100%;
    }
}
/*OS-SECTION*/

.os-section{
    padding : 60px 0;
    background : linear-gradient(126deg, #e6defe 0%, #f9f7ff 20%, #f9f7ff 80%, #e4daff 100%);
    margin-bottom : 60px;
}

.os-container{
    display: flex;
    flex-direction : row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap : 20px;
}

.section-heading-container.mobile{
    display : none;
}

.os-right-container{
    display: flex;
    flex-direction : column;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    position : relative;
}  

.os-right-description{
    margin-bottom : 20px;
}

.os-left-container{
    display: flex;
    flex-direction : column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;

}

.os-left-description{
    margin-bottom : 20px;
}

.os-box-container{
    display : grid;
    grid-template-columns : repeat(3, 1fr);
    gap : 30px;
    margin-top : 70px;
}

.os-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow : 0 0 10px rgba(0, 0, 0, 0.08);
    /*border : 1px solid var(--border);*/
    min-width : 150px;
}

.os-name{
    font-size: 16px;
    font-weight: 600;
    color : var(--dark);
    margin-top : 10px;
}

.os-left-img{
    width : 100%;
    height : auto;
}

.os-image{
    width : 80px;
    height : 80px;
}

.os-box-bt{
    width: 100%;
    height: 2px;
    background: #f2f0f07d;
    margin-top: 10px;
    border-radius: 30px;
}

.os-box:nth-child(2){
    transform : translateY(-50px);
}

.os-box:nth-child(5){
    transform : translateY(-50px);
}

.os-box:nth-child(7){
    transform: translateX(115%) translateY(-50px);
}


.left-os-box-container{
    display : grid;
    grid-template-columns : 1fr;
    gap : 10px;
}

.os-left-box{
    display: flex;
    align-items : center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    gap : 12px;
}

.os-left-head{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom : 20px;
}

.os-img-container{
    display: flex;
    justify-content: center;
    padding: 15px;
    align-items: center;
    border-radius: 8px;
    background : #e0e0e136;
}

.os-left-box-img{
    width : 30px;
    height : 30px;
}
  
.left-os-head{
    font-size: 20px;
    font-weight: 600;
    margin-bottom : 5px;
}  
   
@media (max-width : 1024px){
    .section-heading-container.mobile{
        display : block;
    }
    
    .section-head.desktop{
        display : none;
    }
    
    .os-container{
        flex-direction: column-reverse;
    }
    
    .os-right-container{
        width : 100%;
    }
    .os-left-container{
        width : 100%;
    }
}
@media (max-width : 768px){
    .section-heading-container.mobile{
        margin-bottom : 45px;
    }
    .os-left-container{
        align-items: center;
    }
    .os-left-description{
        text-align :center;
    }
}

@media (max-width : 576px){
    .os-box:nth-child(4){
        transform : translateY(-50px);
    }
    .os-box:nth-child(5) {
     transform: translateY(0px);
     }
     
     .os-box:nth-child(6) {
     transform: translateY(-50px);
    }
    .os-box-container{
        margin-top : 50px;
    }
    .left-os-box-container{
        display : none;
    }
    .os-box-container{
        grid-template-columns : repeat(2, 1fr);
    }
}



/* 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: 468px) {
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "box1 box2"
          "box3 box3"
          "box4 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: 468px) {
  .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;
  max-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 */



/*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: #673de6;
  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 #673de6;
}

.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: #673de6;
  font-weight: bold;
}

.all-card-icon {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 60px;
    width: 60px;
    background-color: #673de6;
    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: #673de6;
  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 #673de6;
    background-color: #673de6;
    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;
    }
}

/*ALL PAGES TAB SECTION CSS */


/* Section */
.money-back-section {
  padding: 5px 0;
  background-color:#ffffff;
  margin : 60px 0;
}

.money-back-box {
  background: #673de6;
  border-radius: 30px;
  padding:20px;
}

.money-back-row {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 20px;
}

.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: 700;
  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/*/



@media(max-width : 1200px){
    .section-subtitle{
        font-size : 36px;
    }
}

@media(max-width : 768px){
    .section-subtitle{
        font-size : 26px;
    }
}