    .calculator {
      display: flex;
			background: linear-gradient(to bottom, rgba(54, 76, 133, 1), rgba(13, 18, 31, 1));
      /* background: #fff; */
      border-radius: 20px;
      overflow: hidden;
      max-width: 928px;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* Left Side */
    .apps {
      flex: 1;
      padding: 16px 19px;
      background: rgba(255, 255, 251, 0.89);
      border-radius: 16px;
      margin: 24px;
			height: 525px;
    }

    .apps h2 {
			font-size: 30px;
			margin-top: 10px;
			font-weight: 700;
			color: #1e2a47;
			margin-bottom: 25px;
			font-family: lora;
			text-align: center;
			line-height: 34px;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 10px;
    }

    .app {
      /* background: #fff;
      border: 2px solid #e0e6f0;
      border-radius: 12px;
      padding: 15px; */
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
			margin-top: -22px;
    }

    .app img {
      width: 100px;
      /* height: 40px; */
      display: block;
      margin: 9px auto -27px;
    }

    .app span {
      font-size: 10px;
			line-height: 20px;
      color: #1e2a47;
      font-weight: 400;
    }

    .app.selected {
      border-color: #2b57f5;
      box-shadow: 0 4px 10px rgba(43,87,245,0.15);
    }

		.app.selected::after {
			content: "";
			background-image: url("https://mywellops.com/wp-content/uploads/2025/09/tick-circle-1.png");
			background-size: contain;        /* Ensure the image fills the container */
			background-position: center;   /* Center the image */
			background-repeat: no-repeat;  /* Prevent tiling */
			border-radius: 50%;
			width: 20px;
			height: 20px;
			display: block;                /* Change from 'flex' to 'block' */
			position: absolute;
			top: -8px;
			right: -8px;
			z-index: 5;
			}

    /* Slider */
    .slider-container {
      margin-top: 30px;
    }

    .slider-container label {
      font-size: 14px;
      color: rgba(54, 76, 133, 1);
      font-weight: 700;
      display: block;
      margin-bottom: 10px;
			text-align: center;
    }

    .slider-container input {
      width: 100%;
    }

    .slider-marks {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #666;
      margin-top: 5px;
    }

    /* Right Side */
    .results {
      flex: 1;
      padding: 36px;
      border-radius: 16px;
      background: rgba(255, 255, 251, 0.89);
      margin: 24px;
			height: 525px;
			transform: translateX(-22px);
			width: 448px;
    }

    .results h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #1e2a47;
    }

    .results .save {
      font-size: 22px;
      font-weight: 700;
      color: #2b57f5;
    }

    .results p {
      font-size: 14px;
      color: #444;
      line-height: 19px;
			margin-top: 12px;
    }

    .btn {
      display: block;
      background: linear-gradient(to bottom, rgba(54, 76, 133, 1), rgba(13, 18, 31, 1));
      color: white;
      text-decoration: none;
      text-align: center;
      padding: 12px;
      border-radius: 10px;
      font-weight: 700;
      margin: 20px 0;
			font-size: 14px;
			width: 330px;
    }

    .btn:hover {
    	color: #fff;
    }

    .testimonial {
      background: rgba(255, 246, 240, 1);
      border-radius: 12px;
      padding: 20px;
      font-size: 14px;
      color: #333;
    }

    .testimonial .stars {
      color: #f5b700;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .testimonial p {
      margin-bottom: 15px;
      font-style: italic;
      color: #555;
    }

    .testimonial .author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .author img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }

    .author-info {
      font-size: 13px;
      color: #444;
    }

    .author-info strong {
      display: block;
      font-weight: 600;
      color: #1e2a47;
    }
    .tools-count{
			margin-top: -5px;
      display: flex;
      align-items: center;
    }
    .tools-count h3{
      padding-left: 20px;
      font-size: 14px;
    }
    .tools-count #savings{
      padding-left: 20px;
			font-family: lora;
			font-weight: 700;
			color: rgba(54, 76, 133, 1);
    }

/* ============================= */
/* PERFECT RESPONSIVE VERSION */
/* ============================= */

@media (max-width: 1024px) {
  .calculator {
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
  }

  .apps, .results {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: auto;
    transform: none;
    padding: 24px 20px;
  }

  .apps {
		border-radius: 12px;
    border-bottom: 2px solid rgba(54, 76, 133, 0.2);
  }

  .apps h2 {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 24px;
  }

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    justify-items: center;
  }

  .app img {
    width: 65px;
    margin: 8px auto -20px;
  }

  .app span {
    font-size: 11px;
  }

  .slider-container {
    margin-top: 30px;
  }

  .slider-container label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
  }

  .slider-container input {
    margin-top: 8px;
  }

  .slider-marks {
    font-size: 11px;
    color: #777;
    margin-top: 6px;
    padding: 0 6px;
  }

  .results {
		border-radius: 12px;
    background: rgba(255, 255, 251, 0.95);
  }

  .tools-count {
    justify-content: center;
  }

  .tools-count h3 {
    font-size: 14px;
  }

  .save {
    font-size: 20px !important;
    text-align: center;
    width: 100%;
  }

  .results p {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
  }

  .btn {
    width: 100%;
    font-size: 13px;
    padding: 12px;
    text-align: center;
    margin-top: 18px;
  }

  .testimonial {
    margin-top: 18px;
    background: #fff8f4;
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    text-align: center;
  }

  .testimonial .stars {
    font-size: 16px;
  }

  .testimonial p {
    font-style: italic;
    font-size: 12px;
    color: #555;
  }

  .author {
    justify-content: center;
    margin-top: 10px;
  }

  .author img {
    width: 32px;
    height: 32px;
  }

  .author-info {
    font-size: 12px;
  }

  .author-info strong {
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .calculator {
    max-width: 90%;
		padding: 20px;
		gap: 24px;
  }

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .app img {
    width: 58px;
  }

  .apps h2 {
    font-size: 20px;
  }

  .slider-container label {
    font-size: 12px;
  }

  .results p {
    font-size: 12px;
  }

  .btn {
    font-size: 12px;
    padding: 10px;
  }
}
