/* Custom Styles */
	html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #eee;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }
	
	.navbar{
	z-index:10;
	}
	.dropdown { 
		position: static !important; 
	} 
	.dropdown-menu { 
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important; 
		margin-top: 0px !important; 
		width: 100% !important;
	} 
	
	.dropdown-item:hover {
		background:none;
		border-bottom: 2px solid blue;
	}
	.nav-text{
		font-size:.80rem;
	}
	.hero-section {
      background-size: cover;
      background-position: center;
      color: white; /* Text color */
      padding: 100px 0; /* Adjust padding as needed */
    }
	
	.hero-text{
	  position: absolute;
      top: 150px;
      left: 0;
      width: 100%;
      height: 100%;
      justify-content: left;
      align-items: left;
      animation-name: slide-up;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      z-index:9;
    }
	@keyframes slide-up {
		  from {
			transform: translateY(100%);
			opacity: 0;
		  }
		  to {
			transform: translateY(0%);
			opacity: 1;
		  }
		}
	
	.home-section-services{
		background-color:#13181B;
		
	}
	.swiper {
      width: 100%;
      height: 100%;
	  
    }

    .swiper-slide {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 24px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; 
	}

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


	
/*--------------------------------------------------------------
# Casestudy Overlay Cards
--------------------------------------------------------------*/
	.hover-overlay-card {
		position: relative;
		overflow: hidden;
	}

	.hover-overlay-card .card-img {
		transition: transform 0.3s ease;
	}

	.hover-overlay-card .card-img-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5); /* Change the overlay color as needed */
	}

	.hover-overlay-card .card-img-overlay h6 {
		opacity: 1;
		transition: opacity 0.3s ease;
	}

	.card-content-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-left:15px;
		padding-top:15px;
		
		background-color: rgba(0, 0, 0, 0.8); /* Dark background color for content */
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.card-content-overlay h6 {
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.hover-overlay-card:hover .card-img-overlay h6 {
		opacity: 0;
	}

	.hover-overlay-card:hover .card-content-overlay {
		opacity: 1;
	}

	.hover-overlay-card:hover .card-content-overlay h6 {
		opacity: 1;
	}

	
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}


/*--------------------------------------------------------------
# Styles for the filter buttons
--------------------------------------------------------------*/

.filter-btn {
margin-right: 10px;
margin-bottom: 10px;
background-color: #234376;
color:white;
&:hover {
background-color: #6a9bc3;
}

&:active,
&:focus {
background-color: #386890;
color:black;

}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}