.col-lg-4 {
    width: 25% !important;
}
.feature-area {
    padding-top: 130px;
}
.timeline-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.timeline-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}
.timeline {
  max-width: 700px;
  margin: auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #ddd;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 50px;
}
.timeline-item:nth-child(even) {
  justify-content: flex-end;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: #2b7cff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
}
.timeline-content {
  width: 45%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.timeline-content p {
  line-height: 1.6;
  color: #555;
}


@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-content {
    width: 100%;
    margin-left: 40px;
  }
}





.mvgoals-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.mvgoals-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.mvgoals-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.mvgoals-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mvgoals-box:hover {
  transform: translateY(-5px);
}

.mvgoals-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2b7cff;
}

.mvgoals-box p {
  line-height: 1.7;
  color: #555;
}

.mvgoals-box ul {
  padding-left: 20px;
}

.mvgoals-box ul li {
  margin-bottom: 10px;
  color: #555;

}

@media (max-width: 900px) {
  .mvgoals-boxes {
    grid-template-columns: 1fr;
  }
}




.values-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.values-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.value-box {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-box:hover {
  transform: translateY(-6px);
}

.value-box i {
  font-size: 40px;
  color: #2b7cff;
  margin-bottom: 20px;
}

.value-box h3 {
  font-size: 20px;
  color: #333;
}


@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}






.services-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.services-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.services-list {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background-color: #f9f9f9;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card i {
  font-size: 26px;
  color: #2b7cff;
  min-width: 30px;
}

.service-card span {
  font-size: 18px;
  color: #333;
}


.service-card.show {
  opacity: 1;
  transform: translateY(0);
}


.service-card:hover {
  transform: translateY(-4px);
}


@media (max-width: 600px) {
  .service-card {
    padding: 20px;
  }

  .service-card span {
    font-size: 16px;
  }
}

.icon-element i {
  color: #2b7cff;
}







.cta-section {
    background-color: #2b7cff;

  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #fff;
  color: #2b7cff;
}

.primary-btn:hover {
  background-color: #dce9ff;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background-color: rgba(255,255,255,0.2);
}







.img-bg-2 {
    background-image: url('/frontAssets/images/about_us/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumb-area {
  height: 450px;
}


.breadcrumb-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.breadcrumb-area .section-heading {
    margin-bottom: 20px;
}
.breadcrumb-area h2.section__title {
    font-size: 48px;
    margin-bottom: 15px;
}
.breadcrumb-area p {
    font-size: 18px;
    margin-bottom: 30px;
}
.breadcrumb-area .btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}
.breadcrumb-area .btn:hover {
    background-color: #0056b3;
}
