@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
html { scroll-behavior: smooth; }
body{line-height:1.6; color: var(--headings); background-color: #fff;}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */
/* html5 */
article, aside, details, figcaption, figure, footer, header, nav, section { display: block; }
*,
*::after,
*::before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* Default Font Styles
______________________*/
body, input, select, textarea {
	font-family: "Outfit", sans-serif;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.65;
}
/* Headings
______________________*/
h1,h2,h3,h4,h5,h6 {
	font-family: "Outfit", sans-serif;
	font-style: normal;
	margin-bottom: 0.625rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
}
h1 {
	font-size: 2.75rem;
}
h2 {
	font-size: 2.1rem;
	text-transform: none;
}
h3 {
	font-size: 1.35rem;
	text-transform: capitalize;
}
h4,
h5,
h6 {
	font-weight: 600;
	letter-spacing: normal;
}
/* Links
______________________*/
a {
	text-decoration: none;
	color: var(--primary);
}
img {
	max-width: 100%;
	height: auto;
}
/* p, blockquote, address
______________________*/
p {
	font-size: 18px;
	margin-bottom: 1.4rem;
	line-height: 1.85;
	letter-spacing: 0.01em;
	color: var(--text-muted);
}
button {
	display: block;
	cursor: pointer;
}
/* Root */
:root {
	--yellow: #F5C518;
	--yellow-dark: #d4a800;
	--black: #0a0a0a;
	--dark: #111111;
	--dark2: #1a1a1a;
	--gray: #888;
	--light-gray: #f5f5f0;
	--white: #ffffff;
	--headings: #1a1a1a;
	--text-muted: #666;
	--border: #e5e5e0;
}
.container{
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1440px;
}
.cursor-dot{
	width: 20px;
	height: 20px;
	background: #f4c400;
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	transition: transform 0.08s linear;
}
.cursor-dot.hide{
	opacity: 0;
}
/* PreLoader
=============*/
.mil-preloader{
	position: fixed;
	inset: 0;
	background: #000;
	z-index: 99999;
}
.mil-preloader-animation{
	opacity: 0;
	position: relative;
	width: 100%;
	height: 100vh;
	color: #fff;
}
.mil-pos-abs{
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mil-pos-abs p{
	margin-right: 15px;
}
.mil-h3{
	font-size: 48px;
	line-height: 1.2;
	font-weight: 400;
	color: #fff;
}
.mil-animation-1{
	z-index: 10;
}
.mil-animation-2{
	z-index: 5;
}
.mil-reveal-frame{
	position: relative;
	overflow: hidden;
	padding: 0 30px;
}
.mil-animation-2 .mil-h3{
	opacity: 0;
	position: relative;
	z-index: 3;
	color: #fff;
}
.mil-reveal-box{
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #ffd900;
	z-index: 4;
}
.mil-hidden{
	pointer-events: none;
	visibility: hidden;
}
.demo-content{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	font-weight: bold;
}
/*Back Top
============*/
.back-top {
	position: fixed;
	background: var(--yellow);
	width: 40px;
	height: 40px;
	bottom: 0;
	right: 30px;
	border-radius: 100px;
	cursor: pointer;
	transition: 0.5s ease;
	opacity: 0;
	z-index: 999;
}
.back-top::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-width: 2px;
	border-style: solid;
	border-color: black transparent transparent black;
	top: 43%;
	left: 50%;
	transform: translate(-50%, 0) rotate(45deg);
	transition: 0.3s ease;
}
.back-top:hover::after {
	top: 36%;
}
.back-top.active {
	opacity: 1;
	bottom: 30px;
}
.theme-btn {
	display: inline-block;
	background-color: var(--yellow);
	color: var(--black);
	padding: 12px 22px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.3px;
	border: 1px solid transparent;
	border-radius: 4px;
	transition: 0.3s ease !important;
	position: relative;
	overflow: hidden;
}
.theme-btn::after {
	content: '';
	position: absolute;
	top: -50%; left: -75%;
	width: 50%; height: 200%;
	background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 70%);
	transform: skewX(-20deg);
	transition: left 0.5s ease;
}
.theme-btn:hover::after {
	left: 130%;
}
/* Header Styles
=================*/
.header-wrap{
	background-color: rgba(10,10,10,0.96);
	padding: 25px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(245,197,24,0.15);
}
.header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo a,
.footer-logo a{
	display: block;
	font-family: "Outfit", sans-serif;
	font-style: normal;
	font-size: 42px;
	line-height: 100%;
	font-weight: 500;
	color: var(--yellow);
	position: relative;
	z-index: 9999999;
}
.header-logo a span,
.footer-logo a span{
	color: var(--white);
}
.header-nav{
	display: flex;
	gap: 32px;
}
.header-nav ul{
	display: flex;
	align-items: center;
	gap: 32px;
}
.header-nav ul a{
	color: rgba(255,255,255,0.75);
	letter-spacing: 0.3px;
	transition: 0.3s ease !important;
	font-size: 18px;
}
.header-nav ul a:hover{
	color: var(--yellow);
}
.header-nav a.active{
	color: var(--yellow);
}
.header-nav ul li.has-dropdown {
	position: relative;
}
.header-nav ul li.has-dropdown > a {
	position: relative;
	display: inline-block;
}
.header-nav ul li.has-dropdown > a::after {
	content: "";
	position: absolute;
	width: 32px;
	height: 32px;
	background-image: url('../images/caret-down.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.header-nav ul li.has-dropdown.open > a::after {
	transform: rotate(180deg);
}
.header-nav ul li.has-dropdown .dropdown-menu {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%);
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	min-width: 180px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 9999;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	margin: 0;
}
.header-nav ul li.has-dropdown .dropdown-menu::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	background: #111;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.header-nav ul li.has-dropdown.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 10px);
}
.header-nav ul li.has-dropdown .dropdown-menu li {
	padding: 0;
}
.header-nav ul li.has-dropdown .dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	white-space: nowrap;
	transition: all 0.2s ease;
}
.header-nav ul li.has-dropdown .dropdown-menu li a:hover {
	color: #fff;
	padding-left: 25px;
	color: var(--yellow);
}
.header-nav ul li.has-dropdown.open .caret-icon {
	transform: rotate(180deg);
}
.caret-icon {
	transition: transform 0.3s ease;
}
.has-dropdown > a {
	display: flex;
	align-items: center;
}
.dropdown-menu{
	gap: 0 !important;
}
.header-button{
	margin-left: 32px;
}
.menu-btn {
	width: 30px;
	height: 30px;
	display: none;
	align-items: center;
	cursor: pointer;
	z-index: 99;
}
.menu-btn span {
	width: 100%;
	height: 2px;
	background-color: var(--white);
	position: relative;
}
.menu-btn span::before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	top: -8px;
	transition: 0.5s;
}
.menu-btn span::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	bottom: -8px;
	transition: 0.5s;
}
.menu-btn.active span {
	background: transparent;
}
.menu-btn.active span::before {
	top: 0px;
	transform: rotate(225deg);
}
.menu-btn.active span::after {
	top: 0px;
	transform: rotate(-225deg);
}
/* Banner Styles
================*/
.hero {
	min-height: 100vh;
	background: var(--black);
	display: flex;
	align-items: center;
	padding: 150px 0 80px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 65%);
	pointer-events: none;
}
.hero-grid {
	display: flex;
	justify-content: space-between;
	gap: 64px;
	align-items: flex-start;
}
.hero-left{
	width: 50%;
	max-width: 680px;
}
.hero-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	color: var(--yellow);
	text-transform: uppercase;
	margin-bottom: 20px;
	padding: 6px 14px;
	border: 1px solid rgba(245,197,24,0.3);
	border-radius: 3px;
}
.hero h1 {
	font-family: "Outfit", sans-serif;
	font-size: clamp(32px, 5.5vw, 66px);
	font-weight: 700;
	line-height: 1.07;
	color: var(--white);
	margin-bottom: 24px;
}
.hero h1 em {
	font-style: normal;
	color: var(--yellow);
}
.hero-desc {
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.6);
	margin-bottom: 40px;
	max-width: 480px;
}
.hero-btns {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.btn-outline {
	border: 1.5px solid rgba(255,255,255,0.28);
	color: rgba(255,255,255,0.95);
	background: rgba(255,255,255,0.06);
}
.hero-stats {
	display: flex;
	gap: 36px;
	margin-top: 56px;
}
.stat-num {
	font-family: "Outfit", sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--yellow);
	line-height: 1;
}
.stat-label {
	font-size: 14px;
	color: rgba(255,255,255,0.5);
	margin-top: 4px;
	line-height: 1.4;
}
.hero-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 50%;
}
.hero-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 28px 30px;
	transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hero-card:hover {
	border-color: rgba(245,197,24,0.3);
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(0,0,0,0.15);
}
.hero-card-label {
	font-size: 11px;
	letter-spacing: 1.5px;
	font-weight: 600;
	color: var(--yellow);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.hero-card-title {
	font-size: 17px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 6px;
}
.hero-card-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.45);
	line-height: 1.6;
}
.hero-card-badge {
	display: inline-block;
	margin-top: 12px;
	background: rgba(245,197,24,0.12);
	color: var(--yellow);
	font-size: 12px; font-weight: 600;
	padding: 4px 12px; border-radius: 30px;
}
/* Ticker Styles
================*/
.ticker-wrap{
	background: var(--yellow);
	padding: 14px 0;
	overflow: hidden;
	white-space: nowrap;
}
.ticker{
	display: inline-flex;
	gap: 0;
	animation: ticker 25s linear infinite !important;
}
@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.ticker-item{
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--black);
	text-transform: uppercase;
	padding: 0 32px;
}
.ticker-dot{
	color: rgba(0,0,0,0.3);
}
/* About Us Styles
===================*/
.about-us-sec{
	background-color: var(--light-gray);
	padding: 80px 0;
}
.about-us{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
.about-col-info,
.about-col-img{
	width: 50%;
}
.about-col-info h4{
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 14px;
}
.about-col-info h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 18px;
	color: var(--headings);
	text-transform: capitalize;
	font-weight: 600;
}
.about-col-info h2 span{
	display: block;
	color: var(--yellow);
}
.about-text{
	width: 100%;
	max-width: 620px;
}
.about-text p{
	font-size: 18px;
	color: var(--text-muted);
	font-weight: 300;
}
.about-text p:last-child{
	margin-bottom: 0;
}
.about-col-img img{
	width: 100%;
	height: auto;
	max-height: 560px;
	object-fit: cover;
	display: block;
	object-position: center top;
}
/* Services Styles
==================*/
.servcies-wrap{
	padding: 80px 0;
}
.servcies{
	margin-bottom: 40px;
}
.span-text h4{
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 14px;	
}
.servcies-title h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 18px;
	color: var(--headings);
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 0;
}
.servcies-title h2 span{
	color: var(--yellow);
}
.services-cards{
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.service-card{
	width: calc(50% - 12px);
	border: 1px solid var(--border);
	background: var(--white);
	padding: 40px 36px;
	transition: 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	display: block;
	min-height: 320px;
}
.service-card:hover {
	background-color: var(--white);
	transform: translateY(-4px);
	border-color: var(--yellow);
}
.service-card:hover .service-arrow {
	gap: 8px;
}
.service-card:hover .arr {
	transform: translateX(4px);
}
.service-icon{
	width: 52px;
	height: 52px;
	background: rgba(245,197,24,0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
}
.service-num{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--yellow);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.service-title{
	font-size: 22px;
	font-weight: 500;
	color: var(--headings);
	margin-bottom: 12px;
}
.service-desc{
	font-size: 18px;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 20px;
}
.service-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--yellow);
	text-decoration: none;
	letter-spacing: 0.3px;
	transition: gap 0.25s ease;
	line-height: 1;
}
.service-arrow .arr {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
	filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%) hue-rotate(5deg) brightness(105%);
	vertical-align: middle;
	margin-top: 2px;
}
/* OutSourcing Style
=====================*/
.outsourcing-sec{
	padding: 80px 0;
	background-color: var(--light-gray);
}
.outsourcing-row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
}
.outsourcing-col-left,
.outsourcing-col-right{
	width: 50%;
}
.outsourcing-title h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 18px;
	color: var(--headings);
	text-transform: capitalize;
	font-weight: 600;
}
.outsourcing-title h2 span{
	color: var(--yellow);
}
.outsourcing-desc p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text-muted);
	max-width: 560px;
	margin-bottom: 32px;
}
.outsource-point{
	display: flex;
	gap: 16px;
	margin-bottom: 25px;
}
.outsource-point:last-child{
	margin-bottom: 0;
}
.point-icon{
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--yellow);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.outsource-point h3{
	font-size: 18px;
	font-weight: 600;
	color: var(--headings);
	margin-bottom: 4px;
}
.outsource-point p{
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-muted);
	margin-bottom: 0;
}
/*expertise styles
==================*/
.expertise-sec{
	background-color: var(--black);
	padding: 80px 0;
}
.expertise-top{
	margin-bottom: 50px;
}
.expertise-title h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 18px;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 600;
}
.expertise-title h2 span{
	color: var(--yellow);
}
.expertise-text{
	max-width: 750px;
	width: 100%;
}
.expertise-text p{
	font-size: 18px;
	line-height: 1.65;
	color: var(--text-muted);
	margin-bottom: 0
}
.expertise-cards{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 25px;
}
.expertise-card{
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #222;
	border: 1px solid #333;
	border-radius: 12px;
	padding: 20px;
	position: relative;
	transition: border-color 0.2s;
	width: 50%;
}
.expertise-card-span{
	font-size: 16px;
	color: var(--yellow);
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.expertise-card-title h3{
	color: var(--white);
	font-weight: 400;
	font-size: 18px;
}
.expertise-card-text p{
	color: #888;
	font-size: 16px;
	margin-bottom: 0;
}
/* Contact Us
===============*/
.contact-us-sec{
	padding: 150px 0;
	background-color: var(--black);
}
.contact-us-title{
	margin-bottom: 60px;
}
.contact-us-title h1{
	font-family: "Outfit", sans-serif;
	font-size: clamp(42px, 5.5vw, 66px);
	font-weight: 700;
	line-height: 1.07;
	color: var(--white);
	margin-bottom: 24px;
	text-align: center;
}
.contact-us-title h1 span{
	color: var(--yellow);
}
.contact-us-card{
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 2px;
	border: 1px solid rgba(245,197,24,0.15);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(245,197,24,0.15);
}
.contact-info-panel{
	background: #1a1a18;
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.contact-info-panel h2,
.contact-us-form h2{
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}
.contact-us-panel-info{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.panel-info-item{
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.panel-info-icon{
	width: 42px;
	height: 42px;
	background: rgba(245,197,24,0.1);
	border: 1px solid rgba(245,197,24,0.15);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}
.panel-info-icon img{
	width: 22px;
	height: 22px;
}
.divider{
	height: 1px;
	background: rgba(245,197,24,0.15);
}
.responsive-badge{
	background: rgba(245,197,24,0.07);
	border: 1px solid rgba(245,197,24,0.15);
	border-radius: 10px;
	padding: 16px 20px;
	line-height: 1.6;
}
.responsive-badge h3{
	color: var(--yellow);
	display: block;
	font-size: 14px;
}
.responsive-badge p{
	color: var(--white);
	display: block;
	margin-bottom: 0;
	font-size: 14px;
}
.responsive-badge p span{
	color: var(--yellow);
}
.panel-info-social h4{
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--white);
	margin-bottom: 18px;
	font-weight: 600;
}
.panel-social-links{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.info-item-text strong{
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--yellow);
	font-weight: 500;
	margin-bottom: 3px;
}
.info-item-text a,
.info-item-text p{
	display: block;
	color: var(--white);
	font-size: 14px;
	line-height: 1.6;
}
.contact-us-form{
	background-color: #111010;
	padding: 48px 44px;
}
.contact-us-form p {
	color: rgba(255,255,255,0.5);
	margin-bottom: 0;
	font-size: 16px;
	margin-bottom: 32px;
}
.form-row{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-field{
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}
.form-field label{
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
}
.form-field input,
.form-field textarea {
	background: #1a1a18;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 8px;
	color: var(--white);
	font-family: 'DM Sans', sans-serif;
	font-size: 0.92rem;
	padding: 12px 16px;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	width: 100%;
}
.form-field textarea{
	resize: vertical;
	height: 150px;
}
.form-field input:focus{
	border: 1px solid var(--yellow);
	box-shadow: 0 0 0 3px rgba(245,197,24,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #4a4a46;
	text-transform: uppercase;
}
.submit-btn{
	margin-top: 30px;
}
.success-message{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.success-screen {
	display: none;
	padding: 60px 40px;
	text-align: center;
	animation: fadeInUp 0.5s ease forwards;
}
.success-screen.show {
	display: flex;
}
.success-checkmark {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid #f0a500;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	animation: scaleIn 0.4s ease forwards;
}
.success-checkmark svg {
	width: 36px;
	height: 36px;
	stroke: #f0a500;
	stroke-width: 3;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.success-screen h2 {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}
.success-screen p {
	font-size: 15px;
	color: #aaaaaa;
	max-width: 320px;
	line-height: 1.6;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes scaleIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
	to{
		transform: scale(1);
		opacity: 1;
	}
}
/* Legal Pages
==================*/
.Privacy-policy-sec,
.terms-conditions-sec{
	background: var(--black);
	padding: 150px 0 80px;
}
.privacy-policy-title h1,
.terms-conditions-title h1{
	font-family: "Outfit", sans-serif;
	font-size: clamp(42px, 5.5vw, 66px);
	font-weight: 700;
	line-height: 1.07;
	color: var(--white);
	margin-bottom: 24px;
	text-align: center;
	margin-bottom: 80px;
}
.privacy-policy-title span,
.terms-conditions-title span{
	color: var(--yellow);
}
.privacy-policy-info h2,
.terms-conditions-info h2{
	font-size: clamp(32px, 4vw, 40px);
	margin-bottom: 18px;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 32px;
}
.privacy-policy-info p,
.terms-conditions-info p{
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
	margin-bottom: 32px;
	line-height: 1.9;
}
.privacy-list,
.terms-conditions-list{
	padding-left: 35px;
	padding-bottom: 32px;
}
.privacy-list:last-child,
.terms-conditions-list:last-child{
	padding-bottom: 0;
}
.privacy-list li,
.terms-conditions-list li{
	color: rgba(255, 255, 255, 0.7);
	list-style: disc;
	padding-bottom: 12px;
	font-size: 18px;
	line-height: 1.9;
}
.contact-privacy-list li{
	display: flex;
	align-items: center;
	gap: 15px;
}
.contact-privacy-list li a,
.terms-conditions-list li a{
	transition: 0.3s ease;
}
.contact-privacy-list li a:hover,
.terms-conditions-list li a:hover{
	color: var(--yellow);
}
.privacy-list li img,
.terms-conditions-list li img{
	width: 20px;
	height: 20px;
}
/* Taxi Disptach
=================*/
.service-detail-sec{
	padding: 150px 0 80px;
	background-color: var(--black);
}
.service-detail-row{
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
.service-detail-left{
	width: 50%;
}
.service-detail-right{
	width: 50%;
}
.service-detail-title {
	margin-bottom: 80px;
}
.service-detail-title h1{
	font-family: "Outfit", sans-serif;
	font-size: clamp(42px, 5.5vw, 66px);
	font-weight: 700;
	line-height: 1.07;
	color: var(--white);
	text-align: center;
}
.service-detail-title span{
	color: var(--yellow);
}
.service-detail-left p{
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255,255,255,0.6);
	max-width: 600px;
	margin-bottom: 24px;
}
.service-detail-left h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 24px;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 600;
}
.service-detail-left h2 span{
	color: var(--yellow);
}
.faqs-box{
	border-bottom: 1px solid var(--white);
}
.faq-title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 20px;
	padding: 20px 0; 
	position: relative;
	cursor: pointer;
	font-style: normal;
	font-weight: 300;
	transition: color 0.3s ease;
}
.faq-title:hover{
	color: var(--yellow);
}
.faq-title span{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.25s;
	flex-shrink: 0;
}
.faq-info{
	color: #fff;
	font-size: 18px;
	padding: 15px 0 20px;
	display: none;
	font-weight: 300;
	font-style: normal;
}
.faq-icon::before {
	content: '+';
}
.faq-title.open .faq-icon::before {
	content: '−';
}
.faq-title span {
	transition: all 0.3s ease;
}
.faq-title:hover span {
	border-color: var(--yellow);
	color: var(--yellow);
}
/*What we deliver Styles
========================*/
.what-we-deliver-sec{
	background-color: #111010;
	padding: 80px 0;
}
.deliver-info{
	text-align: center;
	margin-bottom: 80px;
}
.deliver-title h2{
	font-size: clamp(32px, 4vw, 50px);
	margin-bottom: 18px;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 600;
}
.deliver-title h2 span{
	color: var(--yellow);
}
.deliver-text p{
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255,255,255,0.6);
}
.service-showcase {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}
.service-showcase-row {
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: grid;
    grid-template-columns: 150px 1fr 2fr 150px;
    align-items: center;
    gap: 20px;
}
.service-showcase-col {
    box-sizing: border-box;
}
.service-showcase-col:last-child {
	display: flex;
	justify-content: flex-end;
}
.service-showcase-number .dot{
	font-weight: 200;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
}
.service-showcase-number span{
	font-size: 54px;
	font-weight: 500;
	color: var(--yellow);
}
.service-showcase-col-title h3{
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 0;
}
.service-showcase-col-text p{
	font-size: 16px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 0;
}
.service-showcase-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(255, 217, 0);
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}
.service-showcase-btn svg{
	width: 40px;
	height: 40px;
	padding: 10px;
	transition: 0.3s ease;
	cursor: pointer;
}
.service-showcase-btn svg:hover{
	transform: scale(1.15);
}
/* Our Team Styles
==================*/
.our-team-sec{
	background: var(--black);
	padding: 150px 0 80px;
}
.team-label{
	display: inline-block;
	border: 1px solid #3a3a2a;
	color: #ccc;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 4px;
	margin-bottom: 25px;
}
.our-team-title h1{
	font-family: "Outfit", sans-serif;
	font-size: clamp(42px, 5.5vw, 66px);
	font-weight: 700;
	line-height: 1.07;
	color: var(--white);
	margin-bottom: 24px;
	text-transform: capitalize;
}
.our-team-title h1 span{
	color: var(--yellow);
}
.our-team-text p{
	ont-size: 18px;
	line-height: 1.75;
	color: rgba(255,255,255,0.6);
	margin-bottom: 40px;
	max-width: 480px;
}
.divider{
	border: 1px solid #2a2a2a;
	margin-bottom: 50px;
}
.our-team-row{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 25px;
}
.our-team-col{
	flex: 0 0 calc(25% - 25px);
	max-width: calc(25% - 25px);
	padding-bottom: 20px;
}
.our-team-card{
	background: #1a1a1a;
	border: 0.5px solid #2e2e2e;
	border-radius: 14px;
	overflow: hidden;
	transition: 0.3s ease;
}
.our-team-card:hover{
	transform: translateY(-5px);
}
.our-team-card-img {
	height: 400px;
	overflow: hidden;
}
.our-team-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.our-team-card-info{
	padding: 18px 16px 20px;
}
.team-name h2{
	font-size: 18px;
	color: var(--white);
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}
.team-role p {
	font-size: 16px;
	color: var(--yellow);
	letter-spacing: 1.5px;
}
/* Footer Styles
=================*/
.footer-wrap{
	background: var(--black);
	padding-top: 80px;
	border-top: 1px solid rgba(245,197,24,0.15);
}
.footer-row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	padding-bottom: 40px;
	margin: 0 -15px;
}
.footer-col{
	padding: 0 15px;
}
.footer-logo{
	margin-bottom: 18px;
}
.footer-desc{
	margin-bottom: 18px;
}
.footer-desc p{
	color: rgba(255,255,255,0.45);
	max-width: 380px;
}
.footer-social-links,
.contact-social-links{
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer-social-links a,
.contact-social-links a{
	display: inline-block;
}
.footer-col h3{
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 18px;
}
.footer-col li a{
	display: block;
	font-size: 16px;
	color: rgba(255,255,255,0.55);
	transition: 0.3s ease;
	margin-bottom: 8px;
}
.footer-col li a:hover{
	color: var(--yellow);
}
.footer-bottom{
	padding: 20px 0;
}
.footer-bottom p{
	color: rgba(255,255,255,0.3);
	font-size: 16px;
	margin-bottom: 0;
}
/* Responsive Styles
=====================*/
@media(max-width: 1199px){
	.mil-h3 {
		font-size: 40px;
	}
	.mil-reveal-frame {
		padding: 0 24px;
	}
	.mil-pos-abs p {
		margin-right: 12px;
	}
	.header-nav{
		gap: 22px;
	}
	.header-nav ul{
		gap: 22px;
	}
	.header-button{
		margin-left: 22px;
	}
	.header-logo a{
		font-size: 34px;
	}
}
@media (max-width: 1024px) {
	.mil-h3 {
		font-size: 36px;
	}
	.mil-reveal-frame {
		padding: 0 20px;
	}
	.mil-pos-abs p {
		margin-right: 10px;
	}
	.header-wrap{
		padding: 20px 0;
	}
	.header-nav ul{
		gap: 18px;
	}
	.header-nav ul a{
		font-size: 16px;
	}
	.header-nav ul li.has-dropdown > a::after{
		top: -2px;
	}
	.hero{
		padding: 130px 0 60px;
	}
	.about-us-sec,
	.servcies-wrap,
	.expertise-sec,
	.outsourcing-sec{
		padding: 60px 0;
	}
	.contact-us-sec {
		padding: 100px 0;
	}
	.contact-us-card {
		grid-template-columns: 1fr 1.4fr;
	}
	.contact-info-panel {
		padding: 40px 32px;
	}
	.contact-us-form {
		padding: 40px 36px;
	}
	.contact-us-title h1 {
		font-size: clamp(36px, 4.5vw, 56px);
	}
	.our-team-text p{
		margin-bottom: 30px;
	}
	.divider{
		margin-bottom: 40px;
	}
	.our-team-col{
		flex: 0 0 calc(33.33% - 25px);
		max-width: calc(33.33% - 25px);
		padding-bottom: 20px;
	}
}
@media(max-width: 991px){
	.mil-h3 {
		font-size: 30px;
	}
	.mil-reveal-frame {
		padding: 0 18px;
	}
	.mil-pos-abs p {
		margin-right: 8px;
	}
	.menu-btn {
		display: flex;
	}
	.header-nav {
		display: block;
		position: absolute;
		top: 0;
		left: -100%;
		background-color: var(--dark);
		width: 100%;
		padding: 120px 0;
		height: 100vh;
		text-align: center;
		z-index: 99;
		transition: 0.6s ease;
	}
	.header-nav.active {
		left: 0;
	}
	.header-nav ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
		margin-bottom: 24px;
	}
	.header-nav ul a {
		font-size: 20px;
	}
	.header-nav ul li.has-dropdown .dropdown-menu {
		position: static;
		transform: none;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 10px 0 0 0;
		opacity: 1;
		visibility: visible;
		display: none;
		min-width: unset;
	}
	.header-nav ul li.has-dropdown .dropdown-menu::before {
		display: none;
	}
	.header-nav ul li.has-dropdown.open .dropdown-menu {
		display: flex;
		flex-direction: column;
		top: auto;
	}
	.header-nav ul li.has-dropdown .dropdown-menu li a {
		font-size: 16px;
		padding: 8px 16px;
		color: rgba(255, 255, 255, 0.6);
	}
	.header-nav ul li.has-dropdown .dropdown-menu li a:hover {
		padding-left: 16px;
	}
	.header-button{
		margin-left: 0;
	}
	.hero-grid{
		display: block;
	}
	.hero-left{
		width: 100%;
		margin-bottom: 40px;
	}
	.hero-desc{
		max-width: 100%;
	}
	.hero-visual{
		width: 100%;
	}
	.hero-card{
		padding: 20px 20px;
	}
	.about-us{
		display: block;
	}
	.about-col-info{
		margin-bottom: 50px;
	}
	.about-col-info, .about-col-img{
		width: 100%;
	}
	.about-text{
		max-width: 100%;
	}
	.service-card{
		padding: 30px 26px;
	}
	.service-icon{
		margin-bottom: 15px;
		width: 42px;
		height: 42px;
	}
	.service-num{
		margin-bottom: 6px;
	}
	.service-title{
		margin-bottom: 8px;
	}
	.service-desc{
		margin-bottom: 15px;
	}
	.expertise-cards {
		flex-wrap: wrap;
	}
	.expertise-card {
		flex: 1 1 calc(50% - 13px);
		width: calc(50% - 13px);
	}
	.outsourcing-row{
		display: block;
	}
	.outsourcing-col-left{
		margin-bottom: 35px;
	}
	.outsourcing-col-left, .outsourcing-col-right{
		width: 100%;
	}
	.outsourcing-desc p{
		max-width: 100%;
	}
	.contact-us-sec {
		padding: 80px 0;
	}
	.contact-us-card {
		grid-template-columns: 1fr;
		gap: 2px;
	}
	.contact-info-panel {
		padding: 36px 32px;
		gap: 2rem;
	}
	.contact-us-form {
		padding: 36px 32px;
	}
	.form-row {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	.contact-us-title {
		margin-bottom: 44px;
	}
	.panel-social-links {
		justify-content: flex-start;
		gap: 14px;
	}
}
@media(max-width: 767px){
	/* .mil-h3 {
		font-size: 24px;
	}
	.mil-reveal-frame {
		padding: 0 14px;
	}
	.mil-pos-abs p {
		margin-right: 6px;
	} */
	.hero{
		padding: 115px 0 40px;
	}
	.theme-btn,
	.btn-outline{
		padding: 12px 18px;
		font-size: 16px;
	}
	.services-cards{
		display: block;
	}
	.service-card{
		width: 100%;
		margin-bottom: 25px;
	}
	.service-card:last-child{
		margin-bottom: 0;
	}
	.about-us-sec,
	.servcies-wrap,
	.expertise-sec,
	.outsourcing-sec{
		padding: 40px 0;
	}
	.contact-us-sec {
		padding: 60px 0;
	}
	.contact-us-title h1 {
		font-size: clamp(30px, 6vw, 44px);
	}
	.contact-us-title {
		margin-bottom: 32px;
	}
	.contact-us-card {
		border-radius: 12px;
	}
	.contact-info-panel {
		padding: 30px 24px;
		gap: 1.5rem;
	}
	.contact-us-form {
		padding: 30px 24px;
	}
	.contact-us-form p {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.form-field {
		margin-bottom: 16px;
	}
	.form-field input,
	.form-field textarea {
		font-size: 0.88rem;
		padding: 11px 14px;
	}
	.form-field textarea {
		height: 120px;
	}
	.panel-info-item {
		gap: 12px;
	}
	.panel-info-icon {
		width: 38px;
		height: 38px;
	}
	.responsive-badge {
		padding: 14px 16px;
	}
	.submit-btn {
		margin-top: 20px;
	}
	.success-screen {
		padding: 40px 24px;
	}
	.success-screen h2 {
		font-size: 26px;
	}
	.our-team-row{
		gap: 15px;
	}
	.our-team-col{
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
		padding-bottom: 20px;
	}
}
@media(max-width: 575px){
	/* .mil-h3 {
		font-size: 18px;
	}
	.mil-reveal-frame {
		padding: 0 10px;
	}
	.mil-pos-abs p {
		margin-right: 5px;
	} */
	.expertise-card{
		flex: 1 1 calc(100% - 0px);
		width: calc(100% - 0px);
	}
	.contact-us-sec {
		padding: 50px 0;
	}
	.contact-us-title h1 {
		font-size: clamp(26px, 7vw, 36px);
	}
	.contact-us-title {
		margin-bottom: 24px;
	}
	.contact-us-card {
		border-radius: 10px;
		border: 1px solid rgba(245, 197, 24, 0.12);
	}
	.contact-info-panel {
		padding: 24px 18px;
		gap: 1.2rem;
	}
	.contact-us-form {
		padding: 24px 18px;
	}
	.contact-info-panel h2,
	.contact-us-form h2 {
		font-size: 14px;
	}
	.contact-us-form p {
		font-size: 13px;
		margin-bottom: 20px;
	}
	.form-field label {
		font-size: 13px;
	}
	.form-field input,
	.form-field textarea {
		font-size: 0.85rem;
		padding: 10px 12px;
		border-radius: 6px;
	}
	.form-field textarea {
		height: 110px;
	}
	.form-field {
		margin-bottom: 14px;
	}
	.panel-info-icon {
		width: 36px;
		height: 36px;
		border-radius: 8px;
	}
	.panel-info-icon img {
		width: 18px;
		height: 18px;
	}
	.info-item-text strong {
		font-size: 12px;
	}
	.info-item-text a,
	.info-item-text p {
		font-size: 13px;
	}
	.responsive-badge {
		padding: 12px 14px;
		border-radius: 8px;
	}
	.responsive-badge h3,
	.responsive-badge p {
		font-size: 13px;
	}
	.panel-info-social h4 {
		font-size: 12px;
		margin-bottom: 14px;
	}
	.panel-social-links {
		gap: 10px;
	}
	.submit-btn {
		margin-top: 16px;
		width: 100%;
	}
	.success-screen {
		padding: 30px 18px;
	}
	.success-checkmark {
		width: 64px;
		height: 64px;
	}
	.success-checkmark svg {
		width: 28px;
		height: 28px;
	}
	.success-screen h2 {
		font-size: 22px;
	}
	.success-screen p {
		font-size: 13px;
	}
	.our-team-col{
		flex: 0 0 calc(100% - 15px);
		max-width: calc(100% - 15px);
		padding-bottom: 15px;
	}
	.footer-bottom p{
		font-size: 14px;
	}
}