.vps-about-section {
    background: #f4f8ff;
    padding: 120px 0;
    font-family: 'Segoe UI', sans-serif;
}

.vps-about-item {
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

.vps-about-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vps-about-item h4 {
    font-size: 20px;
    color: #1e2e50;
}

.vps-about-item p {
    color: #4b5d73;
    font-size: 15px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #006eff, #7aa8ff);
    color: white;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 110, 255, 0.2);
    transition: transform 0.3s ease;
}

.vps-about-item:hover .icon-wrapper {
    transform: rotate(15deg);
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #112a46;
    margin-bottom: 15px;
}

.section-desc p {
    font-size: 16px;
    color: #57687a;
    line-height: 1.7;
}
/*Feature Section */
.vps-feature-item {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }
    .vps-feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }
    .vps-ft-item-content h5 {
      transition: color 0.3s ease;
    }
    .vps-feature-item:hover .vps-ft-item-content h5 {
      color: #0d6efd; /* Bootstrap primary color */
    }
    /* Position shapes */
    .position-absolute.right-bottom {
      right: 0;
      bottom: 0;
      width: 100px;
      opacity: 0.1;
      pointer-events: none;
    }
    /* Style nav tabs */
    .vps-feature-btns .template-btn {
      margin: 0 8px;
      padding: 8px 24px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .vps-feature-btns .template-btn.active {
      background-color: #0d6efd;
      color: white;
    }
    /*Price Section */
     /* Smooth card hover scale */
  .hover-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }

  /* Toggle switch styles */
  .tab-switch-btn {
    position: relative;
    width: 100px;
    height: 32px;
  }
  .switch-input {
    width: 0;
    height: 0;
    opacity: 0;
  }
  .toggle-switch-btn {
    width: 50px;
    height: 24px;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
  }
  .toggle-switch-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  .switch-input:checked + .toggle-switch-btn {
    background-color: #007bff;
  }
  .switch-input:checked + .toggle-switch-btn::before {
    transform: translateX(26px);
  }

  /* Price toggle animations */
  .price {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
  }
  .price.active {
    opacity: 1;
    max-height: 100px;
  }

  /* Feature list collapsed by default */
  .collapsed-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .collapsed-features.expanded {
    max-height: 500px; /* enough height to show all features */
  }

  /* Expand button rotation */
  .expand-btn i {
    transition: transform 0.3s ease;
  }
  .expand-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

