* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

/* Text change */
ul li{
  font-weight: 700;           
    font-size: 22px;            
    line-height: 1.6;           
    color: #000000;             
    font-family: Arial, sans-serif; 
}

p{
  font-size: 22px;
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0d47ff, #007bff);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffcc00;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
  /* display: inline-block;
  background: #ff9800;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 330px; */
  display: block;
  background: #ff9800;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  width: fit-content;
  margin: 0 auto;
}

.btn-primary:hover {
  background: #e68900;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}

/* .section img {
  /* height: 70vh;
  margin-left: 220px;} */
 
.section img {
  height: 500px;       
  max-height: 70vh;     
  margin-left: auto;   
  margin-right: auto;
  display: block;
}


.section p {
  text-align: center;
  margin-bottom: 20px;
}

.light {
  background: #e7eef8;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  max-width: 700px;
  margin: auto;
}

.checklist li {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #007bff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* PRICE */
.price {
  background: #0d47ff;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.8;
}

.new-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffcc00;
}

.note {
  margin-top: 10px;
}

.payment-box {
  background: #f8eeee;
  padding: 25px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.whatsapp-box {
  margin-top: 40px;
  text-align: center;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

/* TESTIMONIALS */
.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.testimonial {
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial h4 {
  margin-bottom: 5px;
  color: #007bff;
}

.testimonial span {
  font-size: 0.9rem;
  color: #555;
}

/* Smooth scrolling on mobile */
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}


/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
