/***** | COLORS |*****/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	scroll-behavior: smooth;
	--primary: #2ECA6A;
	--secondary: #13C13C;
  --white: #ffffff;
	--dark: #000000;
  --dark-blue: #052A47;
	--ligh-dark: #f8f5f5;
	--light-green: #D4F1CF;
  --dark-blue-green: #004A54;
	--light-font-color: #6c757d;
}

body {
	font-family: "Poppins", sans-serif;
}

a {
	color: var(--dark);
	text-decoration: none;
	transition: all 0.5s ease;
}

a:hover {
	color: var(--primary);
	text-decoration: none;
}

ul,
li,
ol {
	list-style: none;
}

p{
  font-size: 15px;
}

/***** | BUTTONS | *****/

.get-start-btn {
	background: var(--secondary);
	border: 0;
	padding: 5px 20px;
	color: var(--white);
	transition: 0.4s;
	border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.get-start-btn:hover {
	background: var(--secondary);
	color: var(--white);
}

@media (max-width: 576px) {
  .get-start-btn {
    background: var(--secondary);
    border: 0;
    padding: 4px 20px;
    color: var(--white);
    transition: 0.4s;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
  }
}

.apply-btn {
	background: var(--primary);
	border: 0;
	padding: 6px 14px;
	color: var(--white);
	transition: 0.4s;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.apply-btn:hover {
	background: var(--secondary);
	color: var(--white);
}

/***** |  BANNER SECTION |*****/

#banner {
	width: 100%;
	height: 60vh;
	background-size: cover;
	position: relative;
	margin: 40px 0;
}

#banner:before {
	content: "";
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

@media (max-width: 992px) {
	#banner .container {
		padding-top: 50px;
	}
}

#banner h1 {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	line-height: 56px;
	color: var(--white);
}

#banner span {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	line-height: 56px;
	color: var(--secondary);
}

#banner h2 {
	color: var(--white);
	margin: 10px 0 0 0;
	font-size: 24px;
}

@media (min-width: 1024px) {
	#banner {
		background-attachment: fixed;
	}
}

@media (max-width: 768px) {
	#banner {
		height: 40vh;
	}

	#banner span {
		font-size: 28px;
		line-height: 36px;
	}

	#banner h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#banner h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

/***** | SECTION HEADER | *****/

.section-header {
  margin: 50px 0;
}

.section-header h3 {
	font-size: 32px !important;
	color: var(--dark);
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	position: relative;
  margin-bottom: 0;
  animation: fadeInRight;
	animation-duration: 1s;
}

.section-header span {
	color: var(--primary);
}

.section-header .section-header-line::before {
	content: "";
	position: relative;
	display: block;
	width: 120px;
	height: 3px;
	background: #ddd;
	bottom: -4px;
	left: calc(50% - 60px);
  animation: fadeInRight;
	animation-duration: 1s;
}

.section-header .section-header-line::after {
	content: "";
	position: relative;
	display: block;
	width: 40px;
	height: 5px;
	background: var(--secondary);
	bottom: 0;
	left: calc(50% - 20px);
}

/***** | Section Header-2 |*****/

.section-header2 {
	text-align: center;
	text-transform: uppercase;
	animation: shakeX;
	animation-duration: 2s;
  margin: 50px;
}

.section-header2 h4 {
	font-size: 26px;
	font-weight: 700;
	position: relative;
	color: var(--dark-blue);
}

.section-header2 h4:before,
.section-header2 h4:after {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--secondary);
	display: inline-block;
}

.section-header2 h4:before {
	margin: 0 15px 8px 0;
}

.section-header2 h4:after {
	margin: 0 0 8px 15px;
}

@media (max-width: 576px) {
  .section-header2 h4 {
    font-size: 20px !important;
    font-weight: 700;
    position: relative;
    color: var(--dark-blue);
  }

.section-header2 h4:before,
.section-header2 h4:after {
	content: "";
	width: 25px;
	height: 2px;
	background: var(--secondary);
	display: inline-block;
}

.section-header2 h4:before {
	margin: 0 10px 5px 0;
}

.section-header2 h4:after {
	margin: 0 0 5px 10px;
}
}

/***** | BACK TO TOP |*****/

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--green);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: var(--white);
	line-height: 0;
  background: var(--primary);
}

.back-to-top:hover {
	background: var(--primary);
	color: var(--white);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

#tab-img{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  object-fit: contain;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/***** | PRE LOADER |*****/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid var(--primary);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/***** | CUROSAUL PAGINATION |*****/

.carousel-pagination {
	margin-top: 10px;
	text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
	width: 18px;
	height: 10px;
	background-color: var(--light-font-color);
	margin: 0 4px;
	border-radius: 0;
	opacity: 1;
	transition: 0.3s;
}

.carousel-pagination .swiper-pagination-bullet-active {
	background-color: var(--green);
	width: 36px;
}

/***** | BG Images |*****/

.bg-image {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
}

/***** | NAVBAR |*****/

.humberger-logo-div{
  display: contents;
}

.navbar-brand img {
	height: 35px;
	object-fit: contain;
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 20px;
    object-fit: contain;
  }
}

.navbar-default {
	transition: all 0.5s ease-in-out;
	background-color: var(--white);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar-default.navbar-reduce {
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar-default.navbar-trans,
.navbar-default.navbar-reduce {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.navbar-default.navbar-trans .nav-item,
.navbar-default.navbar-reduce .nav-item {
	position: relative;
	padding-right: 10px;
	margin-left: 0;
}

@media (min-width: 768px) {
	.navbar-default.navbar-trans .nav-item,
	.navbar-default.navbar-reduce .nav-item {
		margin-left: 15px;
	}
}

.navbar-default.navbar-trans .nav-link,
.navbar-default.navbar-reduce .nav-link {
	font-size: 14px;
  font-weight: 800;
	color: var(--dark-blue-green);
	letter-spacing: 0.03em;
	transition: all 0.1s ease-in-out;
	position: relative;
	padding-left: 0;
	padding-right: 0;
  text-transform: uppercase;
}

.navbar-default.navbar-trans .nav-link:before,
.navbar-default.navbar-reduce .nav-link:before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 2px;
	z-index: 0;
	background-color: var(--primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
}

.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-reduce .nav-link:hover {
	color: var(--dark-blue);
}

.navbar-default.navbar-trans .nav-link:hover:before,
.navbar-default.navbar-reduce .nav-link:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

.navbar-default.navbar-trans .show > .nav-link:before,
.navbar-default.navbar-trans .active > .nav-link:before,
.navbar-default.navbar-trans .nav-link.show:before,
.navbar-default.navbar-trans .nav-link.active:before,
.navbar-default.navbar-reduce .show > .nav-link:before,
.navbar-default.navbar-reduce .active > .nav-link:before,
.navbar-default.navbar-reduce .nav-link.show:before,
.navbar-default.navbar-reduce .nav-link.active:before {
	transform: scaleX(1);
}

.navbar-default.navbar-trans .nav-link:before {
	background-color: var(--primary);
}

.navbar-default.navbar-trans .nav-link:hover {
	color: var(--dark);
}

.navbar-default.navbar-trans .show > .nav-link,
.navbar-default.navbar-trans .active > .nav-link,
.navbar-default.navbar-trans .nav-link.show,
.navbar-default.navbar-trans .nav-link.active {
	color: var(--dark);
}

.navbar-default.navbar-reduce {
	transition: all 0.5s ease-in-out;
	padding-top: 10px;
	padding-bottom: 10px;
}

.navbar-default.navbar-reduce .nav-link {
	color: var(--dark);
}

.navbar-default.navbar-reduce .nav-link:before {
	background-color: var(--primary);
}

.navbar-default.navbar-reduce .nav-link:hover {
	color: var(--dark);
}

.navbar-default.navbar-reduce .show > .nav-link,
.navbar-default.navbar-reduce .active > .nav-link,
.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-reduce .nav-link.active {
	color: var(--dark);
}

.navbar-default .dropdown .dropdown-menu {
	border-top: 4px solid var(--primary);
	border-right: 0;
	border-bottom: 0;
  background-color: var(--light-green);
	transform: translate3d(0px, 40px, 0px);
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.3, 0.65, 0.355, 1) 0s, opacity 0.31s ease 0s, height 0s linear 0.36s;
	margin: 0;
	border-radius: 10px;
	padding: 10px 0;
}

@media (min-width: 768px) {
	.navbar-default .dropdown .dropdown-menu {
		border-top: 4px solid var(--primary);
		border-left: 0;
		display: block;
		position: absolute;
		box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(20, 19, 18, 0.1);
	}
}

.navbar-default .dropdown .dropdown-menu .dropdown-item {
	padding: 12px 18px;
	transition: all 500ms ease;
	min-width: 220px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--light-green);
	color: var(--primary);
	transition: all 500ms ease;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item.active {
	color: var(--primary);
}

.navbar-default .dropdown:hover .dropdown-menu {
	transform: translate3d(0px, 0px, 0px);
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=1);
}

/***** | Humbarger |*****/

.navbar-toggler {
	position: relative;
  border-radius: 1;
  border: none;
  padding: 4px 6px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
	outline: 0;
  border: none;
}

.navbar-toggler span {
	display: block;
	background-color: var(--dark);
	height: 3px;
	width: 20px;
	margin-top: 4px;
	margin-bottom: 4px;
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
	transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 6px;
	top: 6px;
	transform: rotate(135deg);
	opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 8px;
	visibility: hidden;
	background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 6px;
	top: 6px;
	transform: rotate(-135deg);
	opacity: 0.9;
}

/***** | Box Collapse |*****/

.box-collapse {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 1040;
	background-color: var(--white);
	transform: translateX(100%);
	transition: all 0.6s ease;
}

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

.box-collapse .title-box-d {
	top: 30px;
	left: 60px;
	opacity: 0;
	transition: all 1s ease;
	transition-delay: 0.3s;
}

@media (max-width: 575px) {
	.box-collapse .title-box-d {
		left: 35px;
	}
}

@media (max-width: 575px) {
	.box-collapse .title-box-d .title-d {
		font-size: 1.3rem;
	}
}

.box-collapse-wrap {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 6.5rem;
	bottom: 5rem;
	padding-left: 10%;
	padding-right: 10%;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	transform: translateY(3rem);
	transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease;
}

.box-collapse-open .click-closed {
	visibility: visible;
}

.box-collapse-open .box-collapse {
	transform: translateX(0);
	box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
	opacity: 1;
}

.box-collapse-open .box-collapse .title-box-d {
	transform: translate(0);
	opacity: 1;
}

.box-collapse-open .box-collapse-wrap {
	transform: translate(0);
	opacity: 1;
}

.box-collapse-closed .box-collapse {
	opacity: 0.7;
	transition-delay: 0s;
}

.box-collapse-closed .box-collapse .title-box-d {
	opacity: 0;
	transition-delay: 0s;
}

.box-collapse-closed .box-collapse .form-a {
	opacity: 0;
	transition-delay: 0s;
}

.click-closed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	z-index: 1035;
	background-color: var(--dark);
	opacity: 0.4;
}

.close-box-collapse {
	position: absolute;
	z-index: 1050;
	top: 2rem;
	font-size: 3.5rem;
	line-height: 1;
	color: var(--dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.right-boxed {
	right: 4.2857rem;
}

/***** | HOME |*****/

/***** | Hero Section |*****/

.intro #banner {
	height: 70vh;
	position: relative;
	color: var(--white);
	background-size: cover;
}

.intro #banner .intro-title {
	color: var(--white);
	font-weight: 700;
	font-size: 4rem;
	text-transform: uppercase;
  line-height: 70px;
}

.intro #banner .intro-title span {
	font-weight: 700;
	font-size: 4rem;
	color: var(--secondary);
}

.intro #banner .intro-subtitle {
	font-size: 2.3rem;
	font-weight: 600;
	color: var(--white);
}

.intro .swiper-pagination .swiper-pagination-bullet {
	width: 18px;
	height: 5px;
	background-color: var(--primary);
	border-radius: 0;
	opacity: 1;
	transition: 0.3s;
}

.intro .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--secondary);
	width: 36px;
}

@media (max-width: 576px) {
  .intro #banner {
		height: 60vh !important;
	}

	.intro #banner .intro-title {
		font-size: 2rem;
		font-weight: 700;
    line-height: 40px;
	}

	.intro #banner .intro-title span {
    font-size: 2rem;
		font-weight: 700;
	}

  .intro #banner .intro-subtitle {
		font-size: 1.5rem !important;
		font-weight: 600;
    line-height: 35px;
	}
}

@media (max-width: 768px) {
	.intro #banner .intro-subtitle {
		font-size: 2rem;
		font-weight: 700;
	}
}

/***** | Home What-We-Offer |*****/

.what-we-offer {
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	background-attachment: fixed;
	width: 100%;
	position: relative;
}

.what-we-offer .content {
	background: #052A47 none repeat scroll 0 0;
	padding: 40px 30px;
	background-size: cover;
}

.what-we-offer .content h4 {
	color: var(--white);
	font-size: 30px;
	font-weight: 700;
  font-family: "Raleway", serif;
	line-height: 34px;
	text-transform: uppercase;
}

.what-we-offer .content p {
	color: var(--white);
	text-align: justify;
}

@media (max-width: 576px) {
  .intro #banner {
		height: 60vh !important;
	}
}

/***** | Home Services |*****/

#home-services .card {
	border: 0;
	padding: 0;
	position: relative;
	background: transparent;
}

#home-services .card-img {
	overflow: hidden;
	z-index: 9;
	border-radius: 0;
}

#home-services .card-img img {
	max-width: 100%;
	transition: all 0.3s ease-in-out;
}

#home-services .card-body {
	z-index: 10;
	background: var(--white);
	border-top: 4px solid var(--white);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	margin-top: -60px;
	margin-left: 30px;
	width: calc(100% - 60px);
  height: 280px !important;
}

@media (max-width: 640px) {
  #home-services .card-body {
		margin-left: 15px;
		width: calc(100% - 30px);
	}
}

#home-services .card-title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

#home-services .card-text {
	color: var(--light-font-color);
	text-align: justify;
}

#home-services .read-more a {
	color: var(--primary);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	transition: 0.3s;
}

#home-services .read-more a:hover {
	color: var(--secondary);
}

#home-services .card:hover img {
	transform: scale(1.1);
}

#home-services .card:hover .card-body {
	border-color: var(--secondary);
}

#home-services .card:hover .card-body .card-title a {
	color: var(--secondary);
}

#home-services .card:hover .card-body .read-more a {
	color: var(--secondary);
}

/***** | Home Events |*****/

/* .events {
	overflow: hidden;
}

.events img {
	height: 180px;
	width: 300px;
	object-fit: cover;
}

.events .swiper-pagination {
	margin: 0 0 10px 0;
	position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--light-font-color);
	opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--secondary);
}

.events .swiper-slide-active {
	text-align: center;
}

@media (min-width: 992px) {
	.events .swiper-wrapper {
		padding: 30px 0;
	}

	.events .swiper-slide-active {
		border: 6px solid var(--green);
		padding: 4px;
		background: var(--white);
		z-index: 1;
		transform: scale(1.2);
	}
} */

/***** | Home Testimonials |*****/

/* .testimonials {
	padding: 80px 0;
	background: url("./Assets/Image/TestimonialBanner.jpeg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(13, 20, 26, 0.7);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	text-align: center;
	color: var(--white);
}

.testimonials .testimonial-item .testimonial-img {
	height: 100px;
	width: 100px;
	border-radius: 50%;
	border: 6px solid rgba(255, 255, 255, 0.15);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: var(--white);
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: var(--light-green);
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: var(--light-green);
	font-size: 22px;
}

.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: 0 auto 15px auto;
	color: var(--ligh-dark);
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--light-green);
	opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--secondary);
	opacity: 1;
} */

/***** | Home Careers Banner |*****/

/* .home-career {
	background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url("./Assets/Image/HomeCareersBanner.jpg") fixed center center;
	background-size: cover;
	padding: 120px 0;
}

.home-career h3 {
	color: var(--white);
	font-size: 30px;
	font-weight: 700;
}

.home-career span {
	color: var(--secondary);
	font-size: 30px;
	font-weight: 700;
}

.home-career p {
	color: var(--white);
}

.home-career .btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 20px;
	border-radius: 2px;
	transition: 0.5s;
	margin: 10px;
	background: var(--green);
	color: var(--white);
	border-radius: 50px;
}

.home-career .btn:hover {
	background: var(--dark-green);
}

@media (max-width: 1024px) {
	.home-career {
		background-attachment: scroll;
	}
}

@media (min-width: 769px) {
	.home-career .btn-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
} */

/***** | Home Industries We Serve |*****/

#industries-we-serve ul li h6 {
	font-size: 16px;
	font-weight: 600;
  margin-top: 10px;
}

#industries-we-serve ul {
	padding: 0;
	font-size: 15px;
}

#industries-we-serve ul li {
	position: relative;
	padding-left: 26px;
  text-align: center;
	padding: 10px;
	color: var(--dark);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	height: 220px;
	max-width: 305px;
	margin-bottom: 10px;
  border: 5px solid transparent; /* Initially transparent */
  transition: 1s ease-in-out; /* Smooth transition */
}

#industries-we-serve ul li i {
	left: 0;
	top: 0;
	color: var(--dark-green);
  color: var(--primary);
	margin-bottom: 10px;
	font-size: 30px;
}

#industries-we-serve li:hover {
	border: 1px solid var(--secondary);
	transform: scale(1.1);
}

/***** | Our Process |*****/

#process{
  background-color: var(--light-green);
}

#process .card{
width: 400px;
height: 200px;
background-color: var(--dark-blue);
color: var(--white);
border: 8px;
padding: 10px;
}

#process .card i{
  margin-right: 10px;
  font-size: 22px;
}

#process .card h4{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

#process .card p{
  text-align: justify;
}

@media (max-width : 768px){
#process .card{
width: 400px;
height: 200px;
background-color: var(--dark-blue);
color: var(--white);
border: 8px;
padding: 10px;
}
}

/***** | Benefits |*****/

#benefits .card{
  width: 350px;
  height: 160px;
  border-radius: 0px 50px 0px 50px;
  border: none;
  outline: none;
  text-align: justify;
  padding: 10px;
}

#benefits .card h5{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

/***** | ABOUT |*****/

/***** | Why Us |*****/

#about .why-us .why-box {
	padding: 40px 20px;
	background: var(--primary);
	color: var(--white);
  width: 400px;
	height: 100%;
}

#about .why-us .why-box h3 {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 20px;
}

#about .why-us .why-box p {
	text-align: justify;
	margin-bottom: 30px;
}

#about .why-us .icon-box {
	text-align: center;
	background: var(--white);
	padding: 40px 20px;
	width: 380px;
	min-height: 450px;
	transition: 0.3s;
	transition: all ease-in-out 0.3s;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.4);
	border-radius: 18px;
	border-bottom: 5px solid var(--white);
}

#about .why-us .icon-box i {
	color: var(--secondary);
	margin-bottom: 20px;
	font-size: 32px;
	background: rgba(206, 18, 18, 0.1);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
}

#about .why-us .icon-box h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: var(--primary);
}

#about .why-us .icon-box p {
	font-size: 15px;
	color: var(--light-font-color);
  text-align: justify;
}

#about .why-us .icon-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

/***** | Core Values |*****/

#about .core-values .icon-box {
	text-align: center;
	background: var(--dark-blue);
	padding: 30px;
	width: 300px;
	height: 300px;
	transition: 0.3s;
	transition: all ease-in-out 0.3s;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.4);
	border-radius: 18px;
	border-bottom: 5px solid var(--dark-blue);
}

#about .core-values i {
	color: var(--secondary);
	margin-bottom: 20px;
	font-size: 32px;
}

#about .core-values .icon-box h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: var(--secondary);
}

#about .core-values .icon-box p {
	font-size: 15px;
	color: var(--white);
  text-align: justify;
}

@media (min-width: 1200px) {
	#about .core-values .icon-box:hover {
		transform: translateY(-10px);
		border-color: var(--primary);
	}
}

/***** | Starflit Advantages |*****/

#about #starflit-advantages h6 {
	font-size: 14px;
	font-weight: 600;
}

#about #starflit-advantages ul {
	padding: 0;
	font-size: 15px;
}

#about #starflit-advantages ul li {
	position: relative;
  text-align: center;
	padding: 10px;
	color: var(--dark);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: 1s;
	cursor: pointer;
	height: 120px;
	width: 300px;
	margin-bottom: 10px;
}

#about #starflit-advantages ul li i {
	left: 0;
	top: 0;
	color: var(--dark-green);
  color: var(--primary);
	margin-bottom: 10px;
	font-size: 30px;
}

#about #starflit-advantages li:hover {
	border: 1px solid var(--secondary);
	transform: scale(1.1);
}

/************************* | SERVICES SECTION | *************************/

#services img {
	width: 100%;
	height: 350px;
	border-radius: 10px;
}

#services h5 {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}

#services p {
	text-align: justify;
}

#services .services ul {
	padding: 0;
}

#services .services ul li {
	position: relative;
	padding-left: 36px;
  text-align: justify;
}

#services .services ul li i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 22px;
}

/***** | key-features | *****/

#services .key-features ul {
	padding: 0;
}

#services .key-features ul li {
	text-align: center;
	border: 0;
	padding: 10px;
	color: var(--dark-blue);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: 0s;
	cursor: pointer;
	height: 120px;
  width: 170px;
	margin-bottom: 10px;
  border: 1px solid transparent; /* Initially transparent */
  transition: border-color 1s ease-in-out; /* Smooth transition */
  font-size: 15px;
	font-weight: 600;
}

#services .key-features ul li:hover {
	border: 1px solid var(--secondary);
	transform: scale(1.1);
  transition: 1s;
}

/************************* | INDUSTRIES | *************************/

#industries img {
	width: 100%;
	height: 350px;
	border-radius: 10px;
}

#industries h5 {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}

#industries p {
	text-align: justify;
}

#industries h6 {
	font-size: 16px;
	font-weight: 600;
}

#industries ul {
	padding: 0;
}

#industries ul li {
	position: relative;
	padding-left: 36px;
  text-align: justify;
}

#industries ul li i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 22px;
}

/***** | CAREERS |*****/

/***** | Jobs List Card |*****/

/* .jobs .card {
	max-width: 400px;
	padding: 15px;
	background: var(--white);
	border: 0.1px solid var(--lightdark);
	border-radius: 3px;
	margin-bottom: 30px;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.4);
}

.jobs .card:hover {
	transform: scale(1.01);
}

.jobs .post-name {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 1px;
	text-transform: uppercase;
	color: var(--dark);
}

.company-icon,
.location-icon,
.exp-icon,
.date-icon {
	font-size: 16px;
	margin-right: 5px;
}

.jobs .badge {
	background-color: var(--light-green);
	color: var(--green);
} */

/***** | Jobs Details Card |*****/

/* .jobdetails .card {
	height: fit-content;
	margin-bottom: 30px;
	padding: 10px 20px;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.jobdetails h6 {
	font-size: 22px;
	font-weight: 600;
}

.jobdetails .job-desc-role-exp h6 {
	font-size: 18px;
	margin-bottom: 15px;
}

.jobdetails .job-desc-role-exp p,
ul {
	font-size: 16px;
	margin-bottom: 25px;
	color: rgb(112, 112, 112);
	text-align: justify;
}

.jobdetails .job-desc-role-exp li {
	font-size: 16px;
	margin-bottom: 15px;
	color: rgb(112, 112, 112);
}

.jobdetails .job-desc-role-exp li::before {
	margin-right: 10px;
	content: "✔";
	margin-left: 10px;
}

.jobdetails .badge {
	margin-right: 5px;
	background-color: var(--light-green);
	color: var(--green);
}

.jobinformation .title-icon {
	height: 20px;
	width: 20px;
	font-size: 22px;
	border-radius: 50%;
	background-color: var(--green);
}

.jobinformation i {
	font-size: 22px;
	margin-right: 15px;
}

.jobinformation p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark);
}

.jobinformation p:nth-child(2) {
	color: var(--primary);
} */

/***** | CLIENTS |*****/

#clients .card {
  height: 150px;
  width: 210px;
  perspective: 1000px;
  margin: auto;
  outline: none;
  border: none;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#clients .content {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s;
}

#clients .card:hover .content {
  transform: rotateY(180deg);
}

#clients .content .front, .content .back {
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: hidden; /* Prevent back side from showing when facing front */
}

#clients .front {
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#clients .front img {
  height: 150px;
  width: 150px;
  object-fit: contain;
}

#clients .back {
  background-color: var(--primary);
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#clients .title {
  font-size: 18px;
  font-weight: 800;
}

@media (max-width : 768px){
  #clients .card {
  height: 250px;
  width: 350px;
  perspective: 1000px;
  margin: auto;
  outline: none;
  border: none;
}

#clients .card:hover .content {
  transform: rotateY(180deg);
}
}

/*****| CONTACT |*****/

.map iframe {
	width: 100%;
	height: 500px;
}

.contact .info-box {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  border: 1px solid transparent; /* Initially transparent */
  transition: border-color 1s ease-in-out; /* Smooth transition */

}

.contact .info-box:hover {
	border: 1px solid var(--secondary);
  transition: 1s;
}

.contact .info-box i {
	font-size: 30px;
	color: var(--secondary);
}

.contact .info-box h5 {
	font-size: 18px;
	color: var(--primary);
	font-weight: 500;
}

.contact .info-box p {
	font-size: 16px;
  color: var(--dark-blue);
}

.contact-form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 33px;
}

.contact-form input,
.contact-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	box-shadow: none;
	border-color: var(--primary);
  transition: 1s;
}

.contact-form input {
	padding: 10px 15px;
}

.contact-form textarea {
	padding: 12px 15px;
	margin-bottom: 30px;
}

.contact-form button[type="submit"] {
	background: var(--primary);
	border: 0;
	padding: 8px 20px;
	color: var(--white);
	transition: 0.4s;
}

.contact-form button[type="submit"]:hover {
	background: var(--secondary);
}

/************************** | FOOTER |******************************/

footer {
	padding-bottom: 20px;
	background: var( --dark-blue-green);
	color: var(--white);
  border-radius: 50px 50px 0px 0px;
}

footer section {
	padding: 0 50px;
}

section.top {
padding: 50px;
}

@media (max-width : 576px){
  section.top {
    padding: 20px;
    }
}

section.top ul {
	/* padding: 0; */
	margin: 0;
	display: grid;
	gap: 40px;
}

@media (width > 480px) {
	section.top ul {
		padding-right: 10%;
	}
}

@media (width > 600px) {
	section.top ul {
		grid-template-columns: repeat(5, 1fr);
		padding-right: 0;
	}
}

section.top ul li a {
	display: block;
	margin-bottom: 10px;
	color: rgb(255 255 255 / 60%) !important;
}

section.top h3 {
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

section.bottom {
	padding-top: 20px;
	border-top: 1px solid rgb(255 255 255 / 50%);
	color: rgb(255 255 255 / 60%);
	font-size: 14px;
}

.social-icon {
gap: 40px;
}

.social-icon a {
	font-size: 20px;
	height: 30px;
	width: 30px;
	color: var(--white);
}

.social-icon a:hover {
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(1.1);
	transition: 0.3s ease-in-out;
	border-radius: 100%;
	background-color: var(--primary);
	cursor: pointer;
	color: var(--white) !important;
}

/************************** | RECRUIT WORKFORCE & APPLY JOB |******************************/

#recruiter-form .contact-form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 33px;
  background-color: var(--dark-blue-green);
}

#recruiter-form .contact-form input,
#recruiter-form .contact-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

#recruiter-form .contact-form input:focus,
#recruiter-form .contact-form textarea:focus {
	box-shadow: none;
	border-color: var(--primary);
  transition: 1s;
}

#recruiter-form .contact-form input {
	padding: 10px 15px;
}

#recruiter-form .contact-form textarea {
	padding: 12px 15px;
	margin-bottom: 30px;
}

#recruiter-form .contact-form button[type="submit"] {
	background: var(--primary);
	border: 0;
	padding: 8px 20px;
	color: var(--white);
	transition: 0.4s;
}

#recruiter-form .contact-form button[type="submit"]:hover {
	background: var(--secondary);
}
