/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Header CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

* {
	/* margin: 0; */
	/* padding:0; */
}

h2 {
	font-size: 1.2rem;
}

p {
	font-size: 1rem;
}

header {
	width: 100vw;
	height: 10vh;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 0px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #222831;
	color: #fff;
	position: sticky;
	/*overflow: hidden;*/
	top: 0;
	z-index: 1000;
	/* border-bottom:  1px solid #fff; */
	padding: 8px 5px;
}

header .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 4rem; */
	/* height: 4rem; */
	/* border-radius: 50%; */
	/* border: 2px solid #000; */
	/* background: #393E46; */
	margin-left: 30px;
	color: #fff;
}

header .logo a {
	text-decoration: none;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
}

header ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	margin-right: 30px;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	height: 3px;
	width: 25px;
	background: white;
	margin: 4px 0;
	border-radius: 2px;
	transition: 0.3s;
}

nav ul {
	transition: max-height 0.3s ease-in-out;
	padding: 1rem 0rem;
	/* width: 100%; */
	/* height: 1rem; */
}

header ul li {
	list-style: none;
	padding: 0 5px;
}

header ul li a {
	display: flex;
	flex-direction: row;
	text-decoration: none;
	color: #fff;
	font-size: 1rem;
	white-space: nowrap;
}

header ul li a:hover {
	border-bottom: 2px solid #f7b500;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 45px;
	left: 50;
	background: #222831;
	list-style: none;
	padding: 20px 10px 0px 10px;
	min-width: 200px;
	min-height: 200px;
	border-radius: 5px;
}

.dropdown ul {
	/* padding: 1rem; */
	/* margin: 1rem; */
}

.dropdown-li {
	padding: 0.5rem 0.5rem;
}

.dropdown-menu li a {
	/* padding: 20px; */
	/* margin: 20px; */
	color: white;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

header ul button {
	padding: 5px 25px;
	margin: 0;
	cursor: pointer;
	font-size: 1rem;
	/* font-weight: bold; */
	font-weight: 700;
	border-radius: 5px;
	/* border: 2px solid #fff; */
	border: none;
	background: #00adb5;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

header ul button:hover {
	background: #009aa2;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px #265153;
}

@media (max-width: 1024px) {
	.nav-desktop {
		display: none;
	}

	.nav-mobile {
		display: block;
	}
}

@media (max-width: 768px) {
	header {
		padding: 0rem 15px;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 60px;
		right: -25px;
		background: #222831;
		flex-direction: column;
		width: 200px;
		text-align: right;
		padding: 10px;
		border-radius: 0px 0px 10px 10px;
	}

	.nav-links.active {
		display: flex;
	}

	.hamburger {
		display: flex;
		margin: 30px;
	}
}

@media (max-width: 480px) {
	header .logo {
		font-size: 1.2rem;
	}

	header {
		width: 100%;
		padding: 1.2rem 0rem;
	}

	header ul {
		gap: 1rem;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 49px;
		right: -30px;
		background: #222831;
		flex-direction: column;
		width: 200px;
		text-align: center;
		padding: 10px;
		/* margin-right: 2rem; */
		border-radius: 0px 0px 10px 10px;
	}

	.nav-links.active {
		display: flex;
	}

	.hamburger {
		display: flex;
		position: absolute;
		top: 5px;
		right: 20px;
		margin: 10px 0 0 0;
	}

	.dropdown-menu {
		padding: 0;
		left: 10px;
		/* padding: 5px; */
		gap: 0.5rem;
		/* margin: 5px; */
	}

	.dropdown-menu.active {
		display: block;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Footer CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
footer {
	background: #222831;
	height: 12%;
	display: flex;
	/* flex-direction: row; */
	color: #fff;
	font-size: 1rem;
}

.footer-container {
	width: 100%;
	margin: 1rem 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.contact_details {
	font-size: 15px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 1rem 5rem;
}

footer .social-icons-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

footer .social-icons {
	height: 3rem;
	width: 3rem;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	border: 2px solid #fff;
	border-radius: 50px;
}

footer .social-icons:hover{
	box-shadow: 4px 4px 10px rgba(255, 255, 255, 0.3);
}

/* footer .social-icons img {
	height: 1.3rem;
	width: 1.3rem;
} */

footer .social-icons #youtube_icon {
	position: relative;
	top: 3px;
	height: 1.5rem;
}

.copy-right_social-link {
	display: flex;
	flex-direction: row;
	/* justify-content: space-between; */
	justify-content: end;
	/* align-items: start; */
	margin: 0rem 5rem;
	/* align-items: center; */
}

footer {
	background: #222831;
	display: flex;
	flex-direction: row;
	color: #fff;
	font-size: 1rem;
	/* margin-top: 2rem; */
}

.footer-container {
	width: 100%;
	/* margin: 1rem; */
}

.contact_details {
	font-size: 0.9rem;
	display: flex;
	flex-direction: row;
	gap: 25px;
	margin: 1rem 2rem;
}

.contact_details .phone,
.address,
.mail {
	font-size: 15px;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}

/* .contact_details{
            display: flex;
            align-items: center;
            gap: 10px;
        } */

.copy-right_social-link {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: end;
	margin: 1rem 2rem;
}

footer .social-icons-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	/* background: #333; */
}

footer .social-icons {
	display: flex;
	gap: 1rem;
}

footer .social-icons img {
	height: 1.8rem;
	width: 1.8rem;
}

.contact_details a{
	text-decoration: none;
	color: #fff;
}

@media (max-width: 768px) {
	.copy-right_social-link {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
		text-align: center;
	}

	.contact_details {
		margin: 1rem;
	}
}

@media (max-width: 480px) {
	.contact_details{
		flex-direction: column;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Landing Page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

p {
	font-size: 1rem;
	line-height: 1.5;
}

body {
	/* background: #eeeeee; */
	background: #e0e0e0;
	/*line 88 too*/
	scroll-behavior: smooth;
	/* height: 100vh; */
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Open Sans", sans-serif;
}

/* header {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #222831;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 5px;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    color: #fff;
    cursor: pointer;
}

header .logo a{
    text-decoration: none;
    color: #FFF;
    font-size: 1.3rem;
    font-weight: bold;
}

header ul {
    margin: 0.5rem 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-right: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

nav ul {
    transition: max-height 0.3s ease-in-out;
}

header ul li {
    list-style: none;
    padding: 0 5px;
}

header ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

header ul li a:hover {
    border-bottom: 2px solid #f7b500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 50;
  background: #222831;
  list-style: none;
  padding: 20px 10px 0px 10px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 5px;
}

.dropdown ul{
}

.dropdown-li {
    padding: 0.5rem 0.5rem;
}

.dropdown-menu li a {
  color: white;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

header ul button {
    margin: 0;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    background: #00adb5;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul button:hover {
    background: #009aa2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #265153;
} */

/*old carousel feature which does not work on iphone browsers*/

/*.carousel_container {*/
/*	height: 85vh;*/
/*	background: #e0e0e0;*/
/*	padding: 30px 70px;*/
/*}*/

/*.carousel {*/
/*	height: 95%;*/
/*	width: 100%;*/
/*	overflow-x: auto;*/
/*	border-radius: 12px;*/
/*	margin: 0em auto;*/
/*	margin-bottom: 20px;*/
/*	padding: 0;*/
/*	display: flex;*/
/*	gap: 1em;*/
/*	scroll-behavior: smooth;*/
/*	anchor-name: --carousel;*/
/*	scroll-snap-type: x mandatory;*/
/*	scroll-marker-group: after;*/
/*}*/

/*#card1,*/
/*#card2,*/
/*#card3 {*/
/*	position: relative;*/
/*}*/

/*#card1::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	background: url(../img/LandingPage-img/carousel/image1.jpg);*/
/*	background-size: cover;*/
/*	background-position: center;*/

/*	background-repeat: no-repeat;*/
/*	opacity: 0.5;*/
	/* border-radius: 1em; */
/*	z-index: 1;*/
/*}*/

/*#card2::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	background: url(../img/LandingPage-img/carousel/image2.jpg);*/
/*	background-size: cover;*/
/*	background-position: center;*/
/*	background-repeat: no-repeat;*/
/*	opacity: 0.5;*/
/*	z-index: 1;*/
/*}*/

/*#card3::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	background: url(../img/LandingPage-img/carousel/image3.jpg);*/
/*	background-size: cover;*/
/*	background-position: center;*/
/*	background-repeat: no-repeat;*/
/*	opacity: 0.5;*/
/*	z-index: 1;*/
/*}*/

/*.carousel .card .hero-content {*/
/*	position: relative;*/
/*	z-index: 2;*/
/*	color: #000;*/
/*	margin: 0 20px;*/
/*}*/

/*.carousel .card .hero-content h1 {*/
/*	color: #000;*/
/*	font-weight: bold;*/
/*	margin-bottom: 1rem;*/
/*	font-size: 3rem;*/
/*	border-bottom: 3px solid #f7b500;*/
/*	display: inline-block;*/
/*}*/

/*.carousel .card .hero-content .line {*/
/*	color: #000;*/
	/* font-size: 1.5rem; */
/*	z-index: 5;*/
/*}*/

/*.line p {*/
/*	font-size: 1.3rem;*/
/*	font-weight: 580;*/
/*}*/

/*.carousel::scroll-marker-group {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	gap: 0.5em;*/
/*}*/

/*.card::scroll-marker {*/
/*	content: "";*/
/*	height: 1em;*/
/*	width: 1em;*/
/*	background-color: gray;*/
/*	border-radius: 50%;*/
/*}*/

/*.card::scroll-marker:target-current {*/
/*	background-color: #00adb5;*/
/*}*/

/*.carousel::-webkit-scrollbar {*/
/*	display: none;*/
/*}*/

/*.carousel::scroll-button(right),*/
/*.carousel::scroll-button(left) {*/
/*	content: "→";*/
/*	border: none;*/
/*	background-color: #00adb5;*/
/*	color: #fff;*/
/*	font-size: 3rem;*/
/*	color: #000;*/
/*	width: 60px;*/
/*	height: 60px;*/
/*	border-radius: 50%;*/
/*	padding-bottom: 0.2em;*/
/*	cursor: pointer;*/
/*	position: fixed;*/
/*	position-anchor: --carousel;*/
	
/*	position-area: right center;*/
	
/*	translate: 5%;*/

/*}*/

/*.carousel::scroll-button(right):hover {*/
/*	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.carousel::scroll-button(left):hover {*/
/*	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.carousel::scroll-button(left) {*/
/*	content: "←";*/
/*	position-area: left center;*/
/*	translate: -5%;*/
	
/*}*/

/*.carousel::scroll-button(right):disabled,*/
/*.carousel::scroll-button(left):disabled {*/
/*	opacity: 0.5;*/
/*	cursor: auto;*/
/*}*/

/*.carousel .card {*/
/*	scroll-snap-align: start;*/
/*	flex: 0 0 88em;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	padding: 1em;*/
/*	border-radius: 1em;*/
/*	text-align: center;*/
/*	align-content: center;*/
/*	position: relative;*/
/*}*/
/*old carousel feature which is not suitable for iphone browsers*/

/*new carousel feature feature*/

/* ================= GLOBAL SAFETY FIX ================= */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.carousel_container {
  min-height: 85svh;          /* Safari-safe viewport */
  min-height: 85vh;
  background: #e0e0e0;
  padding: 24px;
  display: flex;
  align-items: center;
}

/* ================= CAROUSEL ================= */
.carousel {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 12px;
}

/* Hide scrollbar */
.carousel::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */
.carousel .card {
  flex: 0 0 100%;              /* FULL WIDTH PER SLIDE */
  width: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  border-radius: 1em;
  padding: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ================= BACKGROUND IMAGES ================= */
#card1::before,
#card2::before,
#card3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
}

#card1::before {
  background-image: url("../img/LandingPage-img/carousel/image1.jpg");
}

#card2::before {
  background-image: url("../img/LandingPage-img/carousel/image2.jpg");
}

#card3::before {
  background-image: url("../img/LandingPage-img/carousel/image3.jpg");
}

/* ================= CONTENT ================= */
.carousel .card .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #000;
}

.carousel .card .hero-content h1 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 4vw, 3rem);
  border-bottom: 3px solid #f7b500;
  display: inline-block;
}

.line p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 580;
}

/* ================= DESKTOP ENHANCEMENT ================= */
@media (min-width: 1024px) {
  .carousel_container {
    padding: 30px 70px;
  }

  .carousel .card {
    padding: 2.5rem;
  }
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .carousel_container {
    padding: 16px;
  }

  .carousel .card {
    padding: 1rem;
    height: 50%;
  }
}


/* .features{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 3rem;
} */

.features ul {
	/* flex: 0 0 1; */
	width: 20rem;
	list-style-position: inside;
	margin: 0;
	padding: 0;
	position: relative;
	left: 4rem;
}

.features p {
	text-align: start;
	display: inline-block;
	border-bottom: 3px solid #f7b500;
}

.line .features {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0 10rem;
	gap: 0rem;
}

/* .features-line{
	display: flex;
	justify-content: center;
} */

.line .features li {
	font-weight: bold;
	font-size: 1.2rem;
	text-align: start;
}

.service_heading {
	display: flex;
	/* align-items: center; */
	justify-self: center;
	margin: 2rem 0;
	/* border-bottom: 3px solid #f7b500; */
}

.service_heading h1 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
}

.service_container {
	display: flex;
	/* flex-direction: row; */
	justify-content: center;
	align-items: center;
}

.cards-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.card-content .title strong {
	display: inline-block;
	border-bottom: 2px solid #f7b500;
}

.service_container .service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 25rem;
	height: 22rem;
	padding: 1rem 1rem;
	background: #eeeeee;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
}

.service-card:hover {
	/* transform: translateY(-10px); */
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* .service-card .service-img img{
    width: 15rem;
    height: 12rem;
    margin: 1rem 1rem;
    border-radius: 10px;
} */

.service-card .service-gif img {
	width: 6rem;
	height: 6rem;
	/* margin: 1rem 1rem; */
	background: #eeeeee;
}

.service-card .card-content {
	margin: 0rem 1rem;
	text-align: justify;
	height: 11rem;
}

.service-card .card-content p {
	font-size: 1rem;
}

.service-card .card-content .title {
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 0.7rem;
}

.service-card .card-content .content {
	/* height: 8rem; */
}

.read-more-btn {
	background: #00adb5;
	font-family: "Montserrat", sans-serif;
	color: white;
	border: none;
	padding: 12px 20px;
	/* margin: 10px 0px; */
	width: 9rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	/* position: absolute; */
	/* bottom: 0; */
	/* right: 10px; */
	/* float: right; */
}

.about_heading {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about_heading h1 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin: 1rem 0;
}

.about_container {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0px auto;
}

.about_container .about_content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	margin: 15px 30px;
}

.about_container .image {
	height: 20rem;
	width: 35rem;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about_container #first_img {
	background: url("../img/LandingPage-img/about_us/who%20we%20are%202.jpg")
		no-repeat center center/cover;
}

.about_container #second_img {
	background: url("../img/LandingPage-img/about_us/what%20we%20do%202.jpg")
		no-repeat center center/cover;
}

.about_container .content {
	width: 500px;
	height: 300px;
	padding: 10px 0px;
	line-height: 1.5rem;
	font-size: 1.1rem;
}

.about_container .content p {
	text-align: start;
}

.about_container .content h2 {
	text-align: center;
	padding: 5px 0px;
	margin: 10px 0px;
	border-bottom: 3px solid #f7b500;
	display: inline-block;
}

.abt-btn {
	background: #00adb5;
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Open Sans", sans-serif;
	color: white;
	border: none;
	padding: 12px 10px;
	/* margin: 10px 0px; */
	width: 9rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.industries-we-serve {
	display: flex;
	justify-content: space-evenly;
}

.sector_heading {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	margin: 3rem 5px;
	padding: 5px 5px;
}

.sector_heading h1 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	font-size: 2.5rem;
}

.sector_heading h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	font-size: 2rem;
}

.sectors_container {
	width: 70%;
	display: flex;
	flex-direction: row;
	padding: 10px 10px;
	margin: 1rem 0rem;
	gap: 1rem;
	overflow-x: auto;
}

.sectors_container::-webkit-scrollbar {
	display: none;
}

.sectors_container .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #eeeeee;
	border-radius: 10px;
}

.sectors_cards {
	display: flex;
	gap: 1rem;
	animation: spin 55s infinite linear;
}

.sectors_cards.paused {
	animation-play-state: paused;
}

/* #sectors_cards{
	animation: spin 12s infinite linear;
} */

/* #sectors_cards.paused{
	animation-play-state: paused;
} */

@keyframes spin {
	from {
		translate: 0;
	}
	to {
		translate: -100%;
	}
}

.sectors_container .container img {
	height: 13rem;
	width: 20rem;
	border-radius: 10px 10px 0px 0px;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

/* .sectors_container .container #image1 {
	background: url(../img/LandingPage-img/sectors/off-highway2.jpg) no-repeat
		center center/cover;
}

.sectors_container .container #image2 {
	background: url(../img/LandingPage-img/sectors/automotive2.jpg) no-repeat
		center center/cover;
}

.sectors_container .container #image3 {
	background: url(../img/LandingPage-img/sectors/industrial2.jpg) no-repeat
		center center/cover;
}

.sectors_container .container #image4 {
	background: url(../img/LandingPage-img/sectors/general\ engineering2.jpg)
		no-repeat center center/cover;
} */

.sectors_container .container .content {
	width: 18rem;
	height: 10rem;
	text-align: justify;
	padding: 5px 10px;
}

.sectors_container .container .content h4 {
	text-align: center;
	margin: 5px 5px;
}

/* contact us form  contact us form  contact us form  contact us form  contact us form  contact us form  contact us form */
.contact_heading {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_heading h1 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
}

.contact_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	padding: 2rem 2rem;
	margin: 1rem 1rem;
	background: #eeeeee;
	border-radius: 12px;
}

.contact_container .content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	/* font-size: 1rem; */
	/* padding: 2rem 2rem; */
}

.form {
	/* background: #e0e0e0; */
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 600px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.name-email,
.phone-message {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.name,
.email,
.phone,
.message,
.country {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.message {
	grid-column: 1 / -1;
}

label {
	font-weight: 600;
	color: #000;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

input,
textarea {
	padding: 0.5rem 2rem;
	border: 2px solid #222831;
	border-radius: 12px;
	font-size: 16px;
	font-family: inherit;
	/* transition: all 0.3s ease; */
	background: #e0e0e0;
}

input:focus,
textarea:focus {
	outline: none;
	/* border-color: #667eea; */
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	/* transform: translateY(-2px); */
}

input:hover,
textarea:hover {
	/* border-color: #; */
}

textarea {
	resize: vertical;
	min-height: 5rem;
	font-family: inherit;
}

button {
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Open Sans", sans-serif;
	background: #00adb5;
	color: white;
	width: 50%;
	border: none;
	padding: 0.5rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	/* transition: all 0.3s ease; */
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0.8rem auto;
}

button:hover {
	box-shadow: 0 10px 25px rgba(107, 107, 107, 0.4);
}

/* footer {
    background: #222831;
    height: 12%;
    display: flex;
    flex-direction: row;
    color: #fff;
    font-size: 1rem;
}

.footer-container {
    width: 100%;
    margin: 1rem 1rem;
}

.contact_details {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 1rem 5rem;
}

footer .social-icons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
}

footer .social-icons img {
    height: 1.4rem;
    width: 1.4rem;
}

footer .social-icons #youtube_icon {
    position: relative;
    top: 3px;
    height: 1.5rem;
}

.copy-right_social-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin: 0rem 5rem; */
/* align-items: center;
} */

/* footer {
    background: #222831;
    display: flex;
    flex-direction: row;
    color: #fff;
    font-size: 0.5rem;
    margin-top: 2rem;
}

.footer-container {
    width: 100%;
    margin: 1rem;
}

.contact_details {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 1rem 2rem;
}

.contact_details .phone,
.address,
.mail {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
} */

/* .contact_details{
            display: flex;
            align-items: center;
            gap: 10px;
        } */

/* .copy-right_social-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin: 1rem 2rem;
}

footer .social-icons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
}

footer .social-icons img {
    height: 24px;
    width: 24px;
} */

/* Media Queries */
@media (max-width: 1024px) {
	.nav-desktop {
		display: none;
	}

	.nav-mobile {
		display: block;
	}

	.carousel_container {
		padding: 20px 15px;
	}

	.carousel .card {
		flex: 0 0 min(70em, 85vw);
	}
}

@media (max-width: 768px) {
	header {
		padding: 0rem 15px;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 60px;
		right: -25px;
		background: #222831;
		flex-direction: column;
		width: 200px;
		text-align: right;
		padding: 10px;
		border-radius: 0px 0px 10px 10px;
	}

	.nav-links.active {
		display: flex;
	}

	.hamburger {
		display: flex;
		margin: 30px;
	}

	.carousel_container {
		height: 70vh;
		padding: 15px 20px;
	}

	.carousel .card {
		flex: 0 0 95vw;
	}

	.carousel .card .hero-content h1 {
		font-size: 1.8rem;
	}

	.carousel .card .hero-content .line {
		font-size: 1rem;
	}

	.carousel::scroll-button(right),
	.carousel::scroll-button(left) {
		display: none;
	}

	.about_container .about_content {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.about_container .image {
		height: 320px;
		width: 350px;
	}

	.contact_container {
		flex-direction: column;
		margin: 1rem 10px;
		padding: 1.5rem;
	}

	.name-email,
	.phone-message {
		grid-template-columns: 1fr;
	}

	.message {
		grid-column: 1;
	}

	form button {
		width: 100%;
	}

	.copy-right_social-link {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
		text-align: center;
	}

	.contact_details {
		margin: 1rem;
	}
}

@media (max-width: 480px) {
	body {
		width: calc(100% - -265px);
		/* width: 100%; */
	}

	header .logo {
		height: 2rem;
	}
	
	header .logo a{
	    font-size: 2rem;
	}

	header {
		width: 100%;
		padding: 1.2rem 0rem;
	}

	header ul {
		gap: 1rem;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 49px;
		right: -30px;
		background: #222831;
		flex-direction: column;
		width: 200px;
		text-align: center;
		padding: 10px;
		/* margin-right: 2rem; */
		border-radius: 0px 0px 10px 10px;
	}

	.nav-links.active {
		display: flex;
	}

	.hamburger {
		display: flex;
		position: absolute;
		top: 5px;
		right: 20px;
		margin: 10px 0 0 0;
	}

	.dropdown-menu {
		padding: 0;
		position: absolute;
		top: 50px;
		left: -70px;
		gap: 0.5rem;
	}

	.dropdown-menu.active {
		display: block;
	}
	
	.industries-we-serve {
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
    }


	/* header .logo {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    header {
        width: 100%;
        padding: 1.5rem 0rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: -30px;
        background: #222831;
        flex-direction: column;
        width: 200px;
        text-align: center;
        padding: 10px;
        border-radius: 0px 0px 10px 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 5px;
        right: 20px;
    }

    .dropdown-menu{
         left: 0;
         padding: 5px;
         margin: 5px;
    }

    .dropdown-menu.active {
        display: block;
    } */

	.carousel {
		 width: calc(100% - 0px); 
		 
	}
	
	.carousel .card{
	    width: 100%;
	    height: 50%;
	}
	
	.carousel .card img{
	    width: 90%;
	    height: 90%;
	}

	.carousel_container {
	    margin-top: 0;
	    margin-bottom: 0;
	    margin-left: 5px;
	    width: 99%;
		/*height: 30%;*/
		padding: 10px 5px;
		background-size: cover;
		aspect-ratio: 16 / 9
		/*position: relative;*/
		/*top: 10px;*/
		/* auto adjusts height */
	}

	.carousel .card .hero-content h1 {
		font-size: 1.2rem;
		/* smaller heading */
		font-weight: 700;
	}

	.carousel .card .hero-content .line p {
		font-size: 1rem;
		font-weight: 600;
	}

	/* .features-line .features{
		position: relative;
		bottom: 2rem;
	} */

	#card2 .hero{
		position: relative;
		bottom: 4rem;
	}

	#card2 .hero-content h1{
		margin-bottom: 0.5rem;
	}

	.features-line .features li {
		font-size: 1rem;
		padding:0;
		margin: 0;
	}

	.line .features {
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 1rem;
		margin: 0;
		padding: 0;
	}

	/* Adjust card width for small screens */
	.carousel .card {
		flex: 0 0 100%;
		/* take almost full width */
	}

	.carousel::scroll-button(right),
	.carousel::scroll-button(left) {
		display: none;
	}

	.service_heading {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.service_heading h1 {
		display: inline-block;
		/* border-bottom: none; */
	}

	.cards-container .card {
		width: 80%;
		height: 80%;
	}

	.card-text-overlay {
		font-size: 0.8rem;
	}

	.card-title {
		font-size: 1rem;
		margin-bottom: 10px;
	}

	.read-more-btn {
		padding: 10px 10px;
		font-size: 0.8rem;
	}

	.about_container {
		gap: 15px;
	}

	.about_container .image {
		height: 320px;
		width: 490px;
	}
	
	.about_container .image img{
	    width: 100%;
	    height: 100%;
	}

	.about_content .content {
		min-width: 300px;
		padding: 0px 10px;
	}

	.about_content .content h2 {
		/*margin-left: 3rem;*/
	}

	.about_content .content p {
		font-size: 1.3rem;
		line-height: 1.5rem;
		padding: 0 2rem;
		margin-bottom: 2rem;
		/* height: 100%;  */
		text-align: justify;
	}

	.about_content .content strong {
		font-size: 1.3rem;
	}

	.contact_container {
		margin: 1rem 5px;
		padding: 1rem;
	}

	.contact_container .content {
		display: flex;
		/* align-items: center; */
		/* justify-content: center; */
		text-align: center;
		margin-bottom: 10px;
	}

	.contact_container .content h1 {
		font-size: 1.5 rem;
	}

	.contact_container .content h2 {
		font-size: 1.2rem;
	}

	.sector_heading {
		margin-top: 2rem;
	}
	
	.sector_heading {
	    display: flex;
	    flex-direction: row;
	    gap: 1rem;
	    align-items: start;
	    justify-content: start;
	    margin-bottom: 1rem;
    }

	.sector_heading h1{
		font-size: 2rem;
	}

	.sector_heading h2{
		font-size: 2rem;
	}

	.sectors_container {
		/*grid-template-columns: 1fr;*/
		/* padding: 10px; */
		width: 95%;
		padding: 5px;
		margin: 5px;
		-webkit-user-select: none; 
        -moz-user-select: none;    
        -ms-user-select: none;     
        user-select: none;         
	}
	


	.sectors_container .container {
		width: 70%;
	}

	.sectors_container .container .image img {
		height: 10rem;
		width: 20rem;
		/* padding: 6px; */
		border-radius: 10px 10px 0px 0px;
	}

	.sectors_container .container .content {
		height: 12.5rem;
	}

	.sectors_container .container .content h4 {
		font-size: 1.3rem;
	}

	.sectors_container .container .content p {
		font-size: 1.1rem;
		/*padding: 5px;*/
		margin: 5px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*About page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/* body{
    background: #e0e0e0;
    font-family: "Open Sans", sans-serif;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

p {
	font-size: 1rem;
	color: #000;
	line-height: 1.6;
	font-weight: 500;
	text-align: center;
}

li {
	line-height: 1.6;
	font-size: 1rem;
	font-weight: 500;
}

.about-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.about-us-container {
	background: #eeeeee;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80%;
	height: 100%;
	padding: 1rem 3rem 1rem 3rem;
}

/* .about-heading{
    background: url(img/about_us.jpg);
    width: 100%;
    padding: 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-heading h1{
    position: relative;
    display: inline-block;
    font-size: 3rem;
    z-index: 2;
    border-bottom: 3px solid #f7b500;
} */

.about-hero {
	position: relative;
	height: 30vh;
	width: 100%;
	background: url(../img/about-us/about_us.jpg) no-repeat center/cover;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* semi-transparent dark layer */
.about-hero::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0 */
	background: rgba(0, 0, 0, 0.5); /* black at 50% opacity */
	z-index: 0;
}

.about-hero h1 {
	display: inline-block;
	text-align: center;
	font-size: 40px;
	position: relative;
	z-index: 1; /* keep text above overlay */
	border-bottom: 3px solid #f7b500;

	/* background: linear-gradient(to right, #00d2ff, #928DAB); */
	background: #00adb5;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.Heading {
	display: flex;
	justify-content: center;
	text-align: center;
}

.Heading h2 {
	display: inline-block;
	margin: 1rem 1rem;
	border-bottom: 3px solid #f7b500;
}

.Content p {
	text-align: center;
}

.Content p ul li {
	text-align: center;
	font-size: 1.1rem;
}

.whoWeAre-container {
	display: flex;
	/* flex-wrap: wrap; */
	text-align: center;
	flex-direction: row;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	border: 5px solid #1b9de390;
}

.whoWeAre-container .image img {
	width: 22rem;
	height: 17rem;
	padding: 0.5rem;
	/* border-radius: 10px; */
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.whoWeAre-content p {
	text-align: justify;
	margin: 1rem 1rem;
}

.WhatWeDo-container {
	display: flex;
	/* flex-wrap: wrap; */
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 3rem;
	margin-bottom: 2rem;
	border: 5px solid #1b9de390;
}

.WhatWeDo-container .image img {
	width: 22rem;
	height: 17rem;
	padding: 0.5rem;
	/* border-radius: 12px; */
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.WhatWeDo-container .Content li {
	margin-left: 1.5rem;
	text-align: justify;
}

.WhatWeDo-content p {
	text-align: start;
}

.Mission-commitment {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
}

.Mission-container {
	/* background-color:rgba(81, 154, 255, 0.255); */
	text-align: center;
	background-color: #1b9de3c5;
	padding: 1rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	/* border-radius: 10px; */
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.Commitment-container {
	/* background-color:rgba(81, 154, 255, 0.255); */
	text-align: center;
	background-color: #1b9de3c5;
	padding: 1rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	/* border-radius: 10px; */
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.Content p {
	text-align: justify;
	padding: 0rem 1rem;
}

.WhyChoose-container {
	display: flex;
	justify-content: center;
	/* text-align: center; */
	width: 100%;
	/* background-color:rgba(81, 154, 255, 0.255); */
	background-color: #1b9de3c5;
	margin-top: 1.5rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	/* border-radius: 10px; */
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.Mission-container:hover {
	transform: translateY(-5px);
}

.Commitment-container:hover {
	transform: translateY(-5px);
}

.WhyChoose-container:hover {
	transform: translateY(-5px);
}

.WhyChoose-container ul {
	padding: 1rem;
}

.WhyChoose-container li {
	margin-left: 3.5rem;
}

.icon {
	display: flex;
	justify-content: center;
}

.icon img {
	width: 5rem;
	height: 5rem;
	margin: 1rem 1rem 0rem 1rem;
}

@media (max-width: 768px) {
	.about-us-container {
		width: 90%;
		padding: 0.5rem;
	}

	.whoWeAre-container,
	.WhatWeDo-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.Mission-commitment {
		flex-direction: column;
		align-items: stretch;
	}

	.WhatWeDo-container .Content li {
		margin-left: 1rem;
	}

	.Heading h2 {
		font-size: 1.4rem;
	}

	.icon img {
		width: 4rem;
		height: 4rem;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 0.9rem;
	}

	.hero {
		height: 20vh;
	}

	.hero h1 {
		font-size: 30px;
	}

	p,
	li {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.about-us-container {
		width: 95%;
		padding: 0.5rem;
	}

	.whoWeAre-container .image img,
	.WhatWeDo-container .image img {
		max-width: 100%;
		height: auto;
	}

	.Heading h2 {
		font-size: 1.2rem;
	}

	.icon img {
		width: 3.2rem;
		height: 3.2rem;
	}

	.WhyChoose-container li {
		margin-left: 1rem;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Product design and development page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.design-and-development-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.des-dev-overlay {
}

.des-dev-hero {
	position: relative;
	height: 20vh;
	width: 100%;
	background: url("../img/design&development/D&D.jpg") no-repeat center/cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.des-dev-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.des-dev-hero h1 {
	display: inline-block;
	text-align: center;
	/*font-size: 40px;*/
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #f7b500;

	/* background: linear-gradient(to right, #00d2ff, #928dab); */
	background: #00adb5;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.designNdevelopment-container {
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	/* align-items: center; */
	width: 80%;
	background: #eeeeee;
	padding: 1rem 3rem;
}

.des-dev-img-content {
	display: flex;
	flex-direction: row;
	border: 5px solid #1b9de390;
}

.des-dev-img-content img {
	width: 25rem;
	height: 20rem;
	padding: 0.5rem;
}

.des-dev-img-content .des-dev-content {
	/* display: flex; */
	/* flex-direction: column; */
	padding: 1rem;
}

.des-dev-content p {
	text-align: start;
}

.des-dev-img-content .des-dev-content h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin-bottom: 1rem;
}

.des-dev-img-content ul {
	list-style-position: inside;
	text-align: justify;
}

.des-dev-box-containers {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 2rem;
	/* flex: 1 1 30rem; */
	flex-wrap: wrap;
}

.des-dev-box-containers .box {
	flex: 1 1 45%;
	/* width: 20rem; */
	/* height: 30rem; */
	text-align: center;
	background-color: #1b9de3c5;
	padding: 2rem;
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
	/* border-right: 50px; */
}

.box .icon img{
	height: 5rem;
	width: 5rem;
	margin-bottom: 1rem;
}

.box {
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box:hover{
	transform: translateY(-5px);
}
.des-dev-box-containers .box h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	text-align: center;
}

.des-dev-box-containers .box p {
	padding-top: 1rem;
}

@media (max-width: 1024) {
	/* body{
        display: flex;
        flex-direction: column;
    } */

	.designNdevelopment-container {
		display: flex;
		flex-direction: column;
	}

	.des-dev-img-content {
		display: flex;
		flex-direction: column;
		/* border: 5px solid #1b9de390; */
	}
}

@media (max-width: 768px) {
	.hero {
		height: 25vh;
	}

	.hero h1 {
		font-size: 28px;
	}

	.designNdevelopment-container {
		width: 100%;
		padding: 2rem;
	}

	.des-dev-img-content {
		flex-direction: column;
		align-items: center;
		padding: 1rem;
		gap: 0.5rem;
		justify-content: center;
		gap: 0;
	}

	.des-dev-img-content .image {
		display: flex;
		justify-content: center;
		align-items: center;
		/* margin-right: 2rem; */
	}

	.img-content .image img {
	}

	.des-dev-img-content .des-dev-content {
		padding: 1rem 0;
		text-align: justify;
	}

	.des-dev-box-containers {
		flex-direction: column;
		/* gap: 1.5rem; */
		/* padding: 1rem 0; */
	}

	.des-dev-box-containers .box {
		flex: 1 1 100%;
	}
}

@media (max-width: 480px) {
	.hero {
		height: 20vh;
	}

	.hero h1 {
		font-size: 30px;
	}

	.designNdevelopment-container {
		width: 100%;
		padding: 0.5rem;
	}

	.des-dev-img-content {
		padding: 0;
	}

	.des-dev-img-content .image {
		width: 100%;
	}

	.des-dev-img-content .image img {
		width: 100%;
		height: auto;
		padding: 0.5rem 0.5rem;
		margin: 0;
	}

	.des-dev-img-content .des-dev-content {
		display: felx;
		flex-direction: column;
		padding: 0.5rem;
		text-align: justify;
	}

	.des-dev-box-containers {
		padding: 0.5rem 0rem 0rem 0rem;
		gap: 0.9rem;
		margin: 0;
	}

	.des-dev-box-containers .box {
		padding: 0.5rem;
		font-size: 1rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		/* clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%); */
		/* clip-path: none; */
	}

	.des-dev-box-containers .box h2 {
		font-size: 1.2rem;
		text-align: center;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Engineering analysis page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.engineering-analysis-main-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.eng-ana-hero {
	position: relative;
	height: 20vh;
	width: 100%;
	background: url(../img/engineering-analysis/engineering-analysis.jpg)
		no-repeat center/cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.eng-ana-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.eng-ana-hero h1 {
	display: inline-block;
	text-align: center;
	font-size: 30px;
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #f7b500;

	/* background: linear-gradient(to right, #00d2ff, #928dab); */
	background: #00adb5;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.img-content {
	display: flex;
	flex-direction: column;
	text-align: justify;
	justify-content: start;
	align-items: center;
	padding: 0.5rem;
	border: 5px solid #1b9de390;
	margin: 0.5rem 0rem;
}

.img-content .image img {
	width: 20rem;
	height: 15rem;
	/* padding: 0.5rem; */
}

.img-content .content {
	width: 18rem;
}

.img-content h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin-bottom: 1rem;
}

.Engineering-analysis-container {
	display: flex;
	flex-direction: row-reverse;
	/* justify-content: center; */
	/* align-items: center; */
	gap: 1rem;
	width: 80%;
	background: #eeeeee;
	padding: 1rem 3rem;
}

.eng-ana-box-containers {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	padding: 0.5rem;
	/* flex: 1 1 30rem; */
	flex-wrap: wrap;
}

.eng-ana-box-containers .box {
	width: 20rem;
	text-align: center;
	background-color: #1b9de3c5;
	padding: 2rem;
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
	/* border-right: 50px; */
}

.eng-ana-box-containers .box li {
	text-align: justify;
}

.box1 {
	flex: 1 90%;
}

.box2,
.box3 {
	flex: 1 1 45%;
}

.box4 {
	flex: 1 90%;
	/* height: 5rem; */
}

.box h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin-bottom: 1rem;
}

@media (max-width: 1024px) {
	body {
		display: flex;
		flex-direction: column;
	}

	.Engineering-analysis-container {
		display: flex;
		flex-direction: column;
	}

	.img-content {
		display: flex;
		/* flex-direction: row; */
	}

	.img-content .content {
		width: 100%;
	}

	.img-content .image img {
		width: 25rem;
		height: 20rem;
		margin: 0.5rem;
	}
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
	li {
		margin: 1rem;
		font-size: 1rem;
	}

	strong {
		font-size: 1rem;
	}

	.hero {
		height: 20vh;
	}

	.hero h1 {
		font-size: 22px;
		border-bottom-width: 2px;
	}

	h2 {
		font-size: 1.2rem;
		padding: 0;
	}

	p {
		font-size: 0.9rem;
	}

	.img-content {
		/* padding: 0.5rem; */
		margin: 0.5rem;
		font-size: 1rem;
	}

	.img-content .image {
		width: 100%;
	}

	.img-content .image img {
		width: 100%;
		height: auto;
		margin: 0rem;
	}

	.Engineering-analysis-container {
		padding: 0rem;
		margin: 0rem;
		width: 100%;
		gap: 0rem;
	}

	.eng-ana-box-containers .box {
		padding: 0.5rem;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Technical expertise page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.technical-expertise {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.tech-exp-box-containers h2 {
	text-align: center;
}

.technical-expertise p {
	font-size: 1rem;
	text-align: start;
}

.tech-exp-hero {
	position: relative;
	height: 30vh;
	width: 100%;
	background: url(../img/technical-expertise/technical-expertise.jpg) no-repeat
		center/cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tech-exp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.tech-exp-hero h1 {
	display: inline-block;
	/* text-align: center; */
	font-size: 40px;
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #f7b500;

	/* background: linear-gradient(to right, #00d2ff, #928dab); */
	background: #00adb5;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.technical-expertise-container {
	width: 80%;
	display: flex;
	flex-direction: column;
	background: #eeeeee;
	padding: 1rem 3rem;
}

.tech-exp-img-content {
	display: flex;
	flex-direction: row-reverse;
	align-items: start;
	justify-content: center;
	border: 5px solid #1b9de390;
}

.tech-exp-img-content .image img {
	width: 25rem;
	height: 20rem;
	padding: 0.5rem;
}

.tech-exp-img-content .tech-exp-content {
	padding: 1rem;
	/* text-align: justify; */
}

.tech-exp-img-content .tech-exp-content h2 {
	text-align: center;
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin-bottom: 1rem;
}

.tech-exp-box-containers {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 2rem;
	/* flex: 1 1 30rem; */
	flex-wrap: wrap;
}

.tech-exp-box-containers .box {
	flex: 1 1 45%;
	width: 25rem;
	/* height: 30rem; */
	/* text-align: justify; */
	background-color: #1b9de3c5;
	padding: 3rem;
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
	/* border-right: 50px; */
}

.tech-exp-box-containers .box h2 {
	/* text-align: center; */
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin: 0.5rem;
}

.box1,
.box2,
.box3,
.box4,
.box5,
.tech-exp-content h2 {
	text-align: center;
}

/* .box1{
    clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%);

}

.box2{
    clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%);

}

.box3{
    clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%);

}

.box4{
    clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%);

}

.box5{
    clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 0 100%);
    
} */

@media (max-width: 1024px) {
	.tech-exp-img-content {
		display: flex;
		flex-direction: column;
		padding: 0;
		gap: 0;
	}

	.tech-exp-img-content .image {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.box {
		/* clip-path: polygon(0 0, 70% 0, 100% 20%, 100% 100%, 0 100%); */
		padding: 0;
	}

	.box5 {
		/* clip-path: polygon(0 0, 86% 0, 100% 40%, 100% 100%, 0 100%); */
	}
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
	.tech-exp-hero {
		height: 20vh;
	}

	.tech-exp-hero h1 {
		font-size: 30px;
		border-bottom-width: 2px;
	}

	h2 {
		font-size: 1.2rem;
		padding: 0;
	}

	p {
		font-size: 1rem;
	}

	.technical-expertise-container {
		padding: 0.5rem;
		width: 100%;
	}

	.tech-exp-img-content .image {
		width: 100%;
	}

	.tech-exp-img-content .image img {
		width: 100%;
		/* width: 10rem;/ */
		/* height: 10rem; */
		height: auto;
	}

	.tech-exp-box-containers {
		padding: 0.5rem 0rem 0rem 0rem;
		gap: 0.9rem;
	}

	.tech-exp-box-containers .box {
		padding: 0rem;
		flex: 1 100%;
	}

	.tech-exp-box-containers .box p {
		padding: 1rem;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*Industry specific page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.industry-specific {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.ind-spec-hero {
	position: relative;
	height: 30vh;
	width: 100%;
	background: url(../img/industry-specific/industry-specific3.jpg) no-repeat
		center/cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ind-spec-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.ind-spec-hero h1 {
	display: inline-block;
	text-align: center;
	font-size: 40px;
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #f7b500;

	/* background: linear-gradient(to right, #00d2ff, #928dab); */
	background: #00adb5;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.industry-specific-container {
	width: 80%;
	display: flex;
	flex-direction: row;
	background: #eeeeee;
	padding: 1rem 3rem;
}

.industry-specific-container p {
	text-align: start;
}

.ind-spec-content h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	margin-bottom: 1rem;
	text-align: center;
}

.ind-spec-img-content {
	display: flex;
	flex-direction: column;
	width: 60%;
	height: 70%;
	/* align-items: start; */
	/* justify-content: center; */
	border: 5px solid #1b9de390;
}

.ind-spec-img-content img {
	padding: 0.5rem;
	width: 25rem;
	height: 16rem;
}

/* .image img {
	width: 20rem;
	height: 15rem;
	padding: 0.5rem;
} */

.ind-spec-img-content .ind-spec-content {
	padding: 0rem 1rem 1rem 1rem;
	/* width: 60%; */
}

.ind-spec-box-containers {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	/* padding: 2rem; */
	padding-left: 2rem;
	/* flex: 1 1 30rem; */
	flex-wrap: wrap;
}

.ind-spec-box-containers .box {
	flex: 1 1 45%;
	display: flex;
	/* justify-content: center; */
	align-items: center;
	flex-direction: column;
	width: 25rem;
	/* height: 30rem; */
	/* text-align: justify; */
	background-color: #1b9de3c5;
	padding: 2rem;
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
	/* border-right: 50px; */
}

.box1,
.box2 {
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
}

.box3 {
	/* clip-path: polygon(0 0, 92% 0, 100% 35%, 100% 100%, 0 100%); */
}

@media (max-width: 1024px) {
	.industry-specific-container {
		width: 90%;
		flex-direction: column;
		padding: 1rem;
	}

	.ind-spec-img-content {
		width: 100%;
		margin-bottom: 2rem;
	}

	.image img {
		width: 100%;
		height: auto;
	}

	.ind-spec-box-containers {
		padding-left: 0;
		gap: 1.5rem;
	}

	.ind-spec-box-containers .box {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.ind-spec-hero {
		height: 25vh;
	}

	.ind-spec-hero h1 {
		font-size: 28px;
	}

	p {
		font-size: 0.95rem;
	}

	.industry-specific-container {
		width: 95%;
		padding: 1rem;
	}

	.ind-spec-box-containers {
		flex-direction: column;
		gap: 1rem;
	}

	.ind-spec-box-containers .box {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.hero {
		height: 20vh;
	}

	.hero h1 {
		font-size: 22px;
		border-bottom-width: 2px;
	}

	h2 {
		font-size: 1.2rem;
	}

	p {
		font-size: 0.9rem;
	}

	.industry-specific-container {
		width: 100%;
		padding: 0.5rem;
	}

	.ind-spec-img-content {
		margin-bottom: 0.5rem;
	}

	.image img {
		width: 100%;
		height: auto;
	}
	
	.ind-spec-img-content img {
	padding: 0.5rem;
	width: 100%;
	height: 100%;
    }


	.ind-spec-box-containers {
		gap: 0.9rem;
	}

	.ind-spec-box-containers .box {
		padding: 0.5rem;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* confidentiality and client page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.confidentiality-client {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.con-cli-hero {
	position: relative;
	height: 30vh;
	width: 100%;
	background: url(../img/confidentiality&client/confidentiality\ and\ collaborative\ partnership1.jpg)
		no-repeat center/cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.con-cli-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.con-cli-hero h1 {
	display: inline-block;
	text-align: center;
	font-size: 40px;
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #f7b500;

	background: #00adb5;
	/* background: linear-gradient(to right, #00d2ff, #928dab); */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; /* for Firefox */
	color: transparent;
}

.confidentiality-client-container {
	width: 80%;
	display: flex;
	flex-direction: column;
	background: #eeeeee;
	padding: 1rem 3rem;
}

.con-cli-box-container0 {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

.con-cli-box-container0 .box1 {
	padding: 0.5rem;
	background-color: #1b9de3c5;
}

.con-cli-img-content {
	width: 140rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: 5px solid #1b9de390;
}

.con-cli-img-content .image {
	height: 100%;
	display: flex;
	align-items: center;
}

.con-cli-img-content .image img {
	width: 20rem;
	height: 15rem;
	padding: 0.5rem;
}

.con-cli-img-content .con-cli-content {
	padding: 0.5rem;
	/* margin: 2.5rem 0rem; */
}

/* .img-content .content h2{
    display: inline-block;
    border-bottom: 3px solid #f7b500;
    margin-bottom: 1rem;
} */

.con-cli-content h2 {
	display: inline-block;
	border-bottom: 3px solid #f7b500;
	text-align: center;
	margin-bottom: 1rem;
}

.con-cli-box-containers {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 2rem;
	/* flex: 1 1 30rem; */
	flex-wrap: wrap;
}

.con-cli-box-containers .box {
	flex: 1 1 45%;
	width: 25rem;
	/* height: 30rem; */
	text-align: center;
	background-color: #1b9de3c5;
	padding: 3rem;
	/* clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%); */
	/* border-right: 50px; */
}

@media (max-width: 1024px) {
	.confidentiality-client-container {
	}

	.con-cli-img-content {
		display: flex;
		flex-direction: column;
	}

	.con-cli-img-content .image {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.con-cli-img-content .image img {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
	.con-cli-hero {
		height: 20vh;
	}

	.con-cli-hero h1 {
		font-size: 22px;
		border-bottom-width: 2px;
	}

	h2 {
		font-size: 1.5rem;
		padding: 0;
	}

	p {
		font-size: 1rem;
	}

	.con-cli-img-content{
		width: 100%;
	}

	.confidentiality-client-container {
		padding: 0.5rem;
		width: 100%;
		margin: 0;
		padding: 0.5rem;
	}

	.con-cli-img-content .image {
		/* width: 100%; */
	}

	.con-cli-img-content .image img {
		/* width: 100%; */
		/*width: 20rem;*/
		height: 20rem;
		height: auto;
	}

	.con-cli-box-container0 {
		display: flex;
		flex-direction: column;
	}

	.con-cli-box-containers {
		padding: 0.5rem 0rem 0rem 0rem;
		gap: 0.9rem;
	}

	.con-cli-box-containers .box {
		padding: 0.5rem;
		flex: 1 100%;
	}

	.con-cli-box-containers .box p {
		/* padding: 1rem; */
	}
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  Login page CSS part*/
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.login-main-container {
	background: url(../img/login/login-cover.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
}

.login-container {
	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: center; */
	/* align-items: center; */
	padding: 30px;
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 350px;
	text-align: center;
	background-color: #f9f7f7;
}

.login-container form {
	display: flex;
	flex-direction: column;
	padding: 5px;
}

.login-container .login-form {
	background: #f9f7f7;
	box-shadow: none;
}

.login-container h2 {
	margin-bottom: 20px;
	color: #000;
}

.login-container label {
	display: block;
	text-align: left;
	/* margin-bottom: 5px; */
	font-weight: bold;
	color: #000;
	font-size: 14px;
}

.login-container input {
	width: 100%;
	padding: 7px;
	margin-bottom: 5px;
	border: 1.5px solid #000;
	/* border: none; */
	border-radius: 8px;
	font-size: 14px;
}

.login-container button {
	/* font-family: "Montserrat", sans-serif; */
	width: 70%;
	padding: 5px 10px;
	margin-top: 5px;
	position: relative;
	/* left: 50px; */
	background-color: #009aa2;
	color: #fff;
	border: none;
	border-radius: 8px;
	border: 1px solid #000;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

.login-container button:hover {
	/* background: #459f49; */
	/* background-color: #004a99; */
	/* border: 1px solid #00ADB5; */
	transform: scale(1.01);
}

.login-container .links {
	margin-top: 15px;
}

.login-container .links a {
	text-decoration: none;
	color: #007bff;
	font-size: 14px;
	margin: 0 5px;
}

.login-container span {
	border-left: 1px solid #000;
	margin-right: 5px;
}

.login-container .links a:hover {
	text-decoration: underline;
}
