/* HERO SECTION */
.about-hero {
  background: linear-gradient(to right, #f4f9ff, #eaf3ff);
  padding: 80px 0;
}

.about-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-content {
  width: 55%;
}

.about-content h1 {
  font-size: 42px;
  color: #1e2a3a;
  margin-bottom: 15px;
}

.about-content h1 span {
  color: #1e88e5;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-points {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.point i {
  color: #1e88e5;
  font-size: 18px;
}

.about-image {
  width: 40%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 380px;
}

/* WHY US */
.why-us {
  padding: 70px 0;
  background: #fff;
}

.why-us h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.why-us h2 span {
  color: #1e88e5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-box {
  background: #f8fbff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-box i {
  font-size: 34px;
  color: #1e88e5;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-box p {
  color: #555;
  font-size: 15
}


/* COMMON */
/* */
.about-h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.about-h2 span {
  color: #1e88e5;
}

section {
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* WHO WE ARE */
.who-we-are {
  background: linear-gradient(to right, #f4f9ff, #eaf3ff);
  margin-top: 110px;
}

.who-we-are .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.who-content {
  flex: 1;
}

.who-content p {
  color: #555;
  line-height: 1.8;
}

.ceo-msg {
  font-style: italic;
  margin: 15px 0;
}

.who-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

/* VISION MISSION */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vm-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vm-box img {
  width: 70px;
  margin-bottom: 15px;
}

/* CONSULTANT HELP */
.consultant-help {
  background: #f8fbff;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.help-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.help-box:hover {
  transform: translateY(-6px);
}

.help-box i {
  font-size: 32px;
  color: #1e88e5;
  margin-bottom: 10px;
}