
.vision-section,
.founder-section,
.card-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* cards style */

.description-cards p {
  font-size: 17px;
}

.card-section {
  margin: 60px auto;
  justify-content: center;
}

.description-cards {
  border: none;
  border-radius: 18px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.description-cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.description-cards i {
  font-size: 42px;
  color: #49646e;
  margin-bottom: 16px;
  display: inline-block;
  padding: 18px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.description-cards:hover i {
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: #49646e;
}

.card-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

.card-group {
  gap: 15px;
  justify-content: center;
}

.card-group .card {
  flex: 1 1 250px;
}

@media (max-width: 768px) {
  .card-section {
    margin: 30px 10px;
  }

  .description-cards {
    margin: 10px 0;
  }
}

/* vision section style */
.vision-section {
  align-items: center;
  margin: 70px 0;
  padding: 25px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.vision-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.vision-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  padding: 10px 25px;
  margin: 0;
  position: relative;
}

/* Decorative left border */
.vision-section p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 80%;
  width: 5px;
  background: #49646e;
  border-radius: 10px;
}

.vision-section img {
  max-height: 160px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

.vision-section:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .vision-section {
    text-align: center;
    padding: 25px 15px;
  }

  .vision-section p::before {
    display: none;
  }

  .vision-section img {
    margin-bottom: 15px;
  }
}

/* founder section style */
.founder-section {
  align-items: center;
  margin: 80px 10px;
  padding: 40px 30px;
  font-family: "Poppins", sans-serif;
}

.founder-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #49646e;
  position: relative;
}

.founder-section h1::after {
  content: "";
  width: 200px;
  height: 4px;
  background: #49646e;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
.founder-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.founder-section img {
  margin-left: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.founder-section img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .founder-section {
    text-align: center;
    padding: 30px 15px;
  }

  .founder-section p {
    text-align: center;
  }

  .founder-section img {
    margin-top: 20px;
    height: auto;
    width: 100%;
  }
}

.banner-wrapper {
  position: relative;
}

.banner-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.banner-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #49646e;
  font-size: 36px;
  font-weight: 700;
}

/* paragraph section */

.paragraph-section {
  padding: 90px 6%;
  background: linear-gradient(to right, #f7f9fc, #ffffff);
  font-family: "Poppins", sans-serif;
}

.paragraph-section .row {
  align-items: center;
  justify-content: space-between;
}

.paragraph-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;

}

.paragraph-section p:first-child {
  font-size: 17px;
  font-weight: 500;
  color: #222;
}

.paragraph-section button {
  margin-top: 25px;
  padding: 13px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #007bff, #49646e);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.paragraph-section button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 123, 255, 0.35);
}

.paragraph-section button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.paragraph-section button:hover i {
  transform: translateX(6px);
}

.paragraph-section img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.paragraph-section img:hover {
  transform: scale(1.04);
}

.paragraph-section .col-md-6 {
  padding-right: 40px;
}

.about-text {
  margin-left: 40px;
}

@media (max-width: 992px) {
  .paragraph-section {
    padding: 60px 20px;
  }

  .paragraph-section .col-md-6 {
    padding-right: 15px;
  }

  .paragraph-section img {
    margin-top: 35px;
  }

  .about-text {
    margin-left: 0;
  }
}

.container-fluid {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
