 .content p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 2; 
        -webkit-box-orient: vertical;
    }

    .h2, h2 {
        font-size: 25px !important;
    }

    .h3, h3 {
        font-size: 25px !important;
    }

    .form-p p {
        text-align: center !important;
    }

    @media (max-width: 1015px) {
        .form-img{
            bottom:0;
        }
    }

    .prose ul{
        list-style: disc !important;
        margin: 5px 0px 5px 30px !important;
    }

    .prose ul li{
        color: #445375 !important;
    }

    .prose h3{
        color:#000 !important;
        margin:8px 0 8px 0 !important;
    }

    .prose h4{
        color:#000 !important;
        margin:8px 0 8px 0 !important;
    }


    /* new sections css  */

    /* Hero Section */
    .hero-section {
        padding: 80px 0;
        background: #fafafa;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    /* Content */
    .hero-content h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 20px;
        color: #555;
        margin-bottom: 32px;
    }

    .hero-features {
        list-style: none;
        padding: 0;
        margin: 0 0 32px 0;
    }

    .hero-features li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 12px;
        font-size: 16px;
    }

    .hero-features li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        color: #ff6b4a;
        font-weight: bold;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
        color: #fff;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 74, 0.3);
    }

    .btn-outline {
        border: 2px solid #d43535;
        color: #d43535;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-outline:hover {
    background: #ff6b4a;
    color: #fff;
    }

    /* Image */
    .hero-image-wrapper {
    position: relative;
    }

    .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
    }

    .hero-image img {
    width: 100%;
    display: block;
    }

    /* Trusted Badge */
    .trusted-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .trusted-badge p {
    margin: 0;
    font-size: 14px;
    color: #666;
    }

    .trusted-badge h3 {
    margin: 0;
    font-size: 22px;
    color: #ff6b4a;
    }

    /* Glow Effects */
    .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    }

    .glow-top {
    width: 100px;
    height: 100px;
    background: #ff6b4a;
    top: -20px;
    right: -20px;
    }

    .glow-bottom {
    width: 140px;
    height: 140px;
    background: #7c7cff;
    bottom: -40px;
    left: -40px;
    }

    /* Animation */
    @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    }

    /* Responsive */
    @media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }
    }


    /* Section */
.trust-section {
  padding: 48px 0;
  background: linear-gradient(
    to right,
    hsl(0, 65%, 95%),
    hsl(0, 50%, 97%),
    hsl(0, 65%, 95%)
  );
}

.trust-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Cards */
.trust-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Icons */
.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* Text */
.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  padding: 64px 0 80px;

}

.stats-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.text-gradient {
  background: linear-gradient(90deg, #ff6b4a, #ff8a65);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Card */
.stat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(255, 107, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: #d43535;
}

/* Number */
.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-number span {
  color: #d43535;
  font-size: 32px;
}

/* Text */
.stat-card p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-title {
    font-size: 26px;
  }
}

.comparison-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header h2 {
  font-size: 36px !important;
  font-weight: 700;
  margin-bottom: 12px;
}

.comparison-header p {
  font-size: 18px;
  color: #666;
  max-width: 640px;
  margin: auto;
}

.text-gradient {
  background: linear-gradient(90deg, #ef6334, #d43535);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Table Wrapper */
.comparison-table-wrapper {
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Table */
.comparison-table {
  display: grid;
  grid-auto-rows: minmax(56px, auto);
}

/* Rows */
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #ffffff;
}

.table-row.alt {
  background: #f9fafb;
}

.table-head {
  background: #f3f4f6;
  font-weight: 700;
}

/* Cells */
.cell {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-left: 1px solid #e5e7eb;
}

.cell:first-child {
  border-left: none;
}

.cell.feature {
  font-weight: 500;
}

/* .cell.center {
  justify-content: center;
  font-size: 18px;
} */

.cell.truetech {
    color: #d43535;
    justify-content: center;
    background: #d435350d;
}

.cell.others {
  color: #6b7280;
  justify-content: center;
}

/* Icons */
.success {
  color: #16a34a;
  font-weight: bold;
  font-size:18px;
  justify-content:center;
}

.muted {
  color: #9ca3af;
  font-weight: bold;
  font-size: 18px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-header h2 {
    font-size: 28px !important;
  }

  .table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .table-row {
    grid-template-columns: 1fr;
  }

  .cell.center {
    justify-content: flex-start;
  }

  .table-head {
    display: none;
  }
}

.how-to-section {
  background: #f6f7f9;
  padding: 70px 0;
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px !important;
  font-weight: 700;
  color: #111;
}

.section-header h2 span {
  background: linear-gradient(90deg, #ef6334, #d43535);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 95, 109, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step-box:hover .icon-box {
  transform: scale(1.1);
}

.step-box h3 {
    font-size: 20px !important;
    font-weight:700;
  margin-bottom: 12px;
  color: #111;
}

.step-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}


.benefits-section {
  padding: 70px 0;
  background: #ffffff;
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #f6f7f9;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #ffffff;
  border-color: #ff5f6d;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.benefit-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-box {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 20px !important;
  font-weight:700;
  margin-bottom: 12px;
  color: #111;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }


}

.success-section {
  padding: 70px 0;
  background: linear-gradient(
    90deg,
    hsl(0,65%,95%),
    hsl(0,50%,97%),
    hsl(0,65%,95%)
  );
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.success-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.success-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.card-top span {
  font-size: 14px;
  font-weight: 600;
  color: #ff5f6d;
}

.success-card h3 {
  font-size: 20px !important;
  margin: 15px 0 10px;
  font-weight:700 !important;
}

.success-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.success-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  margin-bottom: 8px;
}

.success-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .success-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

.testimonials {
  padding: 80px 0;
  background: #f6f7f9;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  stroke: #ff5f6d;
  opacity: 0.15;
  fill: none;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #ffb703;
  stroke: #ffb703;
}

.review {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,95,109,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar svg {
  width: 22px;
  height: 22px;
  stroke: #ff5f6d;
  fill: none;
}

.author span {
  display: block;
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }


}

.features-section {
    padding: 60px 0;
    background: #ffffff;
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.feature-card {
    text-align: center;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Icon */
.icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d43535 0%, #ef6334 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Text */
.feature-card h3 {
    font-size: 16px !important;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }
}

