/*====================================
    PAGE BANNER
====================================*/
.page-banner {
 
  padding: 140px 0 100px;
  color: #fff;
  text-align: center;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 20px;
  color: #f3f3f3;
  margin: 0;
}

/*====================================
    ABOUT SECTION
====================================*/
.about-company {
  padding: 90px 0;
  background: #fff;
}

.about-company:nth-child(even) {
  background: #f8f9fb;
}

.about-image {
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  transition: 0.5s;
  border-radius: 20px;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-card {
  padding: 20px 30px;
}

.small-title {
  display: inline-block;
  color: #0077cc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.small-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0077cc;
  margin-top: 8px;
}

.about-card h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 25px;
}

.about-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
}

/*====================================
    VISION SECTION
====================================*/
.vision-section {
  background: #f5f8fc;
  padding: 90px 0;
}

.info-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.info-card i {
  width: 85px;
  height: 85px;
  line-height: 85px;
  background: #0077cc;
  color: #fff;
  border-radius: 50%;
  font-size: 34px;
  margin-bottom: 25px;
}

.info-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.info-card p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/*====================================
    FACILITY SECTION
====================================*/
.facility-section {
  padding: 90px 0;
  background: #fff;
}

.facility-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.facility-section p {
  color: #666;
  font-size: 17px;
}

/* .facility-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.facility-image img {
  width: 100%;
  transition: 0.5s;
}

.facility-image:hover img {
  transform: scale(1.05);
} */

.facility-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  cursor: default;
}

.facility-image img {
  width: 100%;
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}

.facility-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transition: left 0.9s ease;
  z-index: 2;
}

.facility-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.facility-image:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.facility-image:hover::before {
  left: 140%;
}


.facility-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.facility-video iframe {
  width: 100%;
  height: 400px;
}

/*====================================
    SPACING
====================================*/
.py-5 {
  padding-top: 90px;
  padding-bottom: 90px;
}

/*====================================
    RESPONSIVE
====================================*/
@media (max-width: 991px) {
  .page-banner {
    padding: 100px 0 80px;
  }

  .page-banner h1 {
    font-size: 40px;
  }

  .about-card {
    padding: 40px 0 0;
  }

  .about-card h2 {
    font-size: 32px;
  }

  .facility-image {
    margin-bottom: 30px;
  }

  .info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .page-banner {
    padding: 80px 0 60px;
  }

  .page-banner h1 {
    font-size: 30px;
  }

  .page-banner p {
    font-size: 16px;
  }

  .about-company {
    padding: 60px 0;
  }

  .about-card h2 {
    font-size: 28px;
  }

  .about-card p {
    font-size: 15px;
  }

  .facility-section h2 {
    font-size: 30px;
  }

  .facility-video iframe {
    height: 250px;
  }

  .info-card {
    padding: 35px 25px;
  }

  .info-card h3 {
    font-size: 24px;
  }
}
