.se-i .se-footer .line {
    margin: 6px 12px;
}

.se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
}

.highlight{
    color: var(--primary);
}

/* GLOBAL HERO SECTION */
.hero-section {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero Content */
.hero-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-off {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Hero List Section */
.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}

/* Buttons + Timer */
.hero-button-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero-timer-wrapper {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: #f5f3fe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero_timer {
  display: flex;
  justify-content: space-around;
  width: 85%;
  align-items: center;
  font-family: var(--secondary-font);
}

/* Guarantee */
.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 5px;
}

.hero-guarantee-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-guarantee-text {
  font-size: 14px;
  font-weight: 500;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
  font-size: 16px;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.hero-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-list-section {
    align-items: center;
  }

  .hero-ul-list-items {
    align-items: center;
  }

  .hero-list-price {
    justify-content: center;
  }

  .hero-button-timer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 468px) {
  .hero-btn,
  .hero-timer-wrapper {
    width: 100%;
    max-width: 200px;
  }
}


/*GLOBAL HERO SECTION CSS END*/


/* GLOBAL REVIEW SECTION CSS START*/

.review-section-container {
  background-color: #ffffff;
  padding: 30px 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;
  }
  
  .rating-dash{
      display:none;
  }
}

/* GLOBAL REVIEW SECTION CSS END*/



/* hosting SOLUTIONS SECTION CSS */

.hosting-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Section Header */
.hosting-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.hosting-title1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hosting-title2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Layout Grid */
.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.hosting-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hosting-full {
  grid-column: 1 / -1;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .hosting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .hosting-right {
    grid-template-columns: 1fr;
  }
}

.hosting-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid var(--border);
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);*/
}

.hosting-sales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hosting-sales-content {
  text-align: left;
  width:50%;
}

.hosting-sales-content-img{
    width: 45%;
}

.hosting-contact-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;
    margin-top: 10px;
}

.hosting-contact-btn:hover{
    transform: translate(0, -5px);
}

.anchor-internal-link {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.anchor-internal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.anchor-internal-link:hover {
  color: var(--primary);
}

.anchor-internal-link:hover::after {
  width: 100%;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
 
  .hosting-sales {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hosting-full{
      flex-direction: column;
      gap:30px
  }
  
  .hosting-sales-content, .hosting-sales-content-img{
      width: 100%;
  }
  
  .hosting-contact-btn{
      padding: 0 10vw;
  }
}

/* Text Elements */
.hosting-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.hosting-text {
  margin-bottom: 15px;
}

/* List Styles */
.hosting-list {
  list-style: none;
  /*margin-bottom: 30px;*/
}

.hosting-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.hosting-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Images */
.hosting-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.hosting-img-small {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
}

/* hosting SOLUTIONS SECTION CSS END */


/* ========== Plans Container CSS ========== */

.plan_outer_container{
    margin:0 auto !important;
    max-width: 850px;
}

.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%;
    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: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 10px;
    padding: 35px 17px 14px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
}

.plan_badge:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

#plan2, #plan3{
    border-color:var(--primary);
    border: 2px solid var(--primary);
}

#plan1:hover,#plan4:hover{
    border-color:var(--primary);
}

#plan3{
    background: linear-gradient(to bottom, #e6e0ff 0%, #ffffff 50%, #f2eaff 100%);
}

#plan3 .plan_save, #plan3 .plan_renew_note, #plan3 .addon_span{
    background: #ffffff;
}

.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -50px;
    left: 0;
    text-align: center;
    z-index: -1;
    overflow: unset;
    border-radius: 14px 14px 0 0;
    padding: 12px 0 24px;
}

.plan-badge:before {
    content: "";
    position: absolute;
    left: -1.75px;
    top: -1.5px;
    right: -1.75px;
    bottom: -15px;
    background: var(--primary);
    border-radius: 16px 16px 0 0;
    z-index: -2;
}

.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%;
  }
}

.web_plan_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text{
    color: #fff;
    font-size: 16px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.plan_title {
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

.plan_para {
    font-size: 14px;
    margin-top: 20px;
    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_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_save {
    color: var(--primary);
    background: #ecedf9;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 20px;
    display: inline-block;
}

.plan_price {
    width: 100%;
    line-height: 0.8;
    margin-top: 20px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
}

.plan_price_discounted {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-gray);
}

.plan_price_unit {
    font-size: 16px;
    transform: translate(0,-4px);
    font-weight: 400;
    align-self: flex-end;
}

.plan_month_text {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}

.plan_button_box {
    margin: 24px 0 24px;
    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 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    background: rgb(69 123 255 / 6%);
    color: var(--primary);
}

.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: 20px;
    padding-left: 25px;
    font-size: 14px;
    font-weight:400;
    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: pointer;
}

.plan_feature_highlight_strong {
    font-weight: 600;
    color: var(--dark);
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    min-width: 200px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    pointer-events: none;
}

.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.plan_feature_list_title {
    font-size: 16px;
    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;
}

.addon_span{
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: rgb(69 123 255 / 6%);
    color: var(--primary);
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    width: max-content;
    margin-top: -5px;
}

.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: 5px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:10px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

.accordion_content {
    max-height: 0;
    /*overflow: hidden;*/ /* keep hidden if needed */
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.5s ease-in-out,
        opacity 0.5s ease-in-out,
        visibility 0.5s ease-in-out;
}

.accordion_content.is-open {
    max-height: 1000px; /* Large enough for content */
    opacity: 1;
    visibility: visible;
}

.accordion_title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion_title::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
}

.accordion_title.is-open::after {
    content: "−";
}



/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 769px) and (max-width: 1024px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Large - Show 4 plans */
@media (min-width: 1025px) and (max-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
    
    .slider-controls {
        display: none;
    }
}

/* Desktop - Show 4 plans */
@media (min-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .plan_container {
        /* padding-top: 80px; */
    }
    
    .plan_save {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .plan_price_discounted {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .plan_container {
        /* padding: 80px 5px 0; */
    }
    
    .plan_column {
        /*margin: 5px;*/
    }
    
    .plan_save {
        display: block;
        margin: 8px 0;
        margin-left: 0;
        text-align: center;
    }
}

.plan_hidden_features {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.6s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.plan_hidden_features.expanded {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: visible;
}


/* GLOBAL DATA CENTER CSS START */

.shared-hosting-section {
  background: #ffffff;
  padding: 60px 0;
}

.shared-hosting-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.shared-hosting-reasons-title {
  font-size: 40px; 
  color: #1a365d;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

.shared-hosting-reasons-item {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  margin-bottom: -2vh;
  margin-top: -3vh;
  cursor: pointer;
}

.shared-hosting-reasons-number {
  margin-right: 20px;
  height:100px;
  width:100px;
  
}

.shared-hosting-reasons-content {
  flex: 1;
}

.shared-hosting-reasons-subtitle {
  font-size: 24px; 
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: bold;
}

.shared-hosting-reasons-description {
  font-size: 16px; 
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}


@media (min-width: 769px) {
  .shared-hosting-reasons-item {
    width: 60%;
  }

  .shared-hosting-reasons-item:nth-child(even) {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .shared-hosting-reasons-title {
    font-size: 32px;
  }
    
    .shared-hosting-reasons-number {
        height:85px;
        width:85px;
    }
}

@media (max-width: 480px) {
  .shared-hosting-reasons-title {
    font-size: 28px;
  }

  .shared-hosting-reasons-subtitle {
    font-size: 20px;
  }

  .shared-hosting-reasons-description {
    font-size: 14px; 
  }

  .shared-hosting-reasons-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .shared-hosting-reasons-number {
    margin-bottom: 10px;
    height:75px;
    width:75px;
  }
}

/* GLOBAL DATA CENTER CSS END */

/* ================= 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: #f2f3f6;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.zigzag-item--security {
    background-color: #ECEDF9;
    flex-direction: row-reverse;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.zigzag-item--growth {
    background: linear-gradient(126deg,#e6defe 0%,#f9f7ff 20%,#f9f7ff 80%,#e4daff 100%);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.zigzag-item--support {
    background: linear-gradient(94.66deg,#f8f6ff 35%,#bcb2ff 100%);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.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-reverse-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;
    }
}





/* CTA BOX CSS */

.cta-box-section {
  padding: 30px 0 60px;
  background-color: #ffffff;
}

.cta-box-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.cta-box {
  position: relative;
  background: var(--primary);
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  /*max-width: 1000px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 20%;
  height: 90%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.cta-box::before {
  left: 60px;
  background-image: url('/assets/images/pages/coolify/cta/wordpress-logo.svg');
}

.cta-box::after {
  right: 60px;
  background-image: url('/assets/images/pages/coolify/cta/vps-logo.svg');
}

.contact-cta-box::before,
.contact-cta-box::after{
    height:80%;
    top:35px;
}

.contact-cta-box::before{
    left: 60px;
    background-image: url('/assets/images/pages/coolify/cta/headphone-logo.svg');
}

.contact-cta-box::after{
    right: 60px;
    background-image: url('/assets/images/pages/coolify/cta/colo-server.svg');
}

.cta-box-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%; /* fixed: full width for responsive */
  max-width: 600px;
  text-align: center;
}

.cta-box-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
}

.cta-box-text {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.cta-box-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--primary);
    background: #ffffff;
    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;
}

.cta-box-btn:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-box::before,
  .cta-box::after {
    width: 25%;
    height: 50%;
    top: auto;
    bottom: 10px;
    opacity: 0.2;
  }

  .cta-box::before {
    left: 20px;
  }

  .cta-box::after {
    right: 20px;
  }

  .cta-box-title {
    font-size: 26px;
  }

  .cta-box-text {
    font-size: 16px;
  }

  .cta-box-btn {
    padding: 0 5vw;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cta-box {
    padding: 25px 15px;
  }

  .cta-box-title {
    font-size: 22px;
  }

  .cta-box-btn {
    width: 100%;
    max-width: 280px;
    padding: 0 6vw;
  }
  
  .cta-box::before,
  .cta-box::after {
    width: 25%;
    height: 60%;
    top: auto;
    bottom: 10px;
    opacity: 0.2;
  }

}

/* CTA BOX CSS END */




/* BENEFITS SECTION */

.hosting-benefits-section {
  background-color: #f2f3f6;
  padding: 80px 0;
}

.hosting-benefits-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.hosting-benefits-header-primary {
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hosting-benefits-header-secondary {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 25px;
}

.hosting-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";
}

.hosting-benefits-box {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: var(--text-gray);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.hosting-benefits-box:nth-child(1) { grid-area: box1; }
.hosting-benefits-box:nth-child(2) { grid-area: box2; }
.hosting-benefits-box:nth-child(3) { grid-area: box3; }
.hosting-benefits-box:nth-child(4) { grid-area: box4; }

@media (max-width: 1024px) and (min-width: 769px) {
    
    .hosting-benefits-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "box1 box1"
          "box2 box4"
          "box3 box4";
        gap: 30px;
    }

    .hosting-benefits-box {
        aspect-ratio: auto;
        padding: 20px;
    }

    .hosting-benefits-box-title {
      font-size: 18px;
    }
    
    .hosting-benefits-box-para { 
        font-size: 14px; 
        overflow: auto; 
    }
}

@media (max-width: 768px) {
  .hosting-benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "box1"
      "box2"
      "box3"
      "box4";
    gap: 30px;
  }

  .hosting-benefits-header-secondary { font-size: 28px; }
  .hosting-benefits-icon-img { width: 44px; padding: 6px; }
}

.hosting-benefits-icon-img {
  width: 60px;
  padding: 10px;
  border-radius: 8px;
  background: var(--primary);
}

.hosting-benefits-box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-gray);
}

.hosting-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 */


/*========================
PRODUCT TABS SECTION CSS
========================*/

.product-tabs-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.coolify-products-header{
    max-width: 850px;
    margin: 0 auto 50px;
}

.product-tabs-layout {
  width: 100%;
  display: flex;
  gap: 20px;
  box-sizing: border-box;
  align-items: stretch; 
  margin-bottom: 10px;
}

.product-tabs-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr)); 
  gap: 30px;
  flex: 1;
  overflow-x: auto;
  height: 100%; 
}

.product-tab-input {
  display: none;
}

.product-tab-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 5px;
  background-color:  #ffffff;
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  user-select: none;
  min-height: 180px; 
}

.product-tab-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.product-tab-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

.product-tab-label:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.product-tab-input:checked + .product-tab-label {
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.product-content {
  width: 420px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  position: sticky;
  top: 20px;
  height: auto;
}

.product-panel {
  display: none;
}

#tab-web-hosting:checked ~ .product-content #content-web-hosting,
#tab-agency-hosting:checked ~ .product-content #content-agency-hosting,
#tab-vps-server:checked ~ .product-content #content-vps-server,
#tab-n8n-server:checked ~ .product-content #content-n8n-server,
#tab-dedicated-server:checked ~ .product-content #content-dedicated-server,
#tab-ssl-certificate:checked ~ .product-content #content-ssl-certificate,
#tab-domain-registration:checked ~ .product-content #content-domain-registration,
#tab-colocation-service:checked ~ .product-content #content-colocation-service,
#tab-cloud-hosting:checked ~ .product-content #content-cloud-hosting,
#tab-managed-server:checked ~ .product-content #content-managed-server {
  display: block;
  animation: fade-in-up 220ms ease;
}

#tab-web-hosting:checked ~ .product-tabs-icons label[for="tab-web-hosting"],
#tab-agency-hosting:checked ~ .product-tabs-icons label[for="tab-agency-hosting"],
#tab-vps-server:checked ~ .product-tabs-icons label[for="tab-vps-server"],
#tab-n8n-server:checked ~ .product-tabs-icons label[for="tab-n8n-server"],
#tab-dedicated-server:checked ~ .product-tabs-icons label[for="tab-dedicated-server"],
#tab-ssl-certificate:checked ~ .product-tabs-icons label[for="tab-ssl-certificate"],
#tab-domain-registration:checked ~ .product-tabs-icons label[for="tab-domain-registration"],
#tab-colocation-service:checked ~ .product-tabs-icons label[for="tab-colocation-service"],
#tab-cloud-hosting:checked ~ .product-tabs-icons label[for="tab-cloud-hosting"],
#tab-managed-server:checked ~ .product-tabs-icons label[for="tab-managed-server"] {
  border: 1px solid var(--primary);
  background: rgba(98, 80, 255, 0.08);
  box-shadow: 0 8px 22px rgba(98, 80, 255, 0.15);
}


/*========================
PANEL CONTENT STYLES
========================*/
.product-panel-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 10px;
}

.product-panel-desc {
  margin: 0 0 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.product-panel-price {
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--primary);
}

.product-panel-price-amount {
  font-size: 20px;
  color: var(--primary);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  max-width: 360px;
}

.product-feature {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-gray);
  line-height: 1.45;
}

.product-feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #13b763;
  font-weight: 700;
  font-size: 14px;
}

.product-cta {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 5px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor:pointer;
}

.product-cta:hover {
  transform: translateY(-3px);
}

/*========================
ANIMATION
========================*/
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .product-tabs-layout {
    flex-direction: column;
  }

  .product-tabs-icons {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    width: 100%;
  }

  .product-content {
    width: 100%;
    position: static; /* removed sticky to prevent mobile overlap */
  }

  .product-tab-icon { 
    width: 58px; 
    height: 58px; 
  }
}



/*LANGUAGE SECTION CSS*/
.language-logo-section {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.language-logo-section > .container{
    max-width:100%;
}

.language-header{
    max-width:950px;
}

.language-infinite-scroll-container {
  overflow: hidden;
  width: 100%;
}

.language-infinite-scroll-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: infiniteScroll 30s linear infinite;
}

.language-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;
}

.language-icon-card-img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.language-icon-card:hover .language-icon-card-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) {
  .language-infinite-scroll-track {
    gap: 30px;
    animation-duration: 30s;
  }
}

@media (max-width: 576px) {
  .language-infinite-scroll-track {
    gap: 20px;
    animation-duration: 30s;
  }
}
/*LANGUAGE SECTION CSS*/


/* Hosting Highlights */
.hosting-highlights {
  padding: 60px 0px;
  background-color: var(--primary);
}

.hosting-highlights-header {
  max-width: 850px;
  margin: 0px auto 50px
}

.highlights-header-title1 {
  color: #ffffff !important;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-card {
  padding: 25px;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.highlight-title::after {
  content: "";
  display: block;
  margin: 6px auto 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 1) 47%,
    rgba(255, 255, 255, 1) 56%,
    rgba(255, 255, 255, 0) 80%
  );
  transition: opacity 0.3s ease, width 0.3s ease;
  opacity: 0;
}

.highlight-card:hover .highlight-title::after {
  width: 100%;
  opacity: 1;
}

.highlight-text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.highlight-icon {
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
  max-width: 100px;
  max-height: 100px;
}

.highlight-icon-img {
  width: 100%;
  height: 100%;
}

.hosting-highlights-cta-button{
    text-align:center;
    margin-top:40px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.cta-box-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;
}

.cta-box-btn:hover {
    background: #ffffff;
    color: var(--primary);
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}



/* ALL VPS SERVER TABS SECTION CSS */

.hosting-tabs-section {
  padding: 60px 0;
  background-color: #f2f3f6;
}

.hosting-tabs-header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 50px;
}

.hosting-tabs-title-main {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hosting-tabs-subtitle {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.2;
  margin-bottom: 15px;
}

.hosting-tabs-highlight {
  color: var(--primary);
}

.hosting-tabs-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hosting-tabs-input {
  display: none;
}

.hosting-tabs-buttons {
  max-width: 95%;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding:20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #ffffff;
}
.hosting-tabs-buttons::-webkit-scrollbar {
  height: 6px;
}
.hosting-tabs-buttons::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
}

.hosting-tabs-button {
  flex: 0 0 180px;
  text-align: center;
  padding: 12px;
  background: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  color: var(--text-gray);
  border: 1px solid var(--border);
  white-space: nowrap;
}

#hosting-tabs-linux:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-linux"],
#hosting-tabs-windows:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-windows"],
#hosting-tabs-nodejs:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-nodejs"],
#hosting-tabs-python:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-python"],
#hosting-tabs-laravel:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-laravel"],
#hosting-tabs-business:checked ~ .hosting-tabs-buttons label[for="hosting-tabs-business"] {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hosting-tabs-contents {
  width: 100%;
}

.hosting-tabs-content {
  display: none;
}

#hosting-tabs-linux:checked ~ .hosting-tabs-contents #vps-content-linux,
#hosting-tabs-windows:checked ~ .hosting-tabs-contents #vps-content-windows,
#hosting-tabs-nodejs:checked ~ .hosting-tabs-contents #vps-content-nodejs,
#hosting-tabs-python:checked ~ .hosting-tabs-contents #vps-content-python,
#hosting-tabs-laravel:checked ~ .hosting-tabs-contents #vps-content-laravel,
#hosting-tabs-business:checked ~ .hosting-tabs-contents #vps-content-business {
  display: block;
}

.hosting-tabs-card {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;               
  border-radius: 20px;               
  padding: 30px;
  border: 1px solid var(--border); 
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hosting-tabs-card-img-wrapper {
  width: 43%;
  flex-shrink: 0;
  padding: 18px;
  border-radius: 20px;
  background-clip: padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border);
  background: #ffffff;
}

.hosting-tabs-card-img-wrapper .hosting-tabs-card-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
}

.laravel-img{
  object-fit: cover;
}

.hosting-tabs-card-content {
  width: 55%;
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 20px;
  background: #ffffff;
}

.hosting-tabs-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.hosting-tabs-card-text {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.hosting-tabs-card-list {
  list-style: none;
  margin-bottom: 15px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hosting-tabs-card-list-item {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-gray);
}

.hosting-tabs-card-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #13b763;
  font-weight: bold;
}

.hosting-tabs-card-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;
}

.hosting-tabs-card-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .hosting-tabs-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hosting-tabs-card-img-wrapper,
  .hosting-tabs-card-content {
    width: 100%;
  }

  .hosting-tabs-card-list{
      align-items: center;
  }
}


/*EXPERIENCE SECTION CSS*/
.hosting-experience-section {
  background: #ffffff;
  padding: 60px 0;
}

.hosting-experience-header {
  max-width: 850px;
  margin: 0px auto 50px
}

/* ROW COMMON */
.hosting-experience-row {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.hosting-experience-row-three {
  grid-template-columns: repeat(3, 1fr);
}

.hosting-experience-row-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.hosting-experience-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hosting-experience-icon {
  min-width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hosting-experience-icon-img {
  width: 48px;
  height: 48px;
}

.hosting-experience-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hosting-experience-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-gray);
}

.hosting-experience-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

@media (max-width: 1024px) {
  .hosting-experience-row-three,
  .hosting-experience-row-two {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hosting-experience-card {
    padding: 22px;
  }

  .hosting-experience-title {
    font-size: 17px;
  }

  .hosting-experience-text {
    font-size: 14px;
  }
}
