:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-35cc340 */.progress-container {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Comfortaa';
    color: #2c3e91;
  }

  .progress-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .progress-container p {
    font-size: 1.1rem;
    color: #3d3d75;
    margin-bottom: 40px;
  }

  .progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    width: 100%;
    counter-reset: step;
  }

  .progressbar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    width: 100%;
    background-color: #eaf4fb;
    border-radius: 5px;
    z-index: 0;
  }

  .progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 10px;
    width: 29%; /* Change this value for progress (0–100%) */
    background-color: #082860;
    border-radius: 5px;
    z-index: 1;
    transition: width 0.4s ease;
  }

  .progress-step {
    position: relative;
    z-index: 2;
    background-color: #bde3f9;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }

  .progress-step.active {
    background-color: #082860;
  }

  .progress-step .label {
    position: absolute;
    bottom: -35px;
    font-size: 1rem;
    color: #2c3e91;
    font-weight: 500;
  }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-302d7ad */.package-selection {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  color: #142a68;
  padding: 60px 20px;
  background: #fff;
}

.package-selection h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.package-selection p {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Progress Bar */
.progress-bar {
  margin: 0 auto 50px;
  max-width: 700px;
  position: relative;
}

.progress-bar ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  position: relative;
}

.progress-bar ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d9e3f7;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 3px;
}

.progress-bar li {
  background: #d9e3f7;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #142a68;
  line-height: 35px;
  text-align: center;
  font-weight: 600;
  z-index: 2;
  position: relative;
}

.progress-bar li.active {
  background: #00aeef;
  color: #fff;
}

/* Broadband Title */
.broadband-title {
  background: #e9f3ff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.broadband-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #142a68;
}

/* Package Cards */
.package-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: #f5faff;
  border-radius: 20px;
  overflow: hidden;
  width: 240px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-header {
  background: #142a68;
  color: #fff;
  padding: 25px 15px 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

.card-header h4 {
  font-size: 18px;
  margin: 0 0 5px;
}

.card-header .speed {
  font-size: 20px;
  color: #00aeef;
  font-weight: 600;
  margin: 0;
}

.card-header .tag {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b1b33;
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
}

.card-body {
  padding: 40px 20px 25px;
}

.card-body .price {
  font-size: 24px;
  font-weight: 700;
  color: #142a68;
  margin-bottom: 15px;
}

.select-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00AEEF 0%, #0098D1 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-btn:hover {
  background: linear-gradient(135deg, #0098D1 0%, #007BB8 100%);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .package-container {
    flex-direction: column;
    align-items: center;
  }
  .package-card {
    width: 80%;
  }
}/* End custom CSS */