/* Apply a global box-sizing to prevent sizing issues */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent page scroll overflow */
html, body {
  overflow-x: hidden;
}

h1{font-family: 'Unbounded', sans-serif;font-size:5rem;font-weight:400;letter-spacing:1px;}
h2{font-family: 'Unbounded', sans-serif;font-size:3rem;font-weight:400;letter-spacing:1px; line-height:4rem;}

img{max-width:100%;}
.container-fluid,.row{padding-left:0px;padding-right:0px;}
.social-media-icons a i{}
.instagram-link{margin-right:20px;}
.social-media-icons a i.fa-instagram{font-size:1.5rem !important; margin-right:20px;}
.social-media-icons a i.fa-linkedin{font-size:1.5rem !important;margin-top:5px;}
.social-media-icons a i.fa-instagram:hover{color:#0066a9 !important;font-size:2em !important; transition: font-size 0.1s ease;}
.social-media-icons a i.fa-linkedin:hover{color:#0066a9 !important;font-size:2em !important; transition: font-size 0.1s ease;}
.top-slider-text{font-family: 'Unbounded', sans-serif; font-size: 4rem; line-height: 1.2;}

/* Base animation class - starts hidden to the right */
.slideRight {
  opacity: 0;
  transform: translateX(50px); /* Adjust distance as needed */
  transition: 
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.6s ease-out;
  will-change: transform, opacity;
}

/* Active state - slides into normal position */
.slideRight.active {
  opacity: 1;
  transform: translateX(0);
}

/* Optional variations */
.slideRight-fast { transition-duration: 0.4s; }
.slideRight-slow { transition-duration: 1s; }
.slideRight-delay-1 { transition-delay: 0.2s; }
.slideRight-delay-2 { transition-delay: 0.4s; }

#header .header-container{
	min-height: 105px !important;
}

/*p{padding-bottom:15px;}
.about-us-homepage{padding-top:70px;}*/

.overlay:before {
    background: #3459a4;
}

/*.overlay.overlay-op-8:hover:before, .overlay.overlay-op-8.overlay-show:before, .overlay.overlay-op-8.show:before {
    opacity: .6;
}*/

/*#04996f green*/ 
/*#3459a4 blue*/

.btn-primary:hover{
	background: #3459a4 !important;
}
.contact-btn:hover {
    background-color: #3459a4 !important;
}

.thumb-info .thumb-info-type {
    border-radius: 2px;
    display: inline-block;
    float: left;
    font-size: 0.6em;
    font-weight: 500;
    letter-spacing: 0;
    margin: 8px -2px -15px 0px;
    padding: 2px 12px;
    text-transform: unset;
    z-index: 2;
    line-height: 2.3;
    height: 51px;
    width: 100%;
}

.thumb-info .thumb-info-title {
    width: 90%;
}

h2, h3{
	color: #3459a4;
}

.fa-caret-down{margin-left:5px;}
#animated-word{color:#1EDD88;}


.circular-text-wrapper {
  position: relative;
}

.circular-text-rotator {
  width: 100%;
  height: 100%;
  animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Adjust text spacing in the circle */
.circular-text-svg text {
  letter-spacing: 3px;
}

.home-page-section-padding{padding-bottom:100px;}
.slogan{font-family:'Unbounded', sans-serif; font-size: 2rem; line-height: 2;color:#0066a9;}
.hr-divder-line{border-bottom:1px solid #019F73;margin:20px 15px;}
.menu-side-information{margin-left:20px;}
.menu-title{font-weight:bold;color:#0066a9;}
.menu-message{font-family:'Unbounded', sans-serif;font-size:25px;line-height:35px;margin:20px 0px;}

.sub-dropdown-menu {
  position: absolute;
  display: block; /* Required for transitions */
  background-color: rgba(241, 241, 241, 0.9);
  left: 0;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 40px;

  /* Initial hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px); /* Reduced slide distance for faster motion */

  /* Exit transition (0.4s fade-out + slide-up) */
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out,
    visibility 0s linear 0.4s; /* Hide after fade completes */
}

li.dropdown:hover .sub-dropdown-menu {
  /* Active state (0.4s fade-in + slide-down) */
  opacity: 0.9;
  visibility: visible;
  transform: translateY(0);

  /* Entrance transition (instant visibility) */
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out,
    visibility 0s linear 0s;
}
.dropdown-item{line-height:45px;}
.dropdown{position:inherit;}
.big-green-arrow{color:#1EDD88;transform: rotate(-45deg);font-size:40px;}
.small-green-arrow-right,.small-green-arrow{transform: rotate(-45deg);color:#0066a9;}
.small-green-arrow-right{float:right;font-size:15px;line-height:45px;color:#0066a9}
/* This will rotate the arrow when the entire dropdown-item is hovered */
.menu-learn-more:hover{color:#0066a9;}
.menu-learn-more:hover .small-green-arrow,.dropdown-item:hover .small-green-arrow-right {
    transform: rotate(0deg);
    transition: transform 0.6s ease;
}
ul.sub-menu li{list-style-type:none;}

.blurb-image{padding-left:50px;}
.blurb-text{letter-spacing:1px;font-size:14px;}
.projects-stats{background-color:#000;color:#fff;width:150px;z-index:10;position:absolute;top:-25px;}
.projects-stats-number{font-size:1.5rem;font-family:'Unbounded', sans-serif;}
.projects-stats-text{font-size:1rem;}
.projs-stats-building{font-size:1.5rem;}
.projects-stats:hover .projs-stats-building {
  font-size: 50px !important;
  transition: font-size 0.3s ease; /* Smooth animation */
}

@.slide-animation {
  opacity: 0;
  transform: translateX(100%); /* Start off-screen to the left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-animation.active {
  opacity: 1;
  transform: translateX(0); /* Slide to normal position */
}

.section-header h2 {
    overflow: hidden; /* Keeps everything contained during animation */
}

.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.image-gallery {
    display: flex;
    height: 600px;
}

.image-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 0;
}

/* Grayscale base for the image */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%) brightness(0.9); /* Grayscale + slightly darkened */
}

/* Dark overlay on top */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    transition: all 0.5s ease;
    z-index: 1;
    mix-blend-mode: multiply; /* Makes the overlay interact with grayscale */
}

.image-container:hover {
    flex: 1.5;
}

/* Hover effects */
.image-container:hover .gallery-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1); /* Remove grayscale and restore brightness */
}

.image-container:hover .sevices-arrow-circle {
  transform: rotate(0deg) scale(1.1);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.image-container:hover .rotate-forty-five {
  transform: rotate(0deg);
}

.image-container:hover::before {
    background: rgba(0, 0, 0, 0); /* Remove overlay on hover */
}

.image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 2;
}

.image-container:hover .image-title {
    font-size: 1.5rem;
    opacity: 1;
}

.image-link {
	position: relative;
    z-index: 3;          
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.value-card {
	height: 100%;
	transition: transform 0.3s ease;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.1);
}
.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.value-img {
	height: 200px;
	object-fit: cover;
	width: 100%;
	filter: brightness(0.9);
}
.value-content {
	padding: 25px;
	background: white;
}
.value-title {
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 1.5rem;
}
.value-text {
	color: #555;
	line-height: 1.6;
	font-size: 1rem;
}
.section-header {
	margin-bottom: 50px;
}
.value-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #3498db;
}

.core-values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.core-values-item {
	position: relative;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.core-values-image {
	width: 225px;
	height: 225px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
	transition: all 0.4s ease;
}

.core-values-number {
	position: absolute;
	top: -15px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	transition: all 0.4s ease;
}

.core-values-item:hover {
	border-color: #000;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.core-values-item:hover .core-values-number {
	background: #27ae60;
	color: white;
	border-color: #27ae60;
}

.core-values-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.core-values-text {
	color: #555;
	line-height: 1.6;
	text-align: center;
}

.core-values-header {
	text-align: center;
	margin-bottom: 50px;
}

.featured-projects-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px 60px;
}

.featured-projects-scroller {
	display: flex;
	overflow-x: hidden;
	scroll-behavior: smooth;
	gap: 20px;
	padding-bottom: 20px;
}

.featured-projects-card {
	flex: 0 0 calc(40% - 10px);
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.featured-projects-card:hover {
	transform: translateY(-5px);
}

.featured-projects-card:hover .rotate-forty-five{
	transform: rotate(0deg);
}

.featured-projects-image-wrapper {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.featured-projects-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Green animation overlay - covers 25% */
.featured-projects-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30%;
	background-color: #27ae60;
	transform: translateY(100%);
	transition: transform 0.4s ease-out;
	z-index: 1;
}

.featured-projects-card:hover .featured-projects-overlay {
	transform: translateY(0);
}

.featured-projects-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
	padding: 20px 15px;
	font-size: 1.2rem;
	font-weight: bold;
	z-index: 2;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.featured-projects-scroll-controls {
	position: absolute;
	bottom: 0;
	left: 20px;
	display: flex;
	gap: 10px;
	z-index: 10;
}

.featured-projects-scroll-btn {
	width: 50px;
	height: 50px;
	background-color: #27ae60;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured-projects-scroll-btn:hover {
	background-color: #0066a9;
	transform: scale(1.05);
}

.featured-projects-section-title {
	margin-bottom: 30px;
	font-weight: 700;
}

.button-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-text {
  position: relative;
  overflow: hidden;
  height: 40px;
  display: inline-block;
  border: 1px solid white;
  border-radius: 30px;
  padding: 0 25px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
}

.btn-text-inner {
  border: 1px solid #DFE1E7;
  color: #000;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.text-line {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-arrow:hover .text-wrapper {
  transform: translateY(-40px);
}

.sevices-arrow-circle,.arrow-circle {
  background-color: #27ae60;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  right:-20px;
}

.sevices-arrow-circle{
	width:50px;
	height:50px;
	filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease; /* Optional: for smooth hover effects */
}

.rotate-forty-five {
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

.image-container-arrow-wrapper{position: absolute;bottom: 20%;z-index: 3; pointer-events: none;left: 50%;transform: translateX(-50%);}
.image-container-arrow-wrapper .arrow-circle {
  pointer-events: auto; /* Re-enable interaction on the arrow only */
}

.button-arrow:hover .arrow-circle {
  background-color: #2ecc71;
  transform: scale(1.05);
}

.button-arrow:hover .rotate-forty-five {
  transform: rotate(0deg);
}

.company-overview-main-text{padding-right:50px;}
.light-grey-background{background-color:#F3F5FA;}
.empty-spacing{height:100px;}
.rotating-text-inner-wrapper{position:relative;}
.overview-inner-page .circular-text-wrapper{position:absolute !important;top: -60%;}

.team-card {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	border: none;
	padding: 0;
}

.team-img-container {
	height: 395px;
	overflow: hidden;
}

.team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.team-card:hover .team-img {
	transform: scale(1.05);
}

.team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
	opacity: 1;
}

.team-chevron {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg) scale(0);
	font-size: 120px;
	color: #27ae60;
	opacity: 0.9;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-chevron {
	transform: translate(-50%, -50%) rotate(0deg) scale(1);
	top: 75%;
}

.team-info {
	padding: 20px 0;
	text-align: center;
}

.team-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.team-title {
	font-size: 1rem;
	color: #666;
}

.team-link {
	text-decoration: none;
	display: block;
}

.team-link:hover {
	text-decoration: none;
}

.awards-image-card {
	margin-bottom: 40px;
	position: relative;
	transition: all 0.3s ease;
}

.awards-image-container {
	position: relative;
	overflow: visible; /* Changed to visible to allow badge to extend */
	border-radius: 8px;
	height: 250px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.awards-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.5s ease;
}

.awards-image-card:hover .awards-image-container img {
	transform: scale(1.05);
}

.awards-year-box {
	position: absolute;
	left: 20px;
	bottom: -20px; /* Half outside the container */
	background-color: #27ae60;
	color: white;
	padding: 10px 22px;
	font-weight: 700;
	font-size: 1.2rem;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	z-index: 10;
	transition: all 0.3s ease;
	/* Ensure full visibility */
	transform: translateZ(0);
}

.awards-image-card:hover .awards-year-box {
	transform: translateY(-5px) translateZ(0);
	box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.awards-card-content {
	padding: 30px 15px 15px;
	margin-top: 10px; /* Space for the hanging badge */
}

.awards-card-content h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	font-weight: 600;
}

.awards-card-content p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.5;
}

.awards-learn-more-btn {
	background-color: transparent;
	color: #27ae60;
	border: 2px solid #27ae60;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.awards-learn-more-btn:hover {
	background-color: #27ae60;
	color: white;
	transform: translateY(-2px);
}

.awards-image-link {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.awards-image-link:hover {
	text-decoration: none;
}

.awards-pic{max-width:50%;cursor:pointer;}
.awards-section-details ul{list-style:inside;}

.vision-value-card {
	transition: transform 0.3s;
	height: 100%;
	border: 1px solid rgba(52, 89, 164, 0.1);
}
.vision-value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(52, 89, 164, 0.1);
}
.vision-icon-container {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f9fa;
	border-radius: 50%;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.vision-service-card {
	border-left: 4px solid #3459a4;
	transition: all 0.3s ease;
}
.vision-service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(52, 89, 164, 0.1);
}

.services-sidebar {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  height: 100%;
  position: sticky;
  top: 1rem;
}

.sidebar-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: var(--dark-text);
  border-radius: 0.375rem;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  font-weight: 500;
}

.service-link:hover, .service-link.active {
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(4px);
}

.service-link:hover .chevron, .service-link.active .chevron {
  opacity: 1;
  transform: translateX(4px);
}

.chevron {
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.25s ease;
  color: var(--primary-color);
}

.service-image-container {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 350px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover {
  transform: scale(1.02);
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.services-header {
	text-align: center;
	margin-bottom: 30px;
}

.services-header h1 {
	font-size: 2.5rem;
	color: #222;
	margin-bottom: 10px;
}

.services-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
	align-items: stretch;
}

.service-card {
	background-color: #F3F5FA;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 25px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 300px;
}

.service-card:hover {
	background-color: white;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.service-icon {
	font-size: 2.2rem;
	color: #0066cc;
	margin-bottom: 15px;
}

.service-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #222;
	line-height: 1.3;
}

.divider {
	height: 1px;
	background-color: #ccc;
	margin: 15px 0;
	width: 100%;
}

.counter-number{font-size:4em; font-family:'Unbounded', sans-serif;color:#0066a9;}
.counter-text{font-weight:bold;font-size:1.5em;}

.projects-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.projects-filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #27ae60;
    color: white;
    border-color: #27ae60;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

.projects-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.projects-card:hover {
    transform: translateY(-5px);
}

.projects-card:hover .rotate-forty-five {
    transform: rotate(0deg);
}

.projects-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.projects-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background-color: #27ae60;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    z-index: 1;
}

.projects-card:hover .projects-overlay {
    transform: translateY(0);
}

.projects-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 20px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.projects-section-title {
    margin-bottom: 30px;
    font-weight: 700;
}

.project-category {
    display: none; /* Hidden data attribute */
}

.news-header {
	text-align: center;
	margin-bottom: 30px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
	align-items: stretch;
}

.news-card {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 0;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 400px;
	overflow: hidden;
}

.news-card:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateY(-5px);
	border-color: #0066cc;
}

.news-image-container {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-image {
	transform: scale(1.05);
}

.news-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.news-date {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 8px;
}

.news-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #222;
	line-height: 1.3;
}

.news-excerpt {
	color: #555;
	margin-bottom: 15px;
	flex-grow: 1;
	font-size: 0.95rem;
	line-height: 1.5;
}

/*.btn-more-about {
  display: inline-flex;
  align-items: center;
  color: #1EDD88;
  border: 1px solid #CCC;
  border-radius:30px;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  position:relative;
}

.about-us-button{position:relative;}

.about-us-button .fa-arrow-circle-down{
  position:absolute;
  font-size:40px;
  right:0px;
  transform: rotate(-135deg);
  z-index:10;
}

.btn-more-about:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #0066a9;
}

.btn-more-about:hover .btn-arrow {
  transform: translateX(5px);
}
*/

.email2{display:none;}

input.input_bg, select.input_bg {
    border-radius: 7px;
    border: 1px solid #efefef;
    height: 33px;
    margin: 0 auto 15px;
    padding: 5px;
    width: 90%;
    display:block;
}

.btn-outline {
    font-size: 18px;
    border-radius: 10px;
    padding: 15px 15px;
    border: #fff 2px solid;
    background: #04996f;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    display:block;
    margin:0 auto;
}

.btn-outline:hover {
    background: #3459a4;
    color: #fff;
    border: #3459a4 2px solid;
}

input[type="submit" i] {
    text-align: center;
}

@media (min-width: 768px) {
	.sticky-header-enabled .noStick{
		display:block;
	}
	.sticky-header-enabled .sticky{
		display:none;
	}
	.sticky-header-active .noStick{
		display:none;
	}
	.sticky-header-active .sticky{
		display:block;
	}
	.services-sidebar {
		position: relative;
		top: 0;
		margin-bottom: 2rem;
	}
	
	.service-image-container {
		height: 250px;
	}
	
	.projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
	.slogan{font-size:1.5rem;}
	.core-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.featured-projects-card {
		flex: 0 0 calc(50% - 10px);
	}
	
	.featured-projects-image-wrapper {
		height: 300px;
	}
	
	.team-img-container {
		height: 320px;
	}
}

@media (max-width: 768px) {
	.top-slider-text{font-size:2rem;}
	.blurb-image{margin-top:50px;}
	.core-values-image {
		width: 180px;
		height: 180px;
	}
	.featured-projects-card {
		flex: 0 0 calc(70% - 10px);
	}
	
	.company-overview-main-text{padding-left:50px;padding-right:25px;}
	.empty-spacing{height:0px;}
	.about-us-content{padding-bottom:0px !important;}
	.overview-inner-page .circular-text-wrapper{display:none;}
	.team-img-container {
		height: 280px;
	}
	
	.home-page-section-padding{padding-bottom:50px;}
}

@media (max-width: 576px) {
	#our-services{margin-top:50px;}
	#main{padding:0px;}
	.top-slider-text{margin-left:10px;}
	.blurb-text{padding-left:25px;padding-right:25px;}
	
	.image-gallery {
		flex-direction: column;
		height: auto;
	}
	
	.image-container {
		width: 100% !important;
		flex: none !important;
		height: 250px;
		margin: 2px 0 !important;
	}
	
	.image-container:hover {
		flex: none;
		height: 250px;
	}
	
	.image-container:hover .image-title {
		font-size: 2.25rem; /* Slightly smaller increase on mobile */
	}
	
	.core-values-grid {
		grid-template-columns: 1fr;
	}
	
	.core-values-image {
		width: 225px;
		height: 225px;
	}
	
	.featured-projects-card {
		flex: 0 0 calc(90% - 10px);
	}
	
	.featured-projects-image-wrapper {
		height: 250px;
	}
	
	.featured-projects-scroll-btn {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

@media (max-width: 420px) {
	.banner-title h1{font-size:32px !important;}
}