/* banner section styles */
.banner-section-bg {
  background:
    linear-gradient(rgba(11, 35, 90, 0.6), rgba(11, 35, 90, 0.6)),
    url('../images/bg-image.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;

}

.banner-section-bg h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 54px;
}

/* company overview styles */
.company-overview {
  padding: 50px 0px;
  background-color: #f8fafc;
}

.company-overview img {
  width: 90%;
  max-width: 590px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.company-overview img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.company-overview h2 {
  font-size: 44px;
  color: rgb(11, 35, 90);
  margin-bottom: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.company-overview .mission {
  color: #333;
  margin-bottom: 15px;
}

.company-overview p {
  font-size: 18px;
  line-height: 30px;
}

.company-overview .intro {
  color: #555;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* vision and mission styles */
.vision-mission {
  background: linear-gradient(55deg, rgb(11, 35, 90) 30%, #ffffff 30%);
  padding: 50px 0px;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #0d47a1;
  line-height: 54px;
}

.section-subtitle {
  margin: 10px auto 0;
  font-size: 23px;
}

.vision-mission .vision-card,
.mission-card {
  border-radius: 20px;
  transition: all 0.4s ease;
  background: #fff;
}

.vision-mission .vision-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vision-mission .icon i {
  transition: transform 0.3s ease;
  font-size: 60px;
}

.vision-mission h4 {
  font-size: 34px;
  line-height: 42px;
}

.vision-mission .vision-card,
.mission-card p {
  font-size: 18px;
  line-height: 26px;
}

.vision-mission .vision-card:hover .icon i,
.vision-mission .mission-card:hover .icon i {
  transform: scale(1.1);
}

/* values section styles */
.values-section {
  background: linear-gradient(135deg, #0d47a1, rgb(11, 35, 90));
  color: white;
  padding: 50px 0px;
}

.values-section .section-title {
  color: white;
}

.values-section .section-subtitle {
  margin-bottom: 50px;
}

.values-section .value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  backdrop-filter: blur(6px);
}

.values-section .value-card i {
  font-size: 50px;
  color: #ffeb3b;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.values-section .value-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 34px;
}

.values-section .value-card p {
  font-size: 18px;
  color: #e3f2fd;
  line-height: 26px;
}

.values-section .value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.values-section .value-card:hover i {
  transform: rotate(10deg) scale(1.2);
}

/* our team members section */
.team-section {
  padding: 50px 0px;
  background-color: #ebdbdb;
}

.team-section .team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  margin: 10px;
  margin-bottom: 40px;
}

.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-section .team-img i {
  font-size: 50px;
  margin: 30px 0px 10px;
  color: #0d47a1;
}

/* .team-section .team-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
} */

/* .team-section .team-card:hover .team-img img {
  transform: scale(1.05);
} */

.team-section .team-info {
  padding: 20px;
}

.team-section .team-info h5 {
  font-weight: 600;
  color: #0d47a1;
  font-size: 30px;
  line-height: 38px;
}

.team-section .team-info p {
  color: #272323;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-section .team-info i {
  font-size: 24px;
  margin: 20px 0px;
}

.team-section .social-links a {
  display: inline-block;
  color: rgb(11, 35, 90);
  margin: 0 5px;
  transition: color 0.3s;
}

.team-section .social-links a:hover {
  color: #0d47a1;
}

/* our infrastructure-section styling code */
.infrastructure-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.infrastructure-section .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.infrastructure-section .gallery-item:hover img {
  transform: scale(1.1);
}

.infrastructure-section .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 71, 161, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infrastructure-section .gallery-item:hover .overlay {
  opacity: 1;
}

.infrastructure-section .gallery-item .overlay i {
  color: #fff;
  font-size: 30px;
}

/* contact section code */
.cta-section {
  background: linear-gradient(135deg, rgb(59, 56, 56) 70%, rgb(11, 35, 90) 70%);
  color: white;
  padding: 50px 0px;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-subtitle {
  color: #f0f0f0;
}

.cta-section .btn-cta {
  background: #fff;
  color: #0d47a1;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 24px;
  line-height: 32px;
}

.cta-section .btn-cta:hover {
  background: rgb(11, 35, 90);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1399px) {
  .banner-section-bg h1 {
    font-size: 37px;
  }

  .banner-section-bg {
    height: 210px;
  }

  .company-overview h2 {
    font-size: 34px;
  }

  .company-overview p {
    font-size: 16px;
    line-height: 26px;
  }

  .section-title {
    font-size: 34px;
    line-height: 44px;
  }

  .section-subtitle {
    margin: 0px auto 0;
    font-size: 20px;
  }

  .vision-mission .icon i {
    font-size: 48px;
  }

  .vision-mission h4 {
    font-size: 28px;
    line-height: 34px;
  }

  .vision-mission .vision-card,
  .mission-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .values-section .value-card i {
    font-size: 32px;
  }

  .values-section .value-card h4 {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 28px;
  }

  .values-section .value-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .team-section .team-img i {
    font-size: 43px;
    margin: 30px 0px 0px;
  }

  .team-section .team-info h5 {
    font-size: 24px;
    line-height: 30px;
  }

  .team-section .team-info p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
  }

  .team-section .team-info i {
    font-size: 20px;
    margin: 16px 0px;
  }

  .cta-section .btn-cta {
    padding: 12px 25px;
    font-size: 24px;
    line-height: 32px;
  }

}

@media screen and (max-width: 1199px) {
  .banner-section-bg h1 {
    font-size: 34px;
  }

  .banner-section-bg {
    height: 200px;
  }

  .company-overview h2 {
    font-size: 29px;
  }

  .company-overview p {
    font-size: 16px;
    line-height: 26px;
  }

  .section-title {
    font-size: 30px;
    line-height: 38px;
  }

  .vision-mission .icon i {
    font-size: 40px;
  }

  .vision-mission .vision-card,
  .mission-card p {
    font-size: 18px;
    line-height: 28px;
  }

  .vision-mission h4 {
    font-size: 26px;
    line-height: 26px;
  }

  .values-section .value-card i {
    font-size: 38px;
  }

  .values-section .value-card h4 {
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 28px;
  }

  .values-section .value-card {
    padding: 20px 8px;
  }

  .values-section .value-card h4 {
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 28px;
  }

  .team-section .team-img i {
    font-size: 36px;
  }

  .team-section .team-info h5 {
    font-size: 22px;
    line-height: 27px;
  }

  .team-section .team-info p {
    font-size: 19px;
    line-height: 26px;
  }

  .team-section .team-info i {
    font-size: 18px;
    margin: 20px 0px;
  }

  .cta-section .btn-cta {
    padding: 6px 25px;
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section-bg h1 {
    font-size: 30px;
  }

  .banner-section-bg {
    height: 186px;
  }

  .company-overview h2 {
    font-size: 26px;
    margin-bottom: 8px !important;
  }

  .company-overview p {
    font-size: 16px;
    line-height: 26px;
  }

  .section-title {
    font-size: 26px;
    line-height: 32px;
  }

  .section-subtitle {
    font-size: 19px;
  }

  .vision-mission .icon i {
    font-size: 35px;
  }

  .vision-mission h4 {
    font-size: 24px;
    line-height: 24px;
  }

  .vision-mission .vision-card,
  .mission-card p {
    font-size: 16.5px;
    line-height: 27px;
  }
}

@media screen and (max-width: 767px) {
  .company-overview h2 {
    font-size: 30px;
    margin: 18px 0px !important;
  }

  .company-overview p {
    font-size: 20px;
    line-height: 32px;
  }

  .company-overview {
    padding: 35px 0px;
  }

  .section-title {
    font-size: 30px;
    line-height: 38px;
  }

  .section-subtitle {
    font-size: 22px;
    line-height: 36px;
  }

  .vision-mission .icon i {
    font-size: 50px;
  }

  .vision-mission h4 {
    font-size: 28px;
    line-height: 38px;
  }

  .vision-mission .vision-card,
  .mission-card p {
    font-size: 20.5px;
    line-height: 34px;
  }

  .vision-mission {
    padding: 35px 0px;
  }

}

@media screen and (max-width: 565px) {
  .banner-section-bg h1 {
    font-size: 22px;
    line-height: 34px;
  }

  .company-overview h2 {
    font-size: 28px;
    margin: 14px 0px !important;
  }

  .company-overview p {
    font-size: 18px;
    line-height: 28px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .section-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .vision-mission .icon i {
    font-size: 40px;
  }

  .vision-mission h4 {
    font-size: 25px;
    line-height: 32px;
  }

  .vision-mission .vision-card,
  .mission-card p {
    font-size: 19.5px;
    line-height: 30px;
  }

}