.home-5-bg {
  background: #1a99b8;
  position: relative;
  background-size: cover;
  height: 80vh;
  min-height: 500px;
  background-position: center center;
  padding-top: 120px;
}

.home-5-title {
  text-shadow: 2px 2px #c6c7c8;
  font-size: 2.5rem;
}

.home-5-content {
  z-index: 1;
  position: relative;
  text-align: justify;
}

.home-center {
  display: table;
  width: 100%;
  height: 100%;
}

.home-desc-center {
  display: table-cell;
  vertical-align: middle;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.8);
}

.f-15 {
  font-size: 18px;
  text-shadow: 2px 1px #c6c7c8;
  text-align: justify;
}

/* Responsive hero section */
@media (max-width: 991px) {
  .home-5-bg {
    height: 70vh;
    min-height: 400px;
    padding-top: 100px;
  }

  .home-5-title {
    font-size: 2rem;
  }

  .f-15 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-5-bg {
    height: 60vh;
    min-height: 350px;
    padding-top: 90px;
  }

  .home-5-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .f-15 {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-5-content {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .home-5-bg {
    height: 55vh;
    min-height: 300px;
    padding-top: 80px;
  }

  .home-5-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .f-15 {
    font-size: 13px;
    line-height: 1.5;
  }
}

.home-5-bg #particles-js {
  z-index: 1 !important;
  position: absolute;
  width: 100%;
  height: 100%;
}


/* ============ STATIC GRID (No Slider) ============ */
#service-section .services-grid-container {
  width: 100%;
  padding: 20px 0;
}

#service-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============ CARD STYLING ============ */
#service-section .service-card {
  background: #f5fbff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(26, 153, 184, 0.12);
  box-shadow: 0 18px 36px rgba(15, 45, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#service-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(15, 45, 74, 0.12);
}

#service-section .service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(26, 153, 184, 0.12);
  color: #1a99b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#service-section .service-card__icon svg {
  width: 28px;
  height: 28px;
}

#service-section .service-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

#service-section .service-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #425466;
}

@media (min-width: 768px) and (max-width: 991px) {
  #service-section .service-card {
    padding: 28px 24px;
  }

  #service-section .service-card__title {
    font-size: 1.15rem;
  }

  #service-section .service-card__text {
    font-size: 0.9rem;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  #service-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  #service-section .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }

  #service-section .service-card {
    padding: 24px 20px;
  }

  #service-section .service-card__icon {
    width: 52px;
    height: 52px;
  }

  #service-section .service-card__title {
    font-size: 1.05rem;
  }

  #service-section .service-card__text {
    font-size: 0.9rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  #service-section {
    padding: 15px 0;
  }

  #service-section .services-grid {
    gap: 12px;
    padding: 0 8px;
  }

  #service-section .service-card {
    padding: 22px 18px;
  }

  #service-section .service-card__icon {
    width: 48px;
    height: 48px;
  }

  #service-section .service-card__title {
    font-size: 0.95rem;
  }

  #service-section .service-card__text {
    font-size: 0.85rem;
  }
}



#team-section {

  .card-client {
    /* width: 13rem; */
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%;
    /* border: 4px solid #e5f7f5; */
    box-shadow: 5px 8px 10px rgba(207, 212, 222, 1);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
  }

  /* .card-client:hover {
    transform: translateY(-10px);
  } */

  .user-picture {
    overflow: hidden;
    object-fit: cover;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }



  .name-client {
    margin: 0;
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
    max-width: 900px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
  }

  .name-client span {

    display: block;
    font-weight: 200;
    font-size: 16px;
  }
}


/* === HEADING STYLE === */
.heading h1 {
  text-transform: capitalize;
}

.heading h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  content: "";
  background-color: #c50000;
}

.heading h1 span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  color: rgba(0, 0, 0, 0.4);
  padding-bottom: 10px;
}

.heading-alt h1 {
  text-align: center;
}

.heading-alt h1:before {
  left: 50%;
  margin-left: -30px;
}



/* === BASE HEADING === */

h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}

h1 em {
  font-style: normal;
  font-weight: 600;
}


#about-us {
  .imgWrapper img {

    object-fit: cover;
    user-select: none;
    transition: 0.3s ease;
    border-radius: 20px
  }

  .imgWrapper:hover img {
    transform: scale(1.1);
  }

  .contentRight .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contentRight .content h4 {
    font-size: 22px;
    font-weight: 400;
    color: #d35400;
  }

  .contentRight .content h2 {
    font-size: 40px;
    color: #1e272e;
  }

  .contentRight .content p {
    font-size: 16px;
    color: #343434;
    line-height: 28px;
    padding-bottom: 10px;
    text-align: justify;

  }

  .contentRight .content a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 13px 30px;
    color: #fff;
    background: #d35400;
    border-radius: 8px;
    user-select: none;
  }

}

#contact-us {

  .contact-info-content h4 {
    color: black;
    font-size: 1.4em;
    margin-bottom: 5px;
  }

  .contact-info-content p {
    color: #000000;
    font-size: 1em;
  }

  .contact-form {
    
    padding-bottom: 20px;
    padding-top: 20px;
  }



  .contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }

  .contact-form .input-box input,
  .contact-form .input-box textarea {
    width: 100%;
    padding: 25px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
  }

  .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
  }

  .contact-form .input-box input:focus~span,
  .contact-form .input-box textarea:focus~span {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
  }

  .contact-form .input-box input[type="submit"] {
    width: 100%;
    background: #1a99b8;
    color: #FFF;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #00bcd4;
    transition: 0.5s;
  }

  .contact-form .input-box input[type="submit"]:hover {
    background: #FFF;
    color: #1a99b8;
  }


}

/* 
@media (min-width: 576px) {
  .swiper-slide {
      width: 90%; 
  }


}

@media (min-width: 768px) {
  .swiper-slide {
      width: 50%; 
  }
}

@media (min-width: 992px) {
  .swiper-slide {
      width: 25%; 
  }
}

@media (min-width: 1200px) {
  .swiper-slide {
      width: 25%; 
  }
} */

@media only screen and (max-width: 576px) {
  .company-name {
    font-size: 12px;
  }
}
