.fixed-bg-image1 {
  height: 500px;
  background-image: url("../images/banner/banner1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.fixed-bg-image2 {
  height: 500px;
  background-image: url("../images/banner/banner2.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* Years of experience component */
.experience-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 28px 40px;
}

.experience-box .experience-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  color: var(--theme_color);
}

.experience-box .experience-text {
  font-family: "Open Sans", sans-serif;
  color: #7a7a7a;
  font-size: 18px;
  line-height: 1.4;
}

/* Orange corner brackets */
.experience-box .bracket {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: var(--theme_color);
}

.experience-box .bracket.tl {
  top: 0;
  left: 0;
  border-left: 6px solid var(--theme_color);
  border-top: 6px solid var(--theme_color);
}

.experience-box .bracket.bl {
  bottom: 0;
  left: 0;
  border-left: 6px solid var(--theme_color);
  border-bottom: 6px solid var(--theme_color);
}

.experience-box .bracket.tr {
  top: 0;
  right: 0;
  border-right: 6px solid var(--theme_color);
  border-top: 6px solid var(--theme_color);
}

.experience-box .bracket.br {
  bottom: 0;
  right: 0;
  border-right: 6px solid var(--theme_color);
  border-bottom: 6px solid var(--theme_color);
}

/* About company orange underline link */
.about-link {
  position: relative;
  display: inline-block;
  color: #7a7a7a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 160px;
  height: 3px;
  background: var(--theme_color);
}

.about-link:hover {
  color: #333;
}

@media (max-width: 575px) {
  .fixed-bg-image1 {
    height: 250px;
    background-image: url("../images/banner/banner1-1.jpg");
    background-size: 180%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
  }
  .fixed-bg-image2 {
    height: 250px;
    background-image: url("../images/banner/banner2-.jpg");
    background-size: 180%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
  }
}

/* Category List */
.category-img-section-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.category-img-container {
  min-height: 380px;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.category-title-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.category-title-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.category-title-container:hover::before {
  opacity: 1;
}

.arrow-icon {
  position: absolute;
  left: 25px;
  bottom: 12%;
  font-size: 15px;
  background-color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme_color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}

.category-title-container:hover .arrow-icon {
  width: 0px;
  height: 0px;
  transform: translateY(20px);
  opacity: 0;
  /* transition: all 0.5s ease-in-out; */
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 2s ease-out;

  /* z-index: -1; */
}

.category-img-container:hover .category-img {
  transform: scale(1.25);
}

.category-title {
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  transition: transform 0.5s ease-in-out;
}

.category-title i {
  font-size: 12px;
}

.category-title-container:hover .category-title {
  transform: translateY(-30px);
  color: #fff;
  transition: transform 0.5s ease-in-out;
  opacity: 1;
}

@media (max-width: 992px) {
  .category-img-container {
    min-height: 320px;
  }

  .arrow-icon {
    left: 20px;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .category-img-container {
    min-height: 260px;
  }

  .arrow-icon {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .category-title {
    font-size: 16px;
    opacity: 1;
    transform: none;
    bottom: 24px;
  }

  .category-title-container::before {
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .category-img-section-container {
    gap: 15px;
  }

  .category-img-container {
    min-height: 220px;
    border-radius: 16px;
  }

  .category-title-container::before {
    border-radius: 16px;
  }

  .arrow-icon {
    left: 18px;
    bottom: 12%;
    width: 40px;
    height: 40px;
    font-size: 13px;
    display: none;
  }

  .category-title {
    font-size: 15px;
    bottom: 18px;
  }
}

.copyright-i-nfo p {
  margin: 0;
  text-align: center;
  color: white;
}

.certifications {
  background: #f8f9fb;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cert-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-circle img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.cert-label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}

@media (max-width: 575px) {
  .cert-circle {
    width: 90px;
    height: 90px;
  }

  .cert-label {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px !important;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gray-filer {
  filter: grayscale(100%);
}

/* Testimonials slider */
.products-pagination-wrapper {
  display: flex;
  justify-content: flex-end;
}

.products-pagination-wrapper .pagination {
  margin-bottom: 0;
}

.products-pagination-wrapper .page-item {
  display: inline-flex;
}

.products-pagination-wrapper .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-contact {
  background: #fff;
}

.team-contact__subtitle {
  color: #7a7a7a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.team-contact__title {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
}

.team-contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.team-contact-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme_color);
  margin-bottom: 0;
}

.team-contact-card__role {
  margin-bottom: 0;
  color: #6c757d;
  font-weight: 500;
}

.team-contact-card__phone,
.team-contact-card__email {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-contact-card__phone:hover,
.team-contact-card__email:hover {
  color: var(--theme_color);
}

@media (max-width: 767px) {
  .team-contact__title {
    font-size: 28px;
  }

  .team-contact-card {
    padding: 28px 20px;
  }
}

.testimonials .section-sub-title {
  color: #343a40;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider:not(.slick-initialized) {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.testimonial-slider:not(.slick-initialized) .testimonial-card {
  min-width: 320px;
  scroll-snap-align: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 250px !important;
  justify-content: space-between;
  transition: transform 0.3s ease;
  align-items: flex-start;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 15px;
  display: inline-flex;
  gap: 4px;
}

.testimonial-card > .testimonial-rating {
  margin-top: 6px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #4b4b4b;
  margin-bottom: 0;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-role {
  color: #6c757d;
  font-size: 14px;
}

.slick-slider .testimonial-card {
  margin: 0 12px;
}

.testimonial-slider .slick-dots {
  margin-top: 24px;
  position: static;
}

.testimonial-slider .slick-dots li button:before {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.35);
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: var(--theme_color);
  opacity: 1;
}

.testimonial-slider .slick-list {
  margin: 0 -12px;
}

.testimonial-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

@media (max-width: 1199px) {
  .testimonial-card {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    min-width: 280px;
  }

  .testimonial-quote {
    font-size: 16px;
  }
}
