/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
}

/* CONTAINER */
.about-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

/* HEADINGS */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  margin-top: 40px;
  position: relative;
  display: inline-block;
}

/* RED UNDERLINE */
h2::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #e60023;
  display: block;
  margin-top: 5px;
  transition: width 0.3s ease;
}

/* HOVER EFFECT ON HEADING */
h2:hover::after {
  width: 60px;
}

/* HIGHLIGHT BOX */
.highlight {
  background: #fff1f2;
  border-left: 4px solid #e60023;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  transition: 0.3s ease;
}

.highlight:hover {
  transform: translateY(-3px);
}

/* TEXT */
.intro {
  margin: 20px 0;
  line-height: 1.7;
}

p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* WHY CHOOSE US (CENTERED CLEAN STYLE) */
.why-list {
  margin: 30px auto;
  max-width: 600px;
  padding-left: 20px;
}

/* LIST ITEMS */
.why-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* RED BULLET */
.why-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #e60023;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* HOVER EFFECT */
.why-list li:hover {
  color: #e60023;
  transform: translateX(5px);
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* FADE ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.why-list {
  list-style: none;   /* 🔥 removes default bullet */
  margin: 30px auto;
  max-width: 600px;
  padding-left: 0;    /* remove extra space */
}