
.carousel-container{
    margin-top: 15px;
    /* height: 100%; */
}

.carousel{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 539px;
}

.carousel img{
    width: 100%;
    transition: transform 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-100%);
}

/* .carousel img.active:hover{
    transform: scale(1.1);
} */

.carousel img.slide-out{
    transform: translateX(-100%);
    opacity: 1;
}

.carousel img.active{
    transform: translateX(0%);
    opacity: 1;
    z-index: 3;
}

.carousel img.next{
    opacity: 0;
    z-index: 2;
    transform: translateX(100%);
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4; /* above images */
  color: white;
  text-align: center;
  max-width: 80%;
  padding: 20px;
  transition: all 0.3s ease;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.carousel-caption h2 span {
  color: #00bcd4;
}

.carousel-caption p {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
}


.container-title{
    font-size: 42px;
    font-weight: 600px;
    color: #349BA4;
    text-align: center;
}

.services-container{
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}

.services{
    display: flex;
    align-items: center;
    justify-content: center;
}

.service{
    /* display: inline-block; */
    width: 400px;
    height: 500px;
    border: 1px solid #349BA4;
}

.introduction-section {
    background-color:#F5FAFE;
    ; /* light blue tone */
    padding: 20px 150px 60px 150px;
    margin-top: 0px;
  }
  
  .introduction-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0px;
  }
  
  .introduction-content {
    flex: 1 1 55%;
  }
  
  .introduction-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #349ba4;
    font-family: 'Montserrat';
  }
  .introduction-content h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: black;
    font-family: 'Montserrat';
    line-height: 28px;
  }
  .highlight{
    color: #349BA4;
    font-weight: bold;
  }
  .highlight-red{
    color: #A12E2B;
    font-weight: bold;
  }
  
  .introduction-content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 28px;
    color: black;
    font-family: 'Montserrat';
  }
  
  .read-more-btn {
    margin-top: 20px;
    background-color:#349BA4;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat';
  }
  
  .read-more-btn:hover {
    background-color: #0056b3;
  }
  
  .introduction-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .introduction-image img {
    max-width: 125%;
    border-radius: 5px;
  }

  /* stats section */
  .stats-section {
    padding: 10px 20px;
    background-color: #f8fcff;
  }
  
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stat-item {
    flex: 1 1 18%;
    text-align: center;
    min-width: 150px;
  }
  
  .stat-item img {
    width: 50px;
    margin-bottom: 10px;
  }
  
  .stat-item h2 {
    font-size: 32px;
    font-weight: bold;
    color: #099aa2;
    margin: 0;
  }
  
  .stat-item p {
    font-size: 14px;
    color: #333;
    margin-top: 6px;
  }

  /* service section */

  .services-section {
    background-color: #000;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .services-section .highlight {
    color: #099aa2;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .service-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    width: 260px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    color: #0bc0c7;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
  }
  
  .read-more {
    display: inline-block;
    background-color: #099aa2;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .read-more:hover {
    background-color: #066e74;
  }

  /* imprints section */
  .imprints-section {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .imprints-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
  }
  
  .imprints-section .highlight {
    color: #099aa2;
  }
  
  .map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* our clients */
  /* .clients-section {
    padding: 40px 0;
    background-color: #f8fcff;
  }
  
  .clients-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .clients-section h2 .highlight {
    color: #007B8F;
  }
  
  .clients-section ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .clients-section .swiper {
    overflow: hidden;
  }
  
  .clients-section .swiper-slide {
    width: auto;
    padding: 0 8px;
    height: 0%;
  }
  
  .clients-section .swiper-slide img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .clients-section .swiper-slide img:hover {
    transform: scale(1.05);
  } */
.clients-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}
.clients-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    /* margin: 0; */
}
.clients-section h2 .highlight {
    color: #007B8F;
}
.client-swiper {
    overflow: hidden;
}
.client-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}
.client-swiper .swiper-slide {
    width: auto;
    padding: 0 15px;
}
.client-swiper .swiper-slide img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.client-swiper .swiper-slide img:hover {
    transform: scale(1.05);
}
.clients-section .swiper-slide {
    width: auto !important;
    /* height: 10% !important; */
}
.swiper-wrapper{
  height: 25% !important;
}



  /* latest news */
  
  .news-section {
    padding: 20px 20px;
    background-color: #fff;
  }
  
  .news-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .news-section .highlight {
    color: #007B8F;
  }
  
  .news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .news-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 280px;
    flex: 1 1 240px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #00bcd4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .news-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .news-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .news-card a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .news-card a:hover {
    text-decoration: underline;
  }
  