.about-section {
  background: linear-gradient(to right, #ffffff, #eaf3fa);
  padding: 100px 0;
  color: #002147; }

.about-container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text h2 {
  font-size: 2.4rem;
  color: #002147;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2 span {
  color: #f36b21; }

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-section p {
  text-align: justify;            text-justify: inter-word;       line-height: 1.8;               letter-spacing: 0.2px;          word-spacing: 1px;
  margin-bottom: 20px;
  color: #333;
}


.vision-mission-section {
  text-align: center;
  background: linear-gradient(to right, #ffffff, #eaf3fa);
  padding: 100px 0;
  color: #002147;
}

.vision-mission-section h2 {
  font-size: 2.4rem;
  color: #002147;
  margin-bottom: 50px;
  position: relative;
}

.vision-mission-section h2 span {
  color: #f36b21; }

.vision-mission-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8fbff, #e9f3ff); }

.vision-box,
.mission-box,
.values-box {
  flex: 1;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.vision-box:hover,
.mission-box:hover,
.values-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vmv-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
}

.vision-box h3,
.mission-box h3,
.values-box h3 {
  color: #0b2447;
  margin-bottom: 15px;
}

.vision-box ul li,
.mission-box ul li,
.values-box ul li {
  list-style: none;
  margin: 10px 0;
  color: #444;
  line-height: 1.7;
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.vision-box ul li::before,
.mission-box ul li::before,
.values-box ul li::before {
  content: "»";
  color: #ff6a00;
  animation: blinkArrow 1.5s infinite;
}

@keyframes blinkArrow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 992px) {
  .vision-mission-container {
    flex-direction: column;
    align-items: center;
  }
  .vision-box,
  .mission-box,
  .values-box {
    max-width: 90%;
  }
}


@keyframes blinkArrow {
  0%, 100% {
    opacity: 1;
    transform: translateY(2px);
  }
  50% {
    opacity: 0.3;
    transform: translateY(2px);
  }
}

.vmv-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



.google-reviews-section {
  background: linear-gradient(to right, #001a33, #002147);   padding: 100px 0;
  text-align: center;
  color: #fff;
}

.google-reviews-section .container {
  width: 85%;
  margin: 0 auto;
}

.google-reviews-section h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.google-reviews-section .review-subtitle {
  font-size: 1.1rem;
  color: #d1e4ff;
  margin-bottom: 40px;
}

.google-reviews-section .review-subtitle span {
  color: #f36b21;
  font-weight: 600;
}

.reviews-widget {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 16px;
  padding: 20px 0;
}

.reviews-widget .elfsight-app {
  background: transparent !important;
  box-shadow: none !important;
}

.reviews-widget iframe {
  border: none !important;
  width: 100% !important;
}

.elfsight-app .eapps-google-reviews-widget {
  padding: 20px 0 !important;
}

.elfsight-app .eapps-widget-toolbar {
  bottom: -10px !important;
}

@media (max-width: 768px) {
  .google-reviews-section h2 {
    font-size: 2rem;
  }
  .reviews-widget {
    width: 95%;
  }
}
.about-container {
  flex-direction: column;   align-items: center;   justify-content: center;
  text-align: center;
}

.about-text {
  text-align: justify;
  max-width: 900px;
}

.about-image {
  order: -1;   display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.about-image img {
  width: 60%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-image img {
    width: 85%;
  }
}
