.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.2;
  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-bot {
  height: 40px;
}

.rating-icon .icon-ai {
  height: 60px;
}

.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*/


/* Plans Container CSS */
.vps-pricing-table{
    padding:30px 0px;
}

.plan_outer_container {
  margin-bottom: 25px !important;
  max-width: 800px;
}

.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;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  /*margin-top: 20px;*/
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 45px 0 20px;
}

.plan_column {
  background: #ffffff;
  border: 1px solid #D4D4D8;
  border-radius: 8px;
  margin: 10px;
  padding: 44px 17px 14px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  position: relative;
  min-height: 600px;
  user-select: none;
}
.plan_column:hover {
  border: 1px solid var(--primary);
}

#vps-plan3, #vps-plan2, #vps-plan7, #vps-plan6{
    border: 2px solid var(--primary);
}

#vps-plan7, #vps-plan3 .plan_save{
    background: #ffffff;
}

.plan_header_note{
    margin-bottom:20px;
}

.plan_title {
  font-weight: 500;
  color: var(--dark);
  font-size: 20px;
}
.vps_plan_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan_content {
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan_header_box {
  position: relative;
  z-index: 10;
}

.plan_month_free {
    color: #673de6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.plan_header_padding {
  padding-top: 16px;
}

.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: 18px;
  font-weight: 600;
  margin-left: 10px;
  border-radius: 5px;
  display: inline-block;
}

.plan_price {
  width: 100%;
  line-height: 0.8;
  margin-top: 15px;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-gray);
}
.plan_price_discounted {
  font-size: 48px;
  font-weight: 600;
}
.plan_price_unit {
  font-size: 16px;
  transform: translate(0, -4px);
  font-weight: 400;
  align-self: flex-end;
}

.plan_button_box {
  margin: 24px 0 22px;
  text-align: center;
}
.plan_button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 8px;
  padding: 17px 14px;
  font-size: 18px;
  border: 1px solid var(--primary);
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.plan_button-light{
    background-color: rgb(222 225 255);
}

.plan_button:hover {
  background: var(--primary);
  color: #fff;
}
.btn_active_plan {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.plan_renew_note {
  padding: 2px 0 25px;
  font-size: 14px;
}

.plan_divider {
  margin-bottom: 30px;
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
}

.plan_feature_list {
  padding: 0;
  list-style: none;
}
.plan_feature {
  display: block;
  margin-bottom: 18px;
  padding-left: 25px;
  font-size: 14px;
  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_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[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: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.plan_toggle_button {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  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 0.5s ease-in-out;
}
.plan_toggle_button:hover:after {
  width: 138px;
}

.plan_hidden_features {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease,
    transform 0.5s ease;
}
.plan_hidden_features.expanded {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: visible;
}

/* Slider buttons (renamed) */
.vps-slider-controls {
  position: absolute;
  top: 49%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.vps-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;
}

.vps-slider-button:disabled {
  opacity: 0;
  visibility: hidden;
}

.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: 14px 14px 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;
}

@keyframes shinePlanBadge {
  100% {
    left: 125%;
  }
}

.plan-badge-img {
  filter: brightness(15.5);
}

.plan-badge-text{
    color: #ffffff;
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
}
.btn_active_plan {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
}

.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;
}

.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 infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

#vps-plan3, #vps-plan7{
    background: linear-gradient(to bottom, #e6e0ff 0%, #ffffff 50%, #f2eaff 100%);
}

#vps-plan3 .plan_save #vps-plan7{
    background: #ffffff;
}

@media (max-width: 480px) {
  .plan_column {
    width: calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .carousel-track {
    padding: 60px 0 20px;
  }
  .plan_save {
    display: block;
    margin: 8px 0;
    margin-left: 0;
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .plan_column {
    width: calc(50% - 20px);
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .carousel-track {
    padding: 60px 0 20px;
  }
  .plan_save {
    font-size: 14px;
    padding: 6px 12px;
  }
  .plan_price_discounted {
    font-size: 36px;
  }
}

@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);
  }
  .carousel-track {
    padding: 60px 0 20px;
  }
}
@media (min-width: 1025px) {
  .plan_column {
    width: calc(25% - 20px);
    min-width: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}

/* Global Features Section */
.global_features_section {
  padding: 70px 0;
  background-color: #ffffff;
}

.global_features_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F3F4F6;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
}

.global_features_header {
  text-align: center;
  margin-bottom: 40px;
}

.global_features_header_text {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.global_features_header_text .text-primary {
  color: var(--primary);
}

/* FIXED GLOBAL FEATURES BOX */
.global_features_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.global_feature_list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border);
}

.global_feature {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #333333;
}

.global_feature:last-child {
  margin-bottom: 0;
}

.global_feature:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/pages/vps-servers/check-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.global_feature_highlight {
  color: #161718;
  text-decoration: underline;
  text-decoration-color: rgba(22, 23, 24, 0.3);
  text-decoration-style: dashed;
  text-underline-position: under;
  padding-bottom: 2px;
  position: relative;
  cursor: pointer;
}

/* Tooltip */
.global_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;
}

.global_feature_highlight[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .global_features_box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 468px) {
  .global_features_box {
    grid-template-columns: 1fr;
  }
}


/*FEATURES SECTION CSS START*/

.features-section {
  background: #fff;
  padding: 60px 0;
}

.vps-features-header{
    max-width: 850px;
}


.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.title-highlight {
  background: #0069ff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
}

.card-item {
  /*background-color: #f8f9ff;*/
  border-radius: 8px;
  overflow: hidden;
  /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.card-item:hover {
  transform: translateY(-8px);
}

.card-network {
  grid-column: 1;
  grid-row: 1;
}

.card-power {
  grid-column: 2;
  grid-row: 1;
}

.card-support {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.card-security {
  grid-column: 1 / span 2;
  grid-row: 2;
  /*background-color: #00ff1521;*/
}

.card-connectivity {
  grid-column: 1;
  grid-row: 3;
  /*background-color: #e3f2fd;*/
  /*max-height: 450px;*/
}

.card-monitoring {
  grid-column: 2 / span 2;
  grid-row: 3;
  /*background-color: #34495eba;*/
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.image-wrapper {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
}

.card-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.support-image-wrapper {
  height: 100%;
  overflow: hidden;
  padding: 20px;
  background: #ffffff;
  height: 500px;
}

.support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
}

.card-description {
  font-size: 16px;
  color: var(--text-gray);
  text-align: left;
  line-height: 1.5;
}

.support-title-wrapper {
  background-color: #fff;
  padding: 0 20px;
}

.support-description-wrapper {
  padding: 20px;
  background-color: #fff;
}

.security-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-grow: 1;
}

.security-image-section {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  height: 300px;
}

.security-text-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.security-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.security-cta:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.connectivity-image-wrapper {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  max-height: 300px;
}

.connectivity-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.connectivity-text-wrapper {
  padding: 20px;
  flex-grow: 1;
}

.monitoring-image-wrapper {
  overflow: hidden;
  max-height: 500px;
  max-width: 500px;
  background: #ffffff;
  padding: 20px;
}

.monitoring-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monitoring-text-wrapper {
  width: 50%;
  padding: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.monitoring-title {
  color: var(--dark);
  text-align: left;
  font-size: 28px;
  font-weight: 500;
}

.monitoring-description {
  color: var(--text-gray);
  text-align: left;
  font-size: 16px;
}

.features-section-button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.vps-card-btn{
    font-size: 15px;
    background-color: var(--primary);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    height: 54px;
    padding: 20px;
    line-height: 1;
    letter-spacing: 0.8px;
    font-family: var(--secondary-font);
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    width: 200px;
}

.vps-card-btn:hover{
    background-color: #ffffff;
    border: 1px solid var(--primary);
    color: var(--primary);
}


/* Unified content wrapper for cards */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.card-content .card-description {
  padding: 0;
}

@media (max-width: 768px) {
  .card-content {
    align-items: center;
  }
}

/* VPS Feature List (Used in Card 3 & Card 6 only) */
.vps-feature-list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.vps-feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.5;
}

.vps-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 600;
}

/* Mobile alignment fix */
@media (max-width: 768px) {
  .vps-feature-list {
    text-align: left;
  }
}

/* ================================
   RESPONSIVE FIXES (LAYOUT ONLY)
================================ */

/* Tablet & below */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .card-network,
  .card-power,
  .card-support,
  .card-security,
  .card-connectivity,
  .card-monitoring {
    grid-column: auto;
    grid-row: auto;
  }

  .card-support {
    display: flex;
    flex-direction: column;
  }

  .security-content-wrapper {
    flex-direction: column;
  }

  .monitoring-text-wrapper {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-monitoring {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .monitoring-text-wrapper {
    align-items: center;
  }
}



/*FEATURES SECTION CSS END*/


/* VPS Highlights */
.vps-highlights {
  padding: 60px 0;
  background-color: var(--primary);
  /*background: linear-gradient(90deg, #673de6 -10.59%, #00060c 300.59%);*/
  background: radial-gradient(
  120% 90% at 50% 130%,
  rgba(188, 189, 255, 0.9) 0%,
  rgba(103, 61, 230, 0.75) 38%,
  rgba(103, 61, 230, 0.35) 62%,
  rgba(0, 0, 0, 0) 80%
),
#000000;

}

.vps-highlights-header {
  max-width: 950px;
  margin: 0 auto 50px;
}

.vps-header-title {
  color: #ffffff !important;
}

.vps-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vps-highlight-card {
  padding: 25px;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vps-highlight-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.vps-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;
}

.vps-highlight-card:hover .vps-highlight-title::after {
  width: 100%;
  opacity: 1;
}

.vps-highlight-text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.vps-highlight-icon {
  border-radius: 8px;
  padding: 15px;
  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;
}

.vps-highlight-icon-img {
  width: 100%;
  height: 100%;
}

.vps-highlights-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vps-cta-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);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

.vps-cta-btn:hover {
  transform: translate(0, -5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .vps-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .vps-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* VPS Highlights Image Section */
.highlights-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 55px;
  position: relative;
  z-index: 1;
}

.highlights-image-wrapper {
  position: relative;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}


/* Soft glow behind image */
.highlights-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -35px;
  background: radial-gradient(
    circle,
    rgba(188, 189, 255, 0.35) 0%,
    rgba(103, 61, 230, 0.25) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  filter: blur(35px);
}

/* VPS Highlight Image */
.vps-highlights-image {
  display: block;
  max-width: 100%;
  width: 670px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .vps-highlights-image {
    width: 420px;
  }
}

@media (max-width: 680px) {
  .highlights-image-container {
    margin: 30px auto 45px;
  }

  .vps-highlights-image {
    width: 100%;
  }

  .highlights-image-wrapper {
    padding: 15px;
  }
}

@media (max-width: 680px) {
  .highlights-image-wrapper {
    overflow: hidden;
  }

  .highlights-image-wrapper::before {
    inset: -15px;
    filter: blur(20px);
  }
}


/* 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%;
  }

}

/* 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 */

/* 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;
  }
}

/* ================= 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 */

