/*
Theme Name:  Nesa
Text Domain: nesa
Version: 1.0
Tested up to: 7.0
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Nesa is a modern and responsive WordPress theme designed for speed and flexibility. It features a clean, minimalist design with full support for the block editor, making it perfect for blogs, portfolios, and business websites.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: 
Author URI: 
Theme URI: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

/* ==========================================================================
   NESA Infrastructure Services - Professional Stylesheet
   ========================================================================== */

/* ===== CORE VARIABLES ===== */
:root {
	--navy: #071828;
	--navy2: #0e2a45;
	--orange: #e85d20;
	--orange2: #f47b3a;
	--off: #f4f5f6;
	--muted: #8a95a3;
	--border: #e2e8f0;
	--white: #ffffff;
	--text-dark: #1a2535;
	--text-light: #4a5568;
	--shadow-sm:
		0 4px 6px -1px rgba(7, 24, 40, 0.05), 0 2px 4px -1px rgba(7, 24, 40, 0.03);
	--shadow-md:
		0 10px 15px -3px rgba(7, 24, 40, 0.08), 0 4px 6px -2px rgba(7, 24, 40, 0.04);
	--shadow-lg:
		0 20px 25px -5px rgba(7, 24, 40, 0.12),
		0 10px 10px -5px rgba(7, 24, 40, 0.04);
}

/* ===== RESET & BASE ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--orange) var(--navy);
}

body {
	font-family: "Inter", sans-serif;
	background: #ffffff;
	color: var(--text-dark);
	overflow-x: hidden;
}


::selection {
  background: var(--orange);
  color: #fff;
}

::-moz-selection {
  background: var(--orange);
  color: #fff;
}


a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ===== CUSTOM SCROLLBAR (RIGHT SIDE) ===== */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--navy);
}

::-webkit-scrollbar-thumb {
	background: var(--orange);
	border: 2px solid var(--navy);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--orange2);
}

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgressBar {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(to right, var(--orange), var(--orange2));
	width: 0%;
	z-index: 9999999;
	transition: width 0.1s ease-out;
}

/* ===== HEADER / STICKY NAV ===== */
#nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: rgba(7, 24, 40, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	height: 72px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	align-items: center;
}

#nav.scrolled {
	height: 64px;
	background: rgba(7, 24, 40, 0.96);
	box-shadow: var(--shadow-md);
	border-bottom-color: var(--orange);
}

/* Offset fixed header for WordPress admin bar */
body.admin-bar #nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar #nav {
		top: 46px;
	}
}

.nav-wrap {
	/* max-width: 1200px; */
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.logo-link {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	line-height: 1.15;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.02);
}

.logo-name {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	font-size: 24px;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
}

.logo-name b {
	color: var(--orange);
	font-weight: 800;
}

.logo-sub {
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	white-space: nowrap;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-shrink: 0;
}

.nav-links a {
	position: relative;
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	white-space: nowrap;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
	color: #fff;
}

.nav-links a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-links a.active {
	color: var(--orange);
}

.nav-links a.active::after {
	transform: scaleX(1);
	background-color: var(--orange);
}

/* Nav procurement button override */
.nav-btn {
	background: var(--orange);
	color: #fff !important;
	padding: 10px 20px !important;
	font-size: 11px !important;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(232, 93, 32, 0.2);
	transition: all 0.3s ease !important;
}

.nav-btn::after {
	display: none !important;
}

.nav-btn:hover {
	background: var(--orange2) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(232, 93, 32, 0.35);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	z-index: 1002;
}

.nav-toggle span {
	width: 100%;
	height: 2px;
	background: #fff;
	display: block;
	transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-links-mobile {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(7, 24, 40, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 3px solid var(--orange);
	flex-direction: column;
	padding: 10px 24px 30px;
	z-index: -1;
	transform: translateY(-120%);
	opacity: 0;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.3s ease;
	pointer-events: none;
}

.nav-links-mobile.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}

.nav-links-mobile a {
	padding: 16px 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition:
		color 0.3s ease,
		padding-left 0.3s ease;
}

.nav-links-mobile a:hover {
	color: var(--white);
	padding-left: 8px;
}

.nav-links-mobile a.active {
	color: var(--orange);
}

.nav-spacer {
	height: 72px;
	width: 100%;
}

/* ===== PREMIUM BUTTONS (WITH BEFORE & AFTER TRANSITIONS) ===== */
.btn-primary,
.btn-outline,
.btn-dark,
.fsub {
	position: relative;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 32px;
	border-radius: 4px;
	overflow: hidden;
	z-index: 1;
	border: none;
	cursor: pointer;
	transition:
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

/* --- btn-primary --- */
.btn-primary {
	background: var(--orange);
	color: #fff;
}

.btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--orange2);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 30%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	z-index: 2;
	transition: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(232, 93, 32, 0.4);
}

.btn-primary:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.btn-primary:hover::after {
	left: 150%;
	transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- btn-dark --- */
.btn-dark {
	background: var(--navy);
	color: #fff;
}

.btn-dark::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--navy2);
	z-index: -1;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dark::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 30%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.25) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	z-index: 2;
	transition: none;
}

.btn-dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(7, 24, 40, 0.35);
}

.btn-dark:hover::before {
	transform: scaleY(1);
	transform-origin: top;
}

.btn-dark:hover::after {
	left: 150%;
	transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- btn-outline --- */
.btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: rgba(255, 255, 255, 0.9);
	background: transparent;
}

.btn-outline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 30%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(7, 24, 40, 0) 0%,
			rgba(7, 24, 40, 0.12) 50%,
			rgba(7, 24, 40, 0) 100%);
	transform: skewX(-25deg);
	z-index: 2;
	transition: none;
}

.btn-outline:hover {
	color: var(--navy) !important;
	border-color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.btn-outline:hover::after {
	left: 150%;
	transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- fsub --- */
.fsub {
	width: 100%;
	background: var(--orange);
	color: #fff;
	border: none;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.13em;
	padding: 15px;
	margin-top: 6px;
}

.fsub::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--orange2);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fsub::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 30%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	z-index: 2;
	transition: none;
}

.fsub:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(232, 93, 32, 0.3);
}

.fsub:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.fsub:hover::after {
	left: 150%;
	transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== HERO SECTIONS ===== */
.page-hero {
	background: var(--navy);
	padding: 120px 24px 80px;
	position: relative;
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	animation: kenBurns 18s ease-in-out infinite alternate;
}

.page-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom,
			rgba(7, 24, 40, 0.55),
			rgba(7, 24, 40, 0.94));
	z-index: 2;
}

.page-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	background: var(--orange);
	z-index: 3;
}

.page-hero-body {
	position: relative;
	z-index: 4;
	max-width: 1200px;
	margin: 0 auto;
}

/* Page Hero Content Load Animation */
.page-hero-body .page-eyebrow,
.page-hero-body h1,
.page-hero-body p {
	animation: heroFadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	opacity: 0;
	transform: translateY(25px);
}

.page-hero-body .page-eyebrow {
	animation-delay: 0.2s;
}

.page-hero-body h1 {
	animation-delay: 0.4s;
}

.page-hero-body p {
	animation-delay: 0.6s;
}

@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kenBurns {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.08) translate(1%, -1%);
	}
}

.page-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.page-eyebrow-line {
	width: 28px;
	height: 2px;
	background: var(--orange);
	flex-shrink: 0;
}

.page-eyebrow span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--orange);
}

.page-hero h1 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.05;
}

.page-hero p {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	max-width: 600px;
	margin-top: 16px;
	line-height: 1.8;
}

/* HOME HERO */
.hero {
	background: var(--navy);
	background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80");
	background-size: cover;
	background-position: center;
	min-height: calc(100vh - 72px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom,
			rgba(7, 24, 40, 0.45) 0%,
			rgba(7, 24, 40, 0.72) 50%,
			rgba(7, 24, 40, 0.97) 85%);
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	background: var(--orange);
}

.hero-body {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 80px;
	width: 100%;
}

.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.hero-eyebrow-line {
	width: 32px;
	height: 2px;
	background: var(--orange);
}

.hero-eyebrow span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--orange);
}

.hero h1 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(44px, 7.5vw, 92px);
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	line-height: 0.95;
	max-width: 860px;
	margin-bottom: 24px;
}

.hero h1 span {
	color: var(--orange);
}

.hero-desc {
	font-size: 17px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	max-width: 580px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== INTERACTIVE STATISTICS BLOCK ===== */
.hstat {
	flex: 1;
	min-width: 140px;
	padding: 28px 0 0 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hstat:first-child {
	border-left: none;
	padding-left: 0;
}

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

.hstat-n {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 44px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	transition: color 0.3s ease;
}

.hstat:hover .hstat-n,
.hstat-n span {
	color: var(--orange);
}

.hstat-n em {
	color: var(--orange);
	font-style: normal;
}

.hstat-l {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 6px;
	transition: color 0.3s ease;
}

.hstat:hover .hstat-l {
	color: var(--white);
}

/* ===== INTERACTIVE BAND CELL ===== */
.band {
	background: var(--navy2);
	display: flex;
	flex-wrap: wrap;
}

.band-cell {
	flex: 1;
	min-width: 180px;
	padding: 40px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.band-cell:first-child {
	border-left: none;
}

.band-cell:hover {
	background-color: rgba(255, 255, 255, 0.04);
	transform: translateY(-4px);
}

.band-n {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 44px;
	font-weight: 800;
	color: var(--orange);
	line-height: 1;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.band-cell:hover .band-n {
	color: var(--orange2);
	transform: scale(1.02);
}

.band-l {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 8px;
	transition: color 0.3s ease;
}

.band-cell:hover .band-l {
	color: #fff;
}

/* ===== SECTION BASE ===== */
.sec {
	padding: 100px 24px;
}

.sec-wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.sec-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.sec-label::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--orange);
	flex-shrink: 0;
}

.sec-label span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--orange);
}

.sec-title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--navy);
	line-height: 1.05;
}

.sec-title-white {
	color: #fff;
}

.sec-desc {
	font-size: 16px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}

/* ===== ABOUT BLOCK ===== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-img-wrap {
	position: relative;
	z-index: 1;
}

/* Background offset frame */
.about-img-wrap::before {
	content: "";
	position: absolute;
	top: 20px;
	left: -20px;
	right: 20px;
	bottom: -20px;
	border: 2px solid var(--orange);
	border-radius: 8px;
	z-index: -1;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.about-img-wrap:hover::before {
	transform: translate(8px, -8px);
	border-color: var(--orange);
	box-shadow: 0 10px 25px rgba(232, 93, 32, 0.1);
}

.about-img-inner {
	position: relative;
	height: 480px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow-md);
	border: 10px solid var(--orange);
}

/* Hover Gradient Overlay */
.about-img-inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(232, 93, 32, 0.35) 0%, rgba(7, 24, 40, 0.5) 100%);
	opacity: 0;
	z-index: 1;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.about-img-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.65);
	display: block;
	transition:
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.5s ease;
	animation: kenBurns 18s ease-in-out infinite alternate;

}

/* Image Scale & Overlay Fade on Hover */
.about-img-wrap:hover .about-img-inner img {
	transform: scale(1.08);
	filter: saturate(1.05);
}

.about-img-wrap:hover .about-img-inner::after {
	opacity: 1;
}

.about-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--orange);
	color: #fff;
	padding: 24px 30px;
	border-radius: 4px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
	animation: floatPhone2 4.5s ease-in-out infinite;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);

}

@keyframes floatPhone2 {

	0%,
	100% {
		transform: translateY(-8px);
	}

	50% {
		transform: translateY(8px);
	}
}

.about-img-wrap:hover .about-badge {
	transform: translateY(-4px);
	background: var(--orange2);
}

@keyframes kenBurns {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.08) translate(1%, -1%);
	}
}

.about-badge-n {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
}

.about-badge-l {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.9;
}

.about-text p {
	font-size: 16px;
	font-weight: 300;
	color: var(--text-light);
	line-height: 1.85;
	margin-bottom: 20px;
}

.about-text .note {
	font-size: 13px;
	color: var(--muted);
	font-style: italic;
}

.caps {
	display: flex;
	flex-direction: column;
	margin-top: 40px;
}

/* Capability Row Hover Design */
.cap {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px 16px;
	border-bottom: 1px solid var(--border);
	border-radius: 6px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.cap:first-child {
	border-top: 1px solid var(--border);
}

.cap:hover {
	background-color: var(--off);
	transform: translateX(6px);
	box-shadow: var(--shadow-sm);
}

.cap-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cap:hover .cap-icon {
	transform: scale(1.08) rotate(-5deg);
	background-color: var(--orange2);
}

.cap-icon svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cap-title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--navy);
	letter-spacing: 0.05em;
	margin-bottom: 4px;
	transition: color 0.3s ease;
}

.cap:hover .cap-title {
	color: var(--orange);
}

.cap-desc {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.srv-hdr {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 48px;
}

.srv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.srv-row2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.srv-card {
	position: relative;
	overflow: hidden;
	background-color: #fff;
	padding: 48px 36px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		background-color 0.4s ease;
}

.srv-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, var(--orange) 0%, var(--orange2) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 3;
}

.srv-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 25%, rgb(184 148 63 / .07) 50%, transparent 75%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	pointer-events: none;
	z-index: 1;
}

.srv-card:hover::before {
	transform: scaleX(1);
}

.srv-card:hover::after {
	transform: translateX(100%);
}

.srv-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	background-color: #fafbfd;
}

.srv-num {
	position: relative;
	z-index: 2;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 64px;
	font-weight: 800;
	color: rgba(7, 24, 40, 0.04);
	line-height: 1;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.srv-card:hover .srv-num {
	color: rgba(232, 93, 32, 0.1);
}

.srv-icon {
	position: relative;
	z-index: 2;
	width: 44px;
	height: 44px;
	color: var(--orange);
	margin-bottom: 20px;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
}

.srv-card:hover .srv-icon {
	transform: scale(1.1) rotate(5deg);
	color: var(--orange2);
}

.srv-icon svg {
	width: 44px;
	height: 44px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.srv-card h3 {
	position: relative;
	z-index: 2;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 14px;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.srv-card:hover h3 {
	color: var(--orange);
}

.srv-card p {
	position: relative;
	z-index: 2;
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.75;
}

.srv-note {
	margin-top: 40px;
	padding: 20px 24px;
	border-left: 4px solid var(--orange);
	background: #fff;
	border-radius: 0 8px 8px 0;
	box-shadow: var(--shadow-sm);
}

.srv-note p {
	font-size: 14px;
	color: var(--muted);
	font-style: italic;
}

/* ===== EXPERIENCE SECTION ===== */
.exp-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: start;
}

.exp-list {
	display: flex;
	flex-direction: column;
}

.exp-item {
	display: flex;
	gap: 20px;
	padding: 24px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.exp-item:first-child {
	padding-top: 16px;
}

.exp-item:hover {
	background-color: rgba(255, 255, 255, 0.03);
	transform: translateX(8px);
}

.exp-dot {
	width: 12px;
	height: 12px;
	min-width: 12px;
	background: var(--orange);
	border-radius: 50%;
	margin-top: 6px;
	flex-shrink: 0;
	box-shadow: 0 0 8px var(--orange);
	transition:
		transform 0.3s ease,
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.exp-item:hover .exp-dot {
	transform: scale(1.3);
	background-color: #fff;
	box-shadow: 0 0 12px #fff;
}

.exp-title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
	transition: color 0.3s ease;
}

.exp-item:hover .exp-title {
	color: var(--orange2);
}

.exp-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.75;
}

.exp-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 200px 200px;
	gap: 12px;
}

.exp-photo {
	overflow: hidden;
	border-radius: 6px;
	box-shadow: var(--shadow-md);
}

.exp-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.5);
	display: block;
	transition:
		filter 0.5s ease,
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-photo:hover img {
	filter: saturate(1.05);
	transform: scale(1.08);
}

.exp-photo.tall {
	grid-row: span 2;
}

/* ===== SECTORS ===== */
.sec-grid4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sector-card {
	background: #fff;
	padding: 36px 24px;
	border-top: 4px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		border-top-color 0.3s ease;
}

.sector-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-top-color: var(--orange);
}

.sector-icon {
	width: 38px;
	height: 38px;
	color: var(--orange);
	margin-bottom: 18px;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
}

.sector-card:hover .sector-icon {
	transform: scale(1.1) rotate(5deg);
	color: var(--orange2);
}

.sector-icon svg {
	width: 38px;
	height: 38px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sector-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sector-card h4 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 10px;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.sector-card:hover h4 {
	color: var(--orange);
}

.sector-card p {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.7;
}

/* ===== CONTACT & FORM ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-left h3 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 16px;
}

.contact-left p {
	font-size: 16px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 36px;
}

.cdetail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 24px;
	padding: 12px;
	border-radius: 6px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.cdetail:hover {
	background-color: var(--off);
	transform: translateX(4px);
}

.cdetail-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.cdetail:hover .cdetail-icon {
	background-color: var(--orange);
	transform: scale(1.05);
}

.cdetail-icon svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cdetail-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--navy);
	display: block;
	margin-bottom: 4px;
}

.cdetail-val {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 400;
}

.cform {
	background: var(--navy);
	padding: 48px 40px;
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
	border-top: 4px solid var(--orange);
}

.cform-title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.fg {
	margin-bottom: 18px;
}

.fg label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	padding: 13px 16px;
	outline: none;
	transition: all 0.3s ease;
	border-radius: 4px;
	appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
	border-color: var(--orange);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 0 8px rgba(232, 93, 32, 0.2);
}

.fg select option {
	background: var(--navy);
	color: #fff;
}

.fg textarea {
	resize: vertical;
	min-height: 120px;
}

/* =====  FOOTER ===== */

footer {
	background: #030a12;
	padding: 80px 24px 40px;
	color: rgba(255, 255, 255, 0.5);
	border-top: 4px solid var(--orange);
}

.footer-wrap {
	/* max-width: 1200px; */
	margin: 0 auto;
}

.footer-bar {
	height: 4px;
	background: var(--orange);
	width: 80px;
	margin-bottom: 40px;
	border-radius: 2px;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 64px;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.f-brand-name {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
}

.f-brand-name b {
	color: var(--orange);
}

.f-brand-sub {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 4px;
	margin-bottom: 24px;
}

.footer-logo-link {
	display: inline-block;
	margin-bottom: 24px;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo-link:hover {
	transform: scale(1.05);
}

.footer-logo {
	height: 56px;
	width: auto;
	display: block;
}


.f-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.8;
	max-width: 320px;
}

.f-col h5 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 24px;
}

.f-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.f-col ul a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.55);
	transition: all 0.3s ease;
	display: inline-block;
}

.f-col ul li a::before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 8px;
	color: var(--orange);
	opacity: 0.6;
	transition: all 0.3s ease;
	display: inline-block;
}

.f-col ul li a:hover {
	color: #ffffff !important;
	transform: translateX(4px);
}

.f-col ul li a:hover::before {
	opacity: 1;
	color: var(--orange2);
	transform: translateX(2px);
}

/* Active page menu item styling */
.f-col ul li.current-menu-item > a,
.f-col ul li.current_page_item > a {
	color: var(--orange) !important;
	font-weight: 600;
}

.f-col ul li.current-menu-item > a::before,
.f-col ul li.current_page_item > a::before {
	color: var(--orange) !important;
	opacity: 1 !important;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.15s;
}

.reveal-delay-2 {
	transition-delay: 0.3s;
}

.reveal-delay-3 {
	transition-delay: 0.45s;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {

	.about-grid,
	.exp-grid,
	.contact-grid {
		gap: 48px;
	}
}

@media (max-width: 900px) {
	.sec {
		padding: 80px 24px;
	}

	.about-grid,
	.exp-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.srv-grid,
	.srv-row2,
	.sec-grid4 {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.srv-row2 {
		margin-top: 16px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.exp-photos {
		margin-top: 24px;
	}

	.srv-hdr {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
	}
}

@media (max-width: 600px) {
	.sec {
		padding: 60px 20px;
	}

	.page-hero {
		padding: 100px 20px 60px;
	}

	.srv-grid,
	.srv-row2,
	.sec-grid4 {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 22px;
	}

	.cform {
		padding: 36px 20px;
	}

	.frow {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.about-badge {
		bottom: -10px;
		right: -10px;
		padding: 16px 20px;
	}

	.about-badge-n {
		font-size: 36px;
	}
}