.why-choose {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-choose h2 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.why-choose ul li {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.why-choose ul li:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.why-choose ul li::before {
  content: "✔️";
  flex-shrink: 0;
  font-size: 20px;
  color: #22c55e;
  margin-top: 2px;
}

.homepage-intro {
  background-color: #f9fafb;
  color: #111827;
  padding: 50px 20px;
  text-align: center;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.homepage-intro:hover {
  transform: scale(1.015);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.homepage-intro h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.homepage-intro p {
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.7;
  color: #374151;
}

.homepage-intro .intro-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #111827;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.homepage-intro .intro-button:hover {
  background-color: #4f46e5;
  transform: translateY(-3px);
}

/* Common section styling */
.how-it-works, .features-overview {
  background: #ffffff;
  padding: 50px 20px;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Section Headings */
.how-it-works h2, .features-overview h2 {
  font-size: 32px;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

/* Sub-headings */
.how-it-works h3, .features-overview h3 {
  font-size: 22px;
  color: #222222;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraphs */
.how-it-works p, .features-overview p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* List Items (if any) */
.features-overview ul {
  padding-left: 20px;
  margin-top: 15px;
}

.features-overview li {
  font-size: 16px;
  color: #444444;
  margin-bottom: 8px;
  position: relative;
}

.features-overview li::before {
  content: "✔️";
  position: absolute;
  left: -25px;
  color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .how-it-works, .features-overview {
    padding: 30px 15px;
  }

  .how-it-works h2, .features-overview h2 {
    font-size: 26px;
  }

  .how-it-works h3, .features-overview h3 {
    font-size: 20px;
  }
}

.myform {
  display: flex;
  width: 100%;
  max-width: 600px;
}
.my-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.image-comparison {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 450px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
  }

  #removed-image {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.2s ease;
  }

  .handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #00c6ff;
    cursor: ew-resize;
    z-index: 10;
  }

  .handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }


.htwo {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #333;
    text-align: center;
}

.para {
    font-size: 0.7rem;
    color: #555;
    text-align: center;
}

.toolitem {
  padding: 15px;
  background: #ffffff;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toolitem a {
  display: inline-block;
  margin-top: 15px;
  font-size: 12px;
  color: #2ecc71;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.toolitem a:hover {
  color: #27ae60;
}