/* ===== General Styles ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.ready-container{
  width: 100%;
  max-width: 1500px;
  height: 140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #17e7b9, #2166bf);
  text-align: center;
  border-radius: 20px;
  color: #fff;
}


h2, h3, h4 {
 padding-top: 10px;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
  font-size: medium;
  font-weight:500;
  
}

a {
  text-decoration: none;
}


/* ===== Features Section ===== */
.features {
  padding: 4rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* ===== About Us Section ===== */
.about-us {
  background-color: #ffffff;
  padding: 4rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-us img {
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
  
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  background-color: #f1f6fb;
  padding: 4rem 0;
  text-align: center;
}

.why-choose-us img.full-width-img {
  width: 100%;
  max-height: 400px;   /* smaller height */
  object-fit: contain; /* keeps full image visible */
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .why-choose-us img.full-width-img {
    max-width: 500px;   /* reduced size on PC */
    height: auto;
    margin: 2rem auto 0;
    display: block;
  }
}






/* ===== Testimonials Section ===== */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 300px; /* Fixed card size */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-us img {
    margin-top: 2rem;
  }
}


/* General bullet style (applies everywhere) */

.why-choose-us .bullets {
  text-align: left;     /* keep bullets aligned with text */
  margin: 1rem auto;
  display: inline-block; /* keeps list centered inside section */
}

.bullets {
  list-style-type: disc;
  list-style-position: outside; /* standard bullets */
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.5rem;         /* consistent indent */
  font-size: 1rem;
  line-height: 1.6;
}

.bullets li {
  margin: 0.3rem 0;
  font-size: 1rem;
  text-indent: 0;               /* reset any accidental extra indent */
  padding-left: 0;              /* no extra space inside */
  display: list-item;           /* force normal list-item rendering */
  text-align: left;
}


