html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline dotted;
}

table {
	border-collapse: collapse;
}

caption {
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}

/* fonts */
html,
body {
	scroll-behavior: smooth;
	font-family: 'avenir_lt_std45_book';
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
}

a {
	text-decoration: none;
}

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

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 5, 2025 */


@font-face {
	font-family: 'avenir_lt_std95_black';
	src: url('../fonts/avenir_lt_std_95_black-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_95_black-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'avenir_lt_std85_heavy';
	src: url('../fonts/avenir_lt_std_85_heavy-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_85_heavy-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}


@font-face {
	font-family: 'avenir_lt_std65_medium';
	src: url('../fonts/avenir_lt_std_65_medium-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_65_medium-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'avenir_lt_std55_roman';
	src: url('../fonts/avenir_lt_std_55_roman-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_55_roman-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}


@font-face {
	font-family: 'avenir_lt_std45_book';
	src: url('../fonts/avenir_lt_std_45_book-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_45_book-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}


@font-face {
	font-family: 'avenir_lt_std35_light';
	src: url('../fonts/avenir_lt_std_35_light-webfont.woff2') format('woff2'),
		url('../fonts/avenir_lt_std_35_light-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

/* Container */
.container {
	width: 1600px;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

/* Header Base */

.site-header.scrolled {
	position: fixed;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 999;
	left: 0;
	right: 0;
}

.site-header .header-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 80px;
}


.logo {
	flex: 0 0 200px;
	max-width: 200px;
	height: 82px;
}

.logo a,
.logo a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Desktop Nav */
.site-nav {
	position: static;
	height: auto;
	background: transparent;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav ul li a {
	color: #2c2c2c;
	font-weight: 500;
	font-family: 'avenir_lt_std65_medium';
	text-decoration: none;
	transition: color 0.3s;
	font-size: 16px;
}

.about-us .site-nav ul li a,
.site-header.scrolled .site-nav ul li a {
	color: #2c2c2c;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
	color: #1F5EA3 !important;
}

/* Hamburger (hidden on desktop) */
.menu-toggle,
.close-btn {
	display: none;
}


/* Dropdown wrapper */
.site-nav ul li {
	position: relative;
}

/* Parent link with chevron */
.site-nav .dropdown>.parent-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

/* Chevron style */
.site-nav .dropdown>.parent-link i {
	transition: transform 0.3s ease;
	font-size: 0.8rem;
}

/* Dropdown menu hidden */
.site-nav .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: 6px;
	padding: 8px 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	z-index: 999;
}

/* Dropdown menu items */
.site-nav .dropdown-menu li a {
	display: block;
	padding: 10px 15px;
	color: #000;
	text-decoration: none;
	transition: background 0.3s;
}


/* Hover effect (desktop) */
.site-nav .dropdown:hover>.dropdown-menu {
	display: block;
}

.site-nav .dropdown:hover>.parent-link i {
	transform: rotate(180deg);
}

/* Mobile toggle with .open class */
.site-nav .dropdown.open>.dropdown-menu {
	display: block;
}

.site-nav .dropdown.open>.parent-link i {
	transform: rotate(180deg);
}


.hero-banner {
	position: relative;
	width: 100%;
	height: 810px;
	/* Adjust height */
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* makes video behave like background-size: cover */
	z-index: 1;
}

.about-us-banner,
.services-banner,
.capabilities-banner,
.contact-banner,.projects-banner  {
	height: 810px;
	width: 100%;
	background-image: url(../images/about-banner-2.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.services-banner {
	background-image: url(../images/services-banner.webp);
}

.projects-banner {
	background-image: url(../images/projects-banner-new1.webp);
}

.capabilities-banner {
	background-image: url(../images/expertise-bg2.jpg);
}

.contact-banner {
	background-image: url(../images/contact-banner.webp);
}

.hero-content {
	position: absolute;
	bottom: 12%;
	/* Move text up/down */
	left: 5%;
	/* Move text left/right */
	z-index: 2;
	color: #fff;
}

.hero-content h1 {
	font-family: 'avenir_lt_std95_black';
	font-size: 70px;
	line-height: 82px;
	text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

.hm-services-block {
	padding: 70px 0;
}

.hm-services-section {
	display: flex;
	justify-content: center;
	gap: 24px;
	text-align: center;
	flex-wrap: wrap;
}

.hm-services-section .service-box {
	flex: 0 0 23%;
	max-width: 23%;
}

.hm-services-section .image-wrap {
	width: 280px;
	height: 280px;
	margin: 0 auto 20px;
	position: relative;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	overflow: hidden;
	z-index: 9;
	padding: 0;
	background: #fff;
}

.image-outer {
	position: relative;
}

/* Blue top shape */
.image-outer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: rotate(45deg);
    width: 94px;
    height: 94px;
    z-index: 2;
    border-left: 8px solid #1F5EA3;
    border-top: 8px solid #1F5EA3;
    margin: 0 auto;
}

/* Image inside diamond */
.hm-services-section .image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

/* Hover zoom */
.hm-services-section .image-wrap:hover img {
	transform: scale(1.05);
}

.hm-services-section h3 {
	margin-bottom: 10px;
	font-size: 24px;
	color: #232323;
	font-weight: 600;
}

.hm-services-section p {
	font-size: 16px;
	line-height: 24px;
	color: #232323;
	max-width: 280px;
	margin: 0 auto;
}

/* CTA button */
.hm-services-section .cta-wrap {
	width: 100%;
	margin-top: 40px;
	text-align: center;
}

.hm-services-section .cta-btn {
	background: #e62929;
	color: #fff;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.hm-services-section .cta-btn:hover {
	background: #c91f1f;
}


.drts-section {
	padding: 80px 0;
}

.director-container {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding: 40px 0;
}

.director-card {
	position: relative;
	flex: 0 0 47%;
	max-width: 47%;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
}

.director-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

/* Overlay */
.director-overlay {
	position: absolute;
	left: 0;
	bottom: -100%;
	/* Hidden below the card */
	width: 100%;
	height: 100%;
	background: rgb(30 94 163 / 90%);
	color: #fff;
	padding: 30px;
	transition: all 0.4s ease;
	/* Smooth fade-up */
	opacity: 0;
}

/* Hover effect */
.director-card:hover .director-overlay {
	bottom: 0;
	/* Slide up */
	opacity: 1;
	/* Fade in */
}

.director-overlay h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
}

.director-overlay p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 16px;
}


.empowering-section {
	padding: 120px 0;
}

.empowering-block {
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	flex-wrap: wrap;
}

/* IMAGE AREA */
.empowering-images {
	position: relative;
	width: 50%;
	min-width: 350px;
}

.empowering-big-image {
	position: relative;
	/* outline: 3px solid #e84b4b; */
	border-radius: 10px;
	width: 480px;
	z-index: 9;
	padding: 6px;
}

.empowering-big-image::before {
	content: "";
	position: absolute;
	top: -12px;
	left: -12px;
	width: 120px;
	height: 120px;
	background: #fff;
	z-index: -1;
	border-left: 6px solid #1F5EA3;
	border-top: 6px solid #1F5EA3;
	border-radius: 4px;
}

.empowering-big-image img {
	width: 100%;
	display: block;
}

/* Decorative Blue Corners */
.empowering-corner {
	position: absolute;
	width: 60px;
	height: 6px;
	background: #1f5fa8;
}

.empowering-corner.top-left {
	top: -20px;
	left: 0;
}

.empowering-corner.bottom-right {
	right: 0;
	bottom: -20px;
}

/* Small overlapping image */
.empowering-small-image {
	position: absolute;
	bottom: 12%;
	right: 14%;
	width: 280px;
	/* border: 3px solid #e84b4b; */
	border-radius: 10px;
	background: #fff;
	z-index: 9;
}

.empowering-small-image::after {
	content: "";
	position: absolute;
	bottom: -18px;
	right: -18px;
	width: 100px;
	height: 100px;
	background: transparent;
	z-index: -1;
	border-right: 6px solid #1F5EA3;
	border-bottom: 6px solid #1F5EA3;
	border-radius: 4px;
}

.empowering-small-image img {
	width: 100%;
	display: block;
}

/* TEXT AREA */
.empowering-text {
	width: 45%;
	min-width: 330px;
}

.empowering-text h2 {
	font-size: 52px;
	font-weight: 700;
	color: #1f5fa8;
	line-height: 1.3;
	margin-bottom: 32px;
}

.empowering-text p {
	font-size: 18px;
	font-family: 'avenir_lt_std65_medium';
	color: #2E2E2E;
	line-height: 1.7;
}


.safety-section {
	padding: 80px 0;
	text-align: center;
}


.safety-section h2 {
	font-size: 42px;
	color: #1b4f9c;
	margin-bottom: 24px;
	font-weight: 700;
}

.safety-text {
	font-size: 16px;
	font-family: 'avenir_lt_std65_medium';
	color: #2E2E2E;
	line-height: 1.7;
	max-width: 60%;
	margin: 0 auto 64px;
}

.certificates-row {
	display: flex;
	justify-content: center;
	gap: 42px;
	flex-wrap: wrap;
}

.cert-card {
	flex: 0 0 360px;
	max-width: 360px;
	background: #fff;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.cert-card img {
	width: 100%;
	display: block;
	border-radius: 8px;
}


.blue-info-section {
	background: #1f5fa8;
	/* blue background */
	padding: 80px 0;
}

.blue-info-list {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	width: 88%;
}

.blue-info-box {
	flex: 0 0 28%;
	max-width: 28%;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.blue-info-box p {
	font-size: 16px;
	color: #fff;
	font-family: 'avenir_lt_std65_medium';
	line-height: 1.7;
}

.info-icon {
	width: 96px;
	height: 96px;
	margin: 0 auto 24px;
	height: auto;
}


.services-main {
	padding: 80px 0;
}

.services-hd p {
	text-align: center;
	font-size: 20px;
	line-height: 1.6;
	color: #232323;
	font-family: 'avenir_lt_std65_medium';
	width: 800px;
	margin: 40px auto;
	position: relative;
}

.services-hd p:before {
	content: '';
	position: absolute;
	left: -52px;
	top: -52px;
	width: 84px;
	height: 100%;
	background-image: url(../images/service-hd-before.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 0.1;
}

/* FLEX block */
.solution-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	margin: 64px 0 114px;
}

.solution-block:last-child {
	margin-bottom: 60px;
}

/* Auto reverse every even block */
.solution-block:nth-child(even) {
	flex-direction: row-reverse;
}

/* LEFT (Title + Small Description) */
.solution-left {
	flex: 0 0 46%;
	max-width: 46%;
	min-height: 554px;
}

.solution-right {
	flex: 0 0 50%;
	max-width: 50%;
	min-height: 554px;
}

.solution-left {
	display: flex;
	align-items: center;
	padding: 0 0 0 14%;
	position: relative;
	gap: 60px;
}

.solution-cnt {
	flex: 0 0 44%;
}

.solution-left h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 42px;
	color: #1F5EA3;
	display: inline-block;
}

.solution-left p {
	font-size: 18px;
	line-height: 1.6;
	color: #232323;
	font-family: 'avenir_lt_std65_medium';
}

.solution-img {
	width: 380px;
	overflow: hidden;
	position: absolute;
	right: -26%;
	top: 60px;
	z-index: 9;
}

.solution-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* RIGHT (Blue Big Text Box) */
.blue-box {
	background: #1F5EA3;
	color: #fff;
	padding: 46px 50px;
	border-radius: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.blue-box p {
    width: 58%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
}

.dots {
	position: absolute;
	top: -36px;
	left: 0px;
	width: 200px;
	height: 224px;
	background-image: url(../images/dots-img.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.solution-block:nth-child(even) .dots {
	bottom: -54px;
	right: 28px;
	top: auto;
	left: auto;
}

.solution-block:nth-child(even) .solution-left {
	padding: 0 14% 0 0;
	flex-direction: row-reverse;
}

.solution-block:nth-child(even) .solution-img {
	left: -26%;
}


.projects-section {
	padding: 80px 0;
}

.projects-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 42px;
	width: 90%;
	margin: 0 auto;
}

.projects-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.projects-item img {
	width: 100%;
	display: block;
	border-radius: 10px;
	transition: transform 0.4s ease;
}

.projects-item:hover img {
	transform: scale(1.05);
}

.projects-item .overlay {
	position: absolute;
	inset: 0;
	background: rgb(30 94 163 / 80%);
	display: flex;
	justify-content: start;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.projects-item:hover .overlay {
	opacity: 1;
}

.projects-item .overlay p {
	color: #fff;
	font-size: 16px;
	font-family: 'avenir_lt_std65_medium';
	line-height: 1.5;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
}

.projects-item:hover .overlay p {
	opacity: 1;
	transform: translateY(0);
}


.service-section,
.contact-section,
.get-in-touch-section,
.contact-company {
	padding: 60px 0;
}

.sec-hdng {
	margin-bottom: 40px;
	text-align: center;
}

.sec-tp {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.sec-tp span {
	border: none;
	color: #1E5EA3;
	font-size: 36px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
}

.sec-hdng h2 {
	font-size: 54px;
	line-height: 64px;
	font-weight: 700;
	color: #1E5EA3;
	letter-spacing: 1px;
	margin-bottom: 24px;
}

.sec-hdng p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	color: #000;
	width: 60%;
	margin: 0 auto 16px;
}

.excellence-image {
	width: 100%;
	height: 580px;
	margin: 40px 0 0;
}

.excellence-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.capabilities-section {
	padding: 80px 0;
}

.explore-section {
	width: 100%;
}

.explore-wrapper {
	background-color: #1F5EA3;
	width: 80%;
	padding: 40px 10%;
	min-height: 630px;
	position: relative;
	display: flex;
	align-items: center;
	margin: 80px 0 120px 0;
}

.explore-wrapper:first-child {
	margin-top: 0;
}

.explore-block {
	width: 62%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.explore-left h4 {
	font-size: 48px;
	line-height: 62px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 48px;
}

.explore-left p,
.explore-cnt-lst {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #fff;
	width: 54%;
}

.explore-cnt-lst {
	margin: 16px 0;
}

.explore-cnt-lst h6 {
	font-weight: 600;
}

.explore-cnt-lst {
	width: 100%;
}

.explore-cnt-lst p {
	width: 90%;
}

.explore-wrapper:nth-child(2n) h4 {
	margin-bottom: 24px;
}

.explore-right {
	position: absolute;
	right: -18%;
	top: 70px;
	width: 750px;
}

.explore-wrapper:nth-child(2n) {
	flex-direction: row-reverse;
	margin-left: auto;
}

.explore-wrapper:nth-child(2n) .explore-right {
	left: -18%;
}


.services {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	padding: 36px 0;
	text-align: center;
	gap: 32px;
	width: 75%;
	margin: 0 auto;
}

.service {
	flex: 0 0 28%;
	max-width: 28%;
}

.service-icon {
	width: 72px;
	margin: 0 auto 24px;
}

.service i {
	font-size: 60px;
	color: #999;
	margin-bottom: 20px;
}

.service h3 {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-bottom: 10px;
}

.service p {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	margin-bottom: 20px;
}

.explore-btn {
	padding: 8px 24px;
	border: 1px solid #000;
	background: transparent;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
	margin: 0 auto;
	display: block;
	transition: .3s all ease;
}

.explore-btn:hover {
	background-color: #000;
	color: #fff;
}

.locations-section {
	padding: 60px 0;
	background-color: #1F5EA3;
}


.logo-slider {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	width: 100%;
	background: #fff;
	padding: 70px 0;
}

.logo-track {
	display: inline-flex;
	animation: scroll 50s linear infinite;
	padding: 48px 0;
}

.logo-track:hover {
	animation-play-state: paused;
}

.p-logo {
	flex: 0 0 auto;
	margin: 0 40px;
}

.p-logo img {
	max-height: 60px;
	width: auto;
	display: block;
	transition: transform 0.3s ease;
}

.p-logo img:hover {
	transform: scale(1.1);
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}


/* Contact Section */
.contact-block {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: #fff;
	width: 90%;
	margin: 0 auto;
}

.contact-box {
	flex: 0 0 32%;
	max-width: 32%;
	padding: 16px;
}

.contact-box .icon {
	font-size: 42px;
	color: #333;
	margin-bottom: 15px;
	display: block;
}

.contact-box h3 {
	font-size: 36px;
	font-weight: 300;
	color: #000;
	margin: 14px 0;
}

.contact-box p {
	margin-bottom: 16px;
}

.contact-box a,
.get-in-touch-section .contact-box p {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
}

.contact-box a {
	font-family: 'avenir_lt_std65_medium';
}

.contact-box a:hover {
	color: #1F5EA3;
}


.footer-section {
	padding: 60px;
	background-color: #1F5EA32C;
}

/* Footer */
.footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 14px;
}

.footer-left {
	flex: 0 0 40%;
	max-width: 40%;
}

.footer-right {
	flex: 0 0 54%;
	max-width: 54%;
}


.footer-logo {
	max-width: 172px;
	margin-bottom: 36px;
}

.footer-left p {
	margin: 16px 0 24px;
	font-size: 18px;
	font-family: 'avenir_lt_std65_medium';
}

.footer-left .t-p a {
	color: #000;
	text-decoration: none;
	margin: 0 12px;
	font-size: 18px;
	font-weight: 400;
}


.footer-left .t-p a:first-child {
	margin-left: 0;
}

.footer-right {
	display: flex;
	gap: 100px;
	flex-wrap: wrap;
	justify-content: right;
	margin-right: 5%;
}

.quick-links h4,
.social-links h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 32px;
}

.quick-links ul,
.social-links ul {
	list-style: none;
	padding: 0;
}

.quick-links li,
.social-links li {
	margin: 20px 0;
}

.quick-links a,
.social-links a {
	text-decoration: none;
	font-family: 'avenir_lt_std65_medium';
	font-size: 16px;
	font-weight: 400;
	color: #000;
	display: flex;
	gap: 8px;
	align-items: center;
	transition: 0.3s all ease;
}


.quick-links a:hover,
.social-links a:hover {
	transform: translateY(-3px);
	color: #1F5EA3;
}

.social-links a:hover i {
	color: #1F5EA3;
}

.social-links i {
	font-size: 24px;
	margin-right: 6px;
	color: #000;
	display: block;
}


.contact-touch {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	padding: 40px 0;
}

/* Left Info */
.contact-info {
	flex: 0 0 36%;
	max-width: 36%;
}

.contact-info h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #000;
}

.contact-info p {
	margin-bottom: 48px;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.contact-info ul {
	list-style: none;
	padding: 0;
}

.contact-info ul li {
	margin-bottom: 24px;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.contact-info ul li i {
	margin-right: 16px;
	color: #555;
	font-size: 20px;
}

.contact-info ul li a {
	text-decoration: underline;
	color: #000;
}

/* Right Form */
.career-contact-form {
	flex: 0 0 54%;
	max-width: 54%;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 4px;
	font-size: 16px;
	color: #000;
	font-family: 'avenir_lt_std65_medium';
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 1px solid #cfcfcf;
	font-size: 14px;
	border-radius: 4px;
	min-height: 48px;
}

.form-group select {
	margin-bottom: 24px;
	outline: none;
	background-color: #fff;
}

.form-group select:focus,
.form-group textarea:focus,
.form-group.checkbox input:focus {
	outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #1F5EA3;
	outline: none;
}

.form-group textarea {
	resize: none;
	min-height: 220px;
}

.form-group.checkbox {
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 15px 0;
}

.form-group.checkbox label {
	margin-bottom: 0;
}

.form-group.checkbox input {
	width: 20px;
	accent-color: #1F5EA3;
}

.submit-btn {
	background: #000;
	color: #fff;
	padding: 16px 52px;
	border: none;
	font-size: 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.3s ease;
}

.submit-btn:hover {
	background: #333;
}

.get-in-touch-section .hdng,
.locations-section .hdng,
.contact-company .hdng {
	text-align: center;
}

.get-in-touch-section .hdng h2,
.locations-section .hdng h2,
.contact-company .hdng h2 {
	font-size: 36px;
	color: #000;
	font-weight: 400;
	margin-bottom: 12px;
	letter-spacing: 1px;
}

.get-in-touch-section .hdng h2 {
	font-weight: 600;
}

.contact-company .hdng h2 {
	color: #1E5EA3;
	font-weight: 700;
}

.get-in-touch-section .hdng p,
.locations-section .hdng p,
.contact-company .hdng p {
	font-size: 18px;
	color: #000;
	font-weight: 400;
	margin-bottom: 8px;
}

.locations-section .hdng p,
.locations-section .hdng h2 {
	color: #fff;
}

.locations-section .hdng h2 {
	font-weight: 700;
}

.get-in-touch-section .contact-block .contact-box {
	text-align: center;
}

.get-in-touch-section .contact-block .contact-box i {
	margin-bottom: 42px;
}

.get-in-touch-section .contact-block {
	width: 80%;
	margin: 48px auto 0;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.location-item {
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	border-radius: 4px;
	flex: 1;
}

.location-item iframe {
	width: 100%;
	height: 250px;
	border: 0;
}

.location-item h2 {
	margin: 20px 0 10px;
	font-size: 22px;
	font-weight: bold;
}

.location-item p {
	font-size: 15px;
	line-height: 1.6;
	color: #232323;
	display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 12px;
	font-family: 'avenir_lt_std65_medium';
	text-align: left;
}


.location-item {
   background: #fff;
   border-radius: 8px;
   padding: 25px;
   box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.office-label {
    display: block;
    background: #1a4b8c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    width: max-content;
}


.address-info p i {
   color: #1a4b8c;
   margin-top: 4px;
   min-width: 16px;
}

.address-info a {
   color: #232323;
   text-decoration: none;
}

.address-info a:hover {
   text-decoration: underline;
   color: #1a4b8c;
}







.company-contact-form {
	width: 54%;
	margin: 42px auto;
}

.company-contact-form .submit-btn {
	margin: 0 auto;
	display: block;
	background-color: #1F5EA3;
}

/* ============================================
   DIRECTORS MESSAGE SECTION - CSS
============================================ */

/* Section Container */
.message-section {
	position: relative;
	display: flex;
	align-items: center;
	padding: 78px 0;
	overflow: hidden;
}

.message-section.alt-bg {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Background Decorative Elements */
.bg-shape {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	border-radius: 50%;
}

.bg-shape-1 {
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #1F5EA3 0%, #0a2d5a 100%);
	top: -200px;
	left: -200px;
	opacity: 0.05;
}

.bg-shape-2 {
	width: 400px;
	height: 400px;
	background: #d4a853;
	bottom: -100px;
	right: -100px;
	opacity: 0.08;
}

.message-section.alt-bg .bg-shape-1 {
	background: #d4a853;
	right: -200px;
	left: auto;
	top: auto;
	bottom: -200px;
}

.message-section.alt-bg .bg-shape-2 {
	background: #1F5EA3;
	left: -100px;
	right: auto;
	top: -100px;
	bottom: auto;
}

.bg-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.03;
	background-image:
		linear-gradient(#1F5EA3 1px, transparent 1px),
		linear-gradient(90deg, #1F5EA3 1px, transparent 1px);
	background-size: 80px 80px;
}

/* Main Layout */
.message-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 90%;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.message-wrapper.reverse {
	direction: rtl;
}

.message-wrapper.reverse>* {
	direction: ltr;
}

.message-wrapper.reverse .image-side {
	margin-left: 72px;
}

/* Image Side */
.image-side {
	position: relative;
	margin-top: 10%;
	margin-left: 5%;
}

.image-container {
	position: relative;
	display: inline-block;
}

/* Floating Frame */
.floating-frame {
	position: absolute;
	top: -20px;
	left: -20px;
	right: 20px;
	bottom: 20px;
	border: 2px solid #d4a853;
	border-radius: 20px;
	z-index: 1;
}

.image-main {
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(26, 75, 140, 0.25);
}

.director-photo {
	width: 100%;
	max-width: 420px;
	height: 500px;
	object-fit: cover;
	object-position: top center;
	display: block;
}

/* Name Card - Floating */
.name-card {
	position: absolute;
	bottom: -24px;
	right: -90px;
	background: #1F5EA3;
	padding: 25px 35px;
	border-radius: 16px;
	color: #ffffff;
	z-index: 3;
	box-shadow: 0 20px 40px rgba(26, 75, 140, 0.3);
	min-width: 220px;
}


.director-name {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

.director-title {
	font-size: 14px;
	opacity: 0.85;
	font-weight: 400;
}

.director-company {
	font-size: 12px;
	opacity: 0.65;
	margin-top: 3px;
}

/* Quote Badge */
.quote-badge {
	position: absolute;
	top: 30px;
	right: -15px;
	width: 60px;
	height: 60px;
	background: #d4a853;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.quote-badge svg {
	width: 28px;
	height: 28px;
	fill: #ffffff;
}

/* Content Side */
.content-side {
	position: relative;
}

.label-hdng {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.label-hdng .label-line {
	width: 40px;
	height: 2px;
	background: #d4a853;
}

.label-hdng .label-text {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #d4a853;
}

.section-title {
	font-size: 36px;
	font-weight: 600;
	color: #1F5EA3;
	line-height: 1.2;
	margin-bottom: 54px;
	text-align: center;
}

/* Content Text */
.content-text {
	position: relative;
}

.paragraph {
	font-size: 16px;
	line-height: 24px;
	color: #232323;
	margin-bottom: 20px;
	text-align: justify;
}

.paragraph:last-child {
	margin-bottom: 0;
}

/* Highlight Quote */
.highlight-quote {
	background: linear-gradient(135deg, rgba(26, 75, 140, 0.05) 0%, rgba(26, 75, 140, 0.02) 100%);
	border-left: 4px solid #1F5EA3;
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 0 12px 12px 0;
}

.highlight-quote p {
	font-size: 20px;
	font-weight: 600;
	color: #1F5EA3;
	font-style: italic;
	line-height: 1.6;
	margin: 0;
}

/* Section Divider */
.section-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(26, 75, 140, 0.15), transparent);
	margin: 0;
}


/* ============================================
   MILESTONE SECTION - CSS
============================================ */

.milestone-section {
	padding: 70px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}


/* Section Header */
.milestone-header {
	text-align: center;
	margin-bottom: 80px;
}

.milestone-title {
	font-size: 42px;
	font-weight: 600;
	color: #1f5fa8;
	margin-bottom: 10px;
}


/* ============================================
   TIMELINE
============================================ */
.timeline {
	position: relative;
	padding: 20px 0;
}

/* Vertical Center Line - GRADIENT */
.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #c41e3a 0%, #1f5fa8 50%, #c41e3a 100%);
	transform: translateX(-50%);
	border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 90px;
	position: relative;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

/* Alternate sides */
.timeline-item:nth-child(odd) {
	flex-direction: row;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

/* Year Side */
.timeline-year-side {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	padding-right: 82px;
}

.timeline-item:nth-child(even) .timeline-year-side {
	justify-content: flex-start;
	padding-right: 0;
	padding-left: 82px;
}

.year-box {
	text-align: right;
}

.timeline-item:nth-child(even) .year-box {
	text-align: left;
}

.year-number {
	font-size: 46px;
	font-weight: 700;
	color: #1f5fa8;
	line-height: 1;
	margin-bottom: 6px;
}

.year-label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #c41e3a;
}

/* Center Node */
.timeline-node {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.node-circle {
	width: 70px;
	height: 70px;
	background: #ffffff;
	border: 3px solid #1f5fa8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 40px rgba(26, 75, 140, 0.15);
	transition: all 0.4s ease;
}

.timeline-item:hover .node-circle {
	background: #1f5fa8;
	transform: scale(1.1);
	box-shadow: 0 15px 50px rgba(26, 75, 140, 0.25);
}

.node-circle i {
	font-size: 28px;
	color: #1f5fa8;
	transition: color 0.4s ease;
}

.timeline-item:hover .node-circle i {
	color: #ffffff;
}

/* Content Side */
.timeline-content-side {
	flex: 1;
	padding-left: 82px;
}

.timeline-item:nth-child(even) .timeline-content-side {
	padding-left: 0;
	padding-right: 60px;
	text-align: right;
}

.content-box {
	background: #ffffff;
	border: 1px solid rgba(26, 75, 140, 0.1);
	border-radius: 14px;
	padding: 26px;
	position: relative;
	box-shadow: 0 10px 40px rgba(26, 75, 140, 0.08);
	transition: all 0.4s ease;
	max-width: 400px;
}

.timeline-item:nth-child(even) .content-box {
	margin-left: auto;
}

.timeline-item:hover .content-box {
	box-shadow: 0 20px 50px rgba(26, 75, 140, 0.12);
	border-color: rgba(196, 30, 58, 0.2);
}

/* Red accent line */
.content-box::before {
	content: '';
	position: absolute;
	top: 30px;
	bottom: 30px;
	width: 4px;
	background: linear-gradient(180deg, #c41e3a, #1f5fa8);
	border-radius: 2px;
	left: 0;
	transform: translateX(-50%);
	z-index: 9;
}

.timeline-item:nth-child(even) .content-box::before {
	left: auto;
	right: 0;
	transform: translateX(50%);
}

/* Arrow pointer - BLUE COLOR */
.content-box::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border: 12px solid transparent;
	left: -24px;
	border-right-color: #1f5fa8;
	z-index: 1;
}

.timeline-item:nth-child(even) .content-box::after {
	left: auto;
	right: -24px;
	border-right-color: transparent;
	border-left-color: #1f5fa8;
}

.content-title {
	font-size: 18px;
	font-weight: 700;
	color: #1f5fa8;
	margin-bottom: 8px;
}

.content-desc {
	font-size: 15px;
	color: #232323;
	font-family: 'avenir_lt_std65_medium';
	line-height: 1.6;
}

/* ============================================
   EPC EXPERTISE - HORIZONTAL CARDS
============================================ */
.expertise-section {
	margin-top: 74px;
	padding-top: 52px;
	border-top: 1px solid rgba(26, 75, 140, 0.1);
}

.expertise-title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
	color: #1f5fa8;
	text-align: center;
	margin-bottom: 50px;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 75%;
	margin: 0 auto;
}

.expertise-card {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #ffffff;
	border: 1px solid rgba(26, 75, 140, 0.1);
	border-radius: 12px;
	padding: 20px;
}

.expertise-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: #c41e3a;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.expertise-icon i {
	font-size: 20px;
	color: #ffffff;
}

.expertise-card span {
	font-size: 16px;
	font-weight: 700;
	color: #1f5fa8;
	line-height: 1.4;
}


/* ============================================
   FOUNDING STORY SECTION - CSS
============================================ */

.founding-section {
	padding: 54px 0;
	background: #f9fafb;
}

.founding-container {
	max-width: 75%;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
}

.about-quote-icon {
	font-size: 192px;
	font-weight: 700;
	color: #eb0028;
	line-height: 0.5;
	opacity: 0.2;
	margin-bottom: -54px;
	user-select: none;
	margin-top: 54px;
}

/* Main Headline */
.founding-headline {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	color: #1a4b8c;
	line-height: 1.4;
	margin-bottom: 25px;
}

.founding-headline .highlight {
	font-style: italic;
	color: #c41e3a;
	display: block;
}

/* Description Text */
.founding-desc {
	font-family: 'avenir_lt_std65_medium';
	font-size: 16px;
	color: #232323;
	line-height: 1.9;
	max-width: 85%;
	margin: 0 auto;
}

/* Section Label with Lines */
.section-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 35px;
}

.section-label::before,
.section-label::after {
	content: '';
	width: 50px;
	height: 1px;
	background: #c41e3a;
}

.section-label span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #c41e3a;
}

/* ═══════════════════════════════════════════════════════
   PROJECTS GALLERY — projects.css
   Scoped under .projects-section
   ═══════════════════════════════════════════════════════ */

/* ─── Variables ─── */
.projects-section {
  --prj-navy: #0b1a2e;
  --prj-dark: #060e19;
  --prj-accent: #d4a03c;
  --prj-accent-light: #e8bd64;
  --prj-text: #fff;
  --prj-muted: #fff;
  --prj-radius: 5px;
}

/* ─── Section Container ─── */
.projects-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 36px 100px;
}

/* ─── Gallery Grid — Equal 3 Columns ─── */
.projects-section .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* ─── Gallery Item Base ─── */
.projects-section .gallery-item {
  position: relative;
  overflow: hidden;
  /* border-radius: var(--prj-radius); */
  cursor: pointer;
      border: 1px solid #ea252e;
  height: 420px;
  border-radius: 4px;
}

/* ─── Image ─── */
.projects-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.78) saturate(0.85);
}

.projects-section .gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.3) saturate(0.6);
}

/* ─── Overlay ─── */
.projects-section .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
}

.projects-section .gallery-item:hover .overlay::before {
  background: linear-gradient(0deg, rgba(6,14,25,0.95) 0%, rgba(6,14,25,0.55) 55%, rgba(6,14,25,0.25) 100%);
}

/* ─── Badge ─── */
.projects-section .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(212, 160, 60, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 160, 60, 0.22);
  border-radius: 3px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prj-accent-light);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
  z-index: 3;
}

.projects-section .badge .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--prj-accent);
}

.projects-section .gallery-item:hover .badge {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Item Index Number ─── */
.projects-section .item-index {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
  z-index: 3;
  transition: color 0.4s ease;
}

.projects-section .gallery-item:hover .item-index {
  color: rgba(212, 160, 60, 0.4);
}

/* ─── Overlay Content ─── */
.projects-section .overlay-content {
  position: relative;
}

/* Accent Line */
.projects-section .accent-line {
  width: 0;
  height: 2px;
  background: var(--prj-accent);
  margin-bottom: 14px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.projects-section .gallery-item:hover .accent-line {
  width: 40px;
}

/* Title */
.projects-section .overlay-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.projects-section .gallery-item:hover .overlay-content h3 {
  transform: translateY(0);
  opacity: 1;
}

/* Meta Row */
.projects-section .overlay-content .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
}

.projects-section .gallery-item:hover .overlay-content .meta {
  transform: translateY(0);
  opacity: 1;
}

.projects-section .meta .tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--prj-accent);
}

.projects-section .meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--prj-muted);
  flex-shrink: 0;
}

.projects-section .meta .loc {
  font-size: 12px;
  color: var(--prj-muted);
}

/* Description */
.projects-section .overlay-content .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--prj-text);
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.projects-section .gallery-item:hover .overlay-content .desc {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

