

.box {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    min-width: 70%;
}



.pack-simulator-title {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
}

.offer-title {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
}

.pack-name {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
}

.offer-name {
    background-color: #02ff04;
    border-radius: 10px;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 5px;
}

.slider-wrap {
    width: 100%;
    height: 70px; /* Adjust height to accommodate larger icon */
    position: relative;
    margin: 20px 0;
}

.slider-track {
    width: 100%;
    height: 10px;
    background: #ccc;
    position: relative;
    border-radius: 5px;
}

.slider-thumb {
    width: 40px; /* Increase width */
    height: 40px; /* Increase height */
    background: transparent;
    position: absolute;
    top: -15px; /* Adjust top to center the icon */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-thumb i {
    color: #02ff04;
    font-size: 40px; /* Increase icon size */
}

#parcelIcon {
    animation: jump 0.5s infinite alternate; /* Animation for jumping effect */
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7.5px);
    }
}

.output p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #555;
}

i.fas.fa-box {
    margin-right: 5px;
    color: #02ff04;
}

.orange-text {
    color: #02ff04;
    font-weight: bold;
}

#parcelCount {
    font-size: 1.5em; /* Adjust font size as needed */
}

#parcelNumber {
    font-size: 1.5em; /* Same font size as the static text */
    font-family: 'Roboto', sans-serif; /* Ensure consistency with other text */
    color: #333; /* Text color */
}

.savings-tag {
    display: inline-block;
    background-color: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1.1em;
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    0% {
        color: black;
    }
    100% {
        color: white;
    }
}

.currency-toggle {
    margin-bottom: 20px;
}

#toggleCurrencyBtn {
    background-color: #02ff04;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#toggleCurrencyBtn:hover {
    background-color: #02cc03;
}











.features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

@media(min-width: 992px) {
  /* desktop: 4 cards per row */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 40px;
  color: #02cc03;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 15px;
  color: #555;
}
