/* ===============================
MICRO IMAGEE DESIGN SYSTEM
================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--primary-navy: #020E2B;
	--secondary-navy: #03163D;
	--royal-blue: #1D2F8E;
	--light-navy: #0A2A6B;
	--red: #E31E24;
	--white: #ffffff;
	--light-bg: #F8F8F8;
	--border: #E5E7EB;
	--yellow: #FFD700;
	--shadow:
		0 10px 30px rgba(0, 0, 0, .08);
	--transition: .4s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #020E2B;
	color: #222;
	overflow-x: hidden;
	line-height: 1.7;
}

img {
	width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	max-width: 1470px;
	margin: auto;
}

.main {
	width: 95%;
	max-width: 1400px;
	margin: auto;
}

@media (max-width:1199px) {
	.hero-title {
		font-size: 50px;
	}
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 9999;
}

/* ==================================
HERO SECTION
================================== */
.hero-banner {
	position: relative;
	overflow: visible;
	padding-left: 5px;
	min-height: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg,
			#020E2B 0%,
			#03163D 50%,
			#010d2b 100%);
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #E31E24;
	color: #fff;
	padding: 14px 30px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all .4s ease;
}

.arrow-icon {
	transition: transform .4s ease;
}

.hero-btn:hover {
	color: #E31E24 !important;
	background-color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(227, 30, 36, .35);
}

.hero-btn:hover .arrow-icon {
	transform: translateX(8px);
}

/* ==================================
BOKEH BACKGROUND PARTICLES
================================== */
.bokeh-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.bokeh-bg span {
	position: absolute;
	border-radius: 50%;
	background: #f4c542;
	opacity: .18;
	animation: bokehFloat 6s ease-in-out infinite;
}

/* Small Particles */
.bokeh-bg span:nth-child(1) {
	width: 8px;
	height: 8px;
	top: 18%;
	right: 6%;
}

.bokeh-bg span:nth-child(2) {
	width: 12px;
	height: 12px;
	top: 35%;
	right: 10%;
	animation-delay: 1s;
}

.bokeh-bg span:nth-child(3) {
	width: 10px;
	height: 10px;
	top: 52%;
	right: 18%;
	animation-delay: 2s;
}

/* Medium Particles */
.bokeh-bg span:nth-child(4) {
	width: 22px;
	height: 22px;
	top: 22%;
	right: 8%;
	opacity: .25;
}

.bokeh-bg span:nth-child(5) {
	width: 18px;
	height: 18px;
	top: 65%;
	right: 5%;
	opacity: .22;
	animation-delay: 1.5s;
}

.bokeh-bg span:nth-child(6) {
	width: 28px;
	height: 28px;
	bottom: 18%;
	right: 3%;
	opacity: .18;
}

/* Floating Animation */
@keyframes bokehFloat {

	0%,
	100% {
		transform: translateY(0);
		opacity: .15;
	}

	50% {
		transform: translateY(-12px);
		opacity: .35;
	}
}

/* ==================================
CONTENT LAYER
================================== */
.hero-content,
.hero-image-wrapper {
	position: relative;
	z-index: 2;
}

/* ==================================
BADGE
================================== */
.hero-badge {
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	padding: 12px 22px;
	border-radius: 50px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-top: 20px;
	margin-bottom: 10px;
	animation: fadeInDown 1s ease;
}

.hero-badge {
	.star {
		color: #fff;
		margin-right: 6px;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==================================
HEADING
================================== */
.hero-title {
	color: #fff;
	font-size: clamp(38px, 5vw, 60px);
	letter-spacing: 1.5px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
	font-family: 'Playfair Display', serif;
}

.hero-title span {
	color: #E31E24;
}
.feature-col::after
/* ==================================
DESCRIPTION
================================== */
.hero-desc {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.8;
	max-width: 550px;
	margin-bottom: 35px;
}

/* ==================================
BUTTON
================================== */
.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	background: #E31E24;
	color: #fff;
	padding: 14px 30px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	transition: .4s ease;
}

.hero-btn:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow:
		0 10px 25px rgba(227, 30, 36, .35);
}

.hero-btn i {
	transition: .4s ease;
}

.hero-btn:hover i {
	transform: translateX(8px);
}

/* ==================================
TROPHY IMAGE
================================== */
.hero-image-wrapper {
	text-align: center;
}

.hero-trophy {
	width: 100%;
	margin: auto;
	animation: trophyFloat 4s ease-in-out infinite;
}

@keyframes trophyFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-18px);
	}
}

/* ==================================
COUNTERS
================================== */
.hero-counter {
	position: relative;
	background: rgba(8, 15, 40, .75);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 20px;
	padding: 10px 10px;
	z-index: 10;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-counter .row {
	align-items: center;
}

.about-stats-section .counter-item {
	opacity: 0;
	transform: translateY(60px);
	transition:
		opacity .8s ease,
		transform .8s ease;
}

.counter-item::after {
	content: "";
	position: absolute;
	top: 10%;
	right: 0;
	width: 1px;
	height: 80%;
	background: rgba(255, 255, 255, .12);
}

.counter-item:last-child::after {
	display: none;
}

.counter-item h3 {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 2px;
}

.counter-item p {
	color: #cfcfcf;
	margin: 0;
	font-size: 14px;
}

/* ==================================
TABLET
================================== */
@media(max-width:991px) {
	.hero-banner {
		padding: 100px 0 80px;
		min-height: auto;
	}

	.hero-content {
		text-align: center;
	}

	.hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-image-wrapper {
		margin-top: 50px;
	}

	.hero-trophy {
		max-width: 370px;
	}

	.hero-counter {
		margin-top: 50px;
	}
}

/* ==================================
MOBILE
================================== */
@media(max-width:576px) {
	.hero-title {
		font-size: 32px;
	}

	.hero-desc {
		font-size: 15px;
		text-align: justify;
	}

	.hero-btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.hero-counter .row {
		row-gap: 25px;
	}

	.counter-item h3 {
		font-size: 20px;
	}

	.counter-item p {
		font-size: 13px;
	}
}

/* ==================================
YELLOW HIGHLIGHT EFFECT
================================== */
.highlight {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.highlight::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 35%;
	background: var(--yellow);
	z-index: -1;
	animation: sweep 2s infinite;
}

@keyframes sweep {
	0% {
		width: 0;
	}

	50% {
		width: 100%;
	}

	100% {
		width: 100%;
	}
}

/* ==================================
SECTION TITLE
================================== */
.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	font-family: 'Playfair Display', serif;
	color: var(--secondary-navy);
}

.section-title p {
	margin-top: 10px;
}

/* ==================================
CATEGORY CARDS
================================== */
.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.category-card {
	overflow: hidden;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: .4s;
	background: #fff;
}

.category-card:hover {
	transform: translateY(-10px);
}

.category-card img {
	height: 280px;
	object-fit: cover;
}

.category-card:hover {
	box-shadow: 0 0 25px rgb(228 225 225 / 40%);
}
.slider-wrapper{
    width:100%;
}

.slider-wrapper .row{
    justify-content:center;
}
/* ==================================
ABOUT SECTION
================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-image {
	overflow: hidden;
	border-radius: 10px;
}

.about-image img {
	transition: .5s;
}

.about-image:hover img {
	transform: scale(1.08);
}

/* ==================================
FEATURED PRODUCTS
================================== */
.product-slider {
	overflow: hidden;
}

.product-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: .4s;
}

.product-card:hover {
	transform: translateY(-8px);
}

/* ==================================
PROCESS
================================== */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.process-card {
	text-align: center;
	padding: 40px;
	background: #fff;
	box-shadow: var(--shadow);
	border-radius: 10px;
	transition: .4s;
}

.process-card:hover {
	transform: translateY(-8px);
}

/* ==================================
TESTIMONIALS
================================== */
.testimonial-card {
	text-align: center;
	padding: 40px;
	background: #fff;
	box-shadow: var(--shadow);
	border-radius: 10px;
}

/* ==================================
CLIENT LOGOS
================================== */
.logo-track {
	display: flex;
	gap: 80px;
	animation: logoScroll 30s linear infinite;
}

.client-logo img {
	filter: grayscale(100%);
	transition: .4s;
}

.client-logo img:hover {
	filter: grayscale(0%);
}

@keyframes logoScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ==================================
FOOTER
================================== */
/* PAGE BACKGROUND */
.custom-footer-wrapper {
	background: #011230;
}

/* FOOTER CARD */
.footer-card {
	background: #011538;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 18px;
	padding: 35px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .35),
		0 0 25px rgba(255, 255, 255, .03);
}

/* TOP GLOW LINE */
.footer-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background:
		linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, .25),
			transparent);
}

/* COLUMN DIVIDER */
.footer-border {
	position: relative;
}

.footer-border::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, .08);
}

.footer-links li a:hover {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: #ff2b2b;
	text-underline-offset: 4px;
}

/* TITLES */
.footer-title {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-subtitle {
	color: #d7d7d7;
	margin-bottom: 20px;
	font-size: 14px;
}

/* CONTACT */
.contact-item {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 18px;
	color: #fff;
	font-size: 14px;
}

.footer-icon {
	color: #E31E24;
	font-size: 18px;
	transition: .4s;
}

/* ICON BOUNCE */
.contact-item:hover .footer-icon {
	animation: bounce .9s;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-8px);
	}

	60% {
		transform: translateY(4px);
	}
}

/* SOCIAL */
.social-links a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}

.social-links a:hover {
	color: #E31E24;
	border-color: #E31E24;
}

/* QUICK LINKS */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	text-decoration: none;
	color: #fff;
	transition: .3s;
	font-size: 14px;
}

.footer-links a:hover {
	color: #dddada;
}

/* INPUTS */
.footer-input {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, .15);
	color: #cfcfcf !important;
	border-radius: 3px;
	font-size: 14px;
}

.footer-input::placeholder {
	color: #cfcfcf !important;
}

.footer-input:focus {
	background: transparent !important;
	color: #fff !important;
	border-color: #FFD447;
	box-shadow:
		0 0 0 1px #FFD447,
		0 0 12px rgba(255, 212, 71, .4);
}

.footer-input option {
	color: #000;
}

/* BUTTON */
.send-btn {
	background: #E31E24;
	color: #fff;
	border: none;
	padding: 8px 14px;
	font-weight: 600;
	border-radius: 4px;
	transition: .4s;
}

.send-btn:hover {
	transform: translateY(-4px);
	background-color: #fff;
	color: #E31E24;
	box-shadow:
		0 0 12px rgba(227, 30, 36, 0.7),
		0 0 22px rgba(227, 30, 36, 0.5),
		0 0 35px rgba(227, 30, 36, 0.3);
}

.trophy-img {
	max-height: 300px;
	width: auto;
	animation: floatTrophy 4s ease-in-out infinite;
}

@keyframes floatTrophy {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

@media (max-width: 768px) {
	.your-class {
		justify-content: flex-start;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.stats-grid {
		justify-content: flex-start;
		gap: 12px;
	}

	.stat-card {
		width: 100%;
	}
}

/* WHATSAPP */
.whatsapp-btn {
	position: fixed;
	right: 20px;
	top: 90%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	text-decoration: none;
	z-index: 9999;
	transition: all 0.3s ease;
}

.whatsapp-btn:hover {
	color: #fff;
	transform: translateY(-50%) scale(1.1);
}

.whatsapp-btn.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@keyframes whatsappPulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
	}

	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
	}

	100% {
		transform: scale(1);
	}
}

/* LINE */
.footer-line {
	border-color: rgba(255, 255, 255, .10);
	margin: 10px 0 15px;
}

/* COPYRIGHT */
.footer-bottom {
	color: #fff;
	font-size: 14px;
}

.linkedin-icon {
	font-size: 18px;
	color: #eb960e;
}

.fa-heart {
	color: #ff0000 !important;
	/* Full red heart */
}

/* MOBILE */
@media(max-width:991px) {
	.footer-border::after {
		display: none;
	}

	.footer-card {
		padding: 25px;
	}

	.trophy-img {
		max-height: 120px;
	}
}

/* Header */
.main-header {
	padding: 0;
	border-top: 4px solid #021338;
	background: #fff;
	margin: 3px 10px 0;
}

.logo img {
	height: 80px;
}

/* Desktop Menu Gap */
.navbar-nav {
	gap: 60px;
}

/* Menu Links */
.nav-link {
	font-size: 16px;
	font-weight: 600;
	padding: 6px 0 !important;
	color: #03163D !important;
	text-decoration: none;
	transition: 0.3s;
}

/* Underline only normal menu items */
.nav-item:not(.dropdown) .nav-link:hover {
	text-decoration: underline;
	text-decoration-color: #E31E24;
	text-underline-offset: 4px;
}

/* Product menu NO underline */
.custom-dropdown .nav-link:hover {
	text-decoration: none !important;
}

/* Call Button */
.call-btn {
	background: #E31E24;
	color: #fff !important;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: 0.3s;
}

.call-btn:hover {
	background: #0A2A6B;
	color: #fff !important;
}

/* Dropdown */
/* Mobile Responsive */
@media (max-width: 991px) {
	ul.navbar-nav {
		gap: 10px;
		text-align: left;
		padding-top: 15px;
	}

	.navbar-collapse {
		background: #fff;
		padding: 15px 0;
	}

	.call-btn {
		display: block;
		margin: 15px auto 0;
		text-align: center;
		width: fit-content;
	}

	.logo img {
		height: 60px;
	}
}

@media (max-width: 991px) {
	.call-btn {
		display: none;
	}
}

/* Show dropdown on hover */
.custom-dropdown {
	position: relative;
}

/* Desktop hover only */
@media (min-width: 992px) {
	.custom-dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

.custom-dropdown:hover .dropdown-menu {
	text-align: left;
}

/* Arrow styling */
.custom-dropdown .fa-angle-down {
	font-size: 13px;
	margin-left: 5px;
	transition: 0.3s ease;
}

/* Rotate arrow on hover */
.custom-dropdown:hover .fa-angle-down {
	transform: rotate(180deg);
}

/* Remove Bootstrap dropdown arrow */
.custom-dropdown .dropdown-toggle::after {
	display: none;
}

.dropdown-menu {
	border: none !important;
	box-shadow: none;
	/* Optional: removes the shadow as well */
}

.product-section {
	background: #ffffff;
	border-radius: 30px;
	padding: 70px 10px;
	margin: 40px 20px;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		0 2px 10px rgba(0, 0, 0, 0.04);
	margin: 40px 25px;
	opacity: 0;
	transform: translateY(60px);
	transition: 1s ease;
}

.product-section.show {
	opacity: 1;
	transform: translateY(0);
}

.section-heading {
	margin-bottom: 40px;
}

.heading-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: nowrap;
}

.heading-line {
	width: 60px;
	height: 2px;
	background: #F4C542;
	border-radius: 10px;
}

.blue-text {
	color: #03163D;
}

.red-text {
	color: #E31E24;
}

.section-heading h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	white-space: nowrap;
	font-family: 'Playfair Display';
}

.section-heading p {
	color: #03163D;
	margin-top: 10px;
	font-size: 14px;
}

/* ======================
SLIDER
====================== */
.slider-wrapper {
	overflow: hidden;
	width: 100%;
	padding: 0;
}

.slider-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	animation: none !important;
	transform: none !important;
}

.slider-wrapper:hover .slider-track {
	animation: none !important;
}

/* ======================
COUNTER
====================== */
.counter-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.counter-icon-img {
	width: 39px;
	height: 39px;
	object-fit: contain;
	flex-shrink: 0;
}

/* ======================
CARD
====================== */
.category-card {
	width: 221px;
	min-width: 221px;
	max-width: 221px;
	min-height: 340px;
	position: relative;
	padding: 20px 15px 60px;
	background: #fff;
	border: 1px solid #efefef;
	border-radius: 14px;
	text-align: center;
	transition: .4s;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}

.category-card:hover {
	transform: translateY(-8px);
}

/* ======================
IMAGE
====================== */
.category-card img {
	width: 130px;
	height: 130px;
	object-fit: contain;
	margin: 0 auto 18px;
}

/* ======================
TITLE
====================== */
.category-card h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 10px 0;
}

/* ======================
TEXT
====================== */
.category-card p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 18px;
}

/* ======================
BUTTON
====================== */
.arrow-btn {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #E31E24;
	color: #fff;
	font-size: 11px;
	padding: 0;
}

.arrow-btn:hover {
	background: #E31E24;
	color: #fff;
}

.arrow-btn i {
	font-size: 11px;
}

/* ======================
ICON BOUNCE
====================== */
.category-card:hover .arrow-btn i {
	animation: bounce .8s infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-8px);
	}

	60% {
		transform: translateY(4px);
	}
}

.fa-solid,
.fas {
	font-weight: 900;
}

/* ==========================
Desktop (992px and Above)
4 Cards + 3 Cards Center
========================== */
/* =====================================
DESKTOP (992px and Above)
4 Cards + 3 Cards Center
===================================== */
@media (min-width:992px) {
	.product-section .container {
		padding-left: 0 !important;
		padding-right: 0 !important;
		max-width: 1320px;
		/* Bootstrap container width */
	}

	.slider-wrapper {
		width: 100%;
		padding: 0;
	}

	.slider-track {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		width: 100%;
	}

	.category-card {
		width: 100%;
		max-width: none;
		min-width: 0;
		min-height: 285px;
		padding: 18px 15px 55px;
	}

	.category-card img {
		width: 130px;
		height: 130px;
	}

	/* Center second row */
	.category-card:nth-child(5) {
		grid-column: 1;
		justify-self: end;
		width: 95%;
	}

	.category-card:nth-child(6) {
		grid-column: 2;
		justify-self: center;
		width: 95%;
	}

	.category-card:nth-child(7) {
		grid-column: 3;
		justify-self: start;
		width: 95%;
	}
}

/* ==========================
Tablet
========================== */
@media (min-width:768px) and (max-width:991px) {
	.slider-track {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}

	.category-card {
		width: calc((100% - 15px)/2);
		min-width: unset;
		max-width: 350px;
		min-height: 300px;
	}

	.category-card img {
		width: 100px;
		height: 100px;
	}

	.category-card h4 {
		font-size: 16px;
	}

	.category-card p {
		font-size: 15px;
	}
}

/* ==========================
Mobile
========================== */
@media (max-width:767px) {
	.product-section .container {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}

	.product-section {
		margin: 20px 5px;
		padding: 20px 10px;
		border-radius: 20px;
	}

	.slider-track {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	    .category-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 250px;
        padding: 15px 10px 50px;
    }


	.category-card img {
		width: 65px;
		height: 65px;
		margin: 15px auto 10px;
	}

	.category-card h4 {
		font-size: 15px;
		margin: 8px 0;
	}

	.category-card p {
		font-size: 13px;
		line-height: 1.4;
		margin-bottom: 12px;
	}

	.arrow-btn {
		left: 50%;
		bottom: 15px;
		transform: translateX(-50%);
	}
}

/* ======================
AUTO SCROLL
====================== */
/* ======================
TABLET
====================== */
.category-card:hover img {
	animation: bounce .6s ease;
}

/* ==================================
SECTION INITIAL STATE
================================== */
.reveal-section {
	opacity: 1;
}

.about-content {
	opacity: 0;
	transform: translateY(40px);
}

.trophy-fade {
	opacity: 0;
	transform: translateX(-100px);
}

/* ==================================
ACTIVE STATE
================================== */
.reveal-section.active .trophy-fade {
	animation:
		trophyLeft 1s ease forwards;
}

.reveal-section.active .about-content {
	animation:
		contentUp .5s ease .3s forwards;
}

/* ==================================
TROPHY LEFT
================================== */
@keyframes trophyLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ==================================
CONTENT UP
================================== */
@keyframes contentUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.counter-item {
	opacity: 0;
	transform: translateY(60px);
	transition:
		opacity .8s ease,
		transform .8s ease;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}

.about-stats-section .counter-item.show {
	opacity: 1;
	transform: translateY(0);
}

.counter-item:nth-child(1) {
	transition-delay: .1s;
}

.counter-item:nth-child(2) {
	transition-delay: .3s;
}

.counter-item:nth-child(3) {
	transition-delay: .5s;
}

.counter-item:nth-child(4) {
	transition-delay: .7s;
}

/* ==========================
ABOUT STATS SECTION
========================== */
.about-stats-section {
	background: #011538;
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .35),
		0 0 25px rgba(255, 255, 255, .03);
	padding: 70px 0;
	border-radius: 20px;
	margin: 40px 20px;
	overflow: hidden;
	position: relative;
}

.about-content h2 {
	font-family: 'Playfair Display', serif;
}

.stat-card {
	min-height: 220px;
	padding: 25px 15px;
}

.about-label {
	color: #E31E24;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
}

.about-content h2 {
	color: #fff;
	font-size: 29px;
	line-height: 1.2;
	margin: 15px 0;
	font-family: 'Playfair Display';
}

.text-red {
	color: #E31E24;
}

.about-content p {
	color: #d7d7d7;
	margin-bottom: 25px;
	font-size: 14px;
	text-align: justify;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	padding: 10px 24px;
	border: 1px solid #E31E24;
	font-weight: 600;
	color: #fff;
	background-color: #E31E24;
	text-decoration: none;
	transition: .3s;
}

.about-btn i {
	transition: .3s;
}

.about-btn:hover {
	font-weight: 600;
	color: #E31E24;
	background-color: #fff;
	border: 1px solid #fff;
}

.about-btn:hover i {
	transform: translateX(6px);
}

/* TROPHY */
.stats-trophy {
	max-height: 344px;
}

/* COUNTER CARD */
.stats-grid {
	display: grid;
	grid-template-columns:
		repeat(4, 1fr);
	gap: 15px;
}

.stat-card {
	background: #061D4D;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 180px;
	transition: .4s;
}

.stat-card:hover {
	transform: translateY(-8px);
	border-color: #E21E24;
}

.stat-card i {
	font-size: 38px;
	color: #E31E24;
	margin-bottom: 15px;
}

.stat-card h3 {
	color: #fff;
	font-size: 23px;
	margin-bottom: 10px;
}

.stat-card p {
	color: #fff;
	font-size: 15px;
	margin: 0;
}

/* TROPHY FADE LEFT */
.trophy-fade {
	opacity: 0;
	transform: translateX(-100px);
}

/* CONTENT */
.about-content {
	opacity: 0;
	transform: translateY(40px);
}

.reveal-section.active .trophy-fade {
	animation: trophyLeft 1s ease forwards;
}

.reveal-section.active .about-content {
	animation: contentUp .8s ease .3s forwards;
}

@keyframes trophyLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes contentUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media(max-width:991px) {
	.about-content h2 {
		font-size: 34px;
	}

	.stats-trophy {
		max-height: 180px;
	}
}

/* Tablet & Mobile */
@media (max-width: 991px) {

	/* Stack image and content */
	.about-stats-section .d-flex {
		flex-direction: column;
		text-align: center;
	}

	.stats-trophy {
		max-height: 150px;
		margin-bottom: 10px;
	}

	.about-content h2 {
		font-size: 28px;
	}

	.about-content p {
		text-align: center;
	}

	/* Stats: 2 cards per row */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 30px;
	}
}

/* Small Mobile */
@media (max-width: 576px) {
	.about-stats-section {
		margin: 20px 10px;
		padding: 40px 15px;
	}

	.about-content h2 {
		font-size: 24px;
	}

	.about-btn {
		width: 89%;
		justify-content: center;
	}

	/* Counter cards */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.stat-card {
		min-height: 140px;
		padding: 20px 10px;
	}

	.stat-card h3 {
		font-size: 22px;
	}

	.stat-card p {
		font-size: 14px;
	}
}

@media(max-width:991px) {
	.about-flex {
		flex-direction: column;
	}
}

@media (max-width: 991px) {
	.stats-trophy {
		width: 100%;
		max-width: 220px;
		/* adjust as needed */
		height: auto;
		object-fit: contain;
	}
}

/* =====================================
FEATURED PRODUCTS
===================================== */
.featured-products-section {
	background: #fff;
	border-radius: 35px;
	padding: 15px 10px;
	margin: 40px 25px;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .08);
}

.featured-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.featured-header h2 {
	padding-top: 19px;
	font-size: 32px;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	color: #03163D;
}

.featured-header h2 span {
	color: #E31E24;
}

.featured-header p {
	font-size: 14px;
	color: #666;
}

.view-all-products {
	color: #03163D;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .3s;
}

.view-all-products span {
	position: relative;
}

.view-all-products span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background: #E31E24;
	/* Red underline */
	transition: 0.3s;
}

.view-all-products:hover {
	color: #03163D;
}

.view-all-products:hover span::after {
	width: 100%;
}

/* SWIPER */
.featuredSwiper {
	overflow: hidden;
	padding: 10px 50px 45px;
}

.featuredSwiper .swiper-slide {
	height: auto;
}

/* CARD */
.featured-card {
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	text-align: center;
	box-shadow:
		0 3px 15px rgba(0, 0, 0, .08);
	transition: .4s;
}

.featured-card:hover {
	transform: translateY(-6px);
	box-shadow:
		0 12px 30px rgba(0, 0, 0, .15);
}

/* IMAGE */
.featured-card img {
	width: 130px;
	height: 130px;
	object-fit: contain;
	margin: auto;
	transition: .5s ease;
}

.featured-card:hover img {
	transform: scale(1.1);
}

/* TITLE */
.featured-card h5 {
	margin-top: 15px;
	color: #03163D;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

/* ARROWS */
.swiper {
	position: relative;
}

.swiper-button-prev,
.swiper-button-next {
	width: 40px !important;
	height: 40px !important;
	background: #fff;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1 !important;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

.swiper-button-prev {
	left: 10px !important;
}

.swiper-button-next {
	right: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
	top: 45% !important;
	transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 20px !important;
	color: #03163D !important;
}

/* PAGINATION */
.swiper-pagination {
	display: block !important;
	position: relative !important;
	margin-top: 25px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #E31E24 !important;
}

/* MOBILE */
@media(max-width:767px) {
	.featured-products-section {
		margin: 20px 10px;
		padding: 10px 15px;
	}

	.featured-header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.featured-header h2 {
		font-size: 32px;
	}

	.featuredSwiper {
		padding: 10px 25px 40px;
	}
}

.featuredSwiper {
	width: 100%;
}

.featuredSwiper .swiper-wrapper {
	align-items: stretch;
}

.featuredSwiper .swiper-slide {
	width: auto;
	height: auto;
}

.featured-products-section {
	opacity: 0;
	transform: translateY(80px);
	transition: all 1s ease;
}

.featured-products-section.show {
	opacity: 1;
	transform: translateY(0);
}

/* ===========================
PROCESS SECTION
=========================== */
.kp-process-wrap {
	background: #011538;
	border-radius: 18px;
	padding: 15px 5px;
    margin: 0px 20px;
	/* only 5px left & right */
	overflow: hidden;
	margin-bottom: 35px;
	border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 25px rgba(255, 255, 255, .03);
}

/* ===========================
SCROLL
=========================== */
.kp-process-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	padding-bottom: 8px;
}

.kp-process-scroll::-webkit-scrollbar {
	height: 5px;
}

.kp-process-scroll::-webkit-scrollbar-thumb {
	background: #D9971D;
	border-radius: 50px;
}

.kp-process-scroll::-webkit-scrollbar-track {
	background: #18315b;
}

/* ===========================
HEADING
=========================== */
.kp-process-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}

.kp-process-head>span {
	width: 70px;
	height: 2px;
	background: #D9971D;
	position: relative;
}

.kp-process-head>span::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #D9971D;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.kp-process-head>span:first-child::before {
	left: -4px;
}

.kp-process-head>span:last-child::before {
	right: -4px;
}

.kp-our {
	color: #ffffff;
}

.kp-process {
	color: #E31E24;
}

.kp-process-head h2 {
	margin: 0;
	color: #D9971D;
	font-size: 30px;
	font-weight: 700;
	font-family: 'Playfair Display';
}

/* ===========================
PROCESS LIST
=========================== */
.kp-process-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 95px;
	padding: 0 25px;
	width: max-content;
	margin: 0 auto;
	min-width: 1450px;
}

/* ===========================
STEP
=========================== */
.kp-step {
	width: 205px;
	min-width: 205px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	flex: none;
}

.kp-step:nth-child(2) {
	animation-delay: .5s;
}

.kp-step:nth-child(3) {
	animation-delay: .8s;
}

.kp-step:nth-child(4) {
	animation-delay: 1.1s;
}

.kp-step:nth-child(5) {
	animation-delay: 1.4s;
}

/* ===========================
DOTTED LINE
=========================== */
.kp-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 205px;
	width: 113px;
	transform: translateY(-50%);
	border-top: 2px dotted rgba(255, 255, 255, .45);
}

/* ===========================
ICON
=========================== */
.kp-icon {
	width: 74px;
	height: 74px;
	min-width: 74px;
	border: 2px solid #E31E24;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #E31E24;
	background: #011538;
	font-size: 28px;
	position: relative;
	z-index: 2;
}

.kp-icon i {
	font-size: 28px;
}

/* ===========================
CONTENT
=========================== */
.kp-content {
	width: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.kp-number {
	color: #ffffff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 6px;
}

.kp-content h6 {
	margin: 0;
	color: #e3e3e3;
	font-size: 16px;
	line-height: 1.3;
}

.kp-content p {
	margin: 3px 0 0;
	color: #e3e3e3;
	font-size: 16px;
	line-height: 1.3;
}

/* ===========================
ANIMATION
=========================== */
@keyframes kpFade {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===========================
TABLET
=========================== */
@media (max-width:1100px) {
	.kp-process-scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
	}

	.kp-process-list {
		min-width: max-content;
		justify-content: flex-start;
		padding: 0 20px;
		/* left space when scroll starts */
		gap: 35px;
	}

	.kp-step {
		width: 220px;
		min-width: 220px;
	}

	.kp-step:not(:last-child)::after {
		left: 165px;
		width: 65px;
	}
}

@media (max-width:767px) {
	.kp-process-head {
		gap: 10px;
		margin-bottom: 20px;
	}

	.kp-process-head h2 {
		font-size: 26px;
		white-space: nowrap;
		/* Prevent line break */
	}

	.kp-process-head>span {
		width: 40px;
		/* Shorter decorative lines */
	}
}

/* ===========================
MOBILE
=========================== */
/* ===========================
MOBILE
=========================== */
@media (max-width:767px) {
	.kp-process-scroll {
		overflow: visible;
	}

	.kp-process-list {
		min-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
		padding: 0 20px;
	}

	.kp-step {
		width: 100%;
		min-width: 100%;
		display: flex;
		align-items: center;
		gap: 15px;
		position: relative;
	}

	/* Remove horizontal dotted line */
	.kp-step:not(:last-child)::after {
		content: "";
		position: absolute;
		left: 29px;
		/* Center of the icon */
		top: 62px;
		/* Starts below icon */
		width: 0;
		height: 59px;
		border-left: 2px dotted rgba(255, 255, 255, .45);
		border-top: none;
		transform: none;
	}

	.kp-icon {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}

	.kp-content {
		width: auto;
	}

	.kp-process-head {
		gap: 10px;
		margin-bottom: 20px;
	}

	.kp-process-head h2 {
		font-size: 26px;
		white-space: nowrap;
	}

	.kp-process-head>span {
		width: 40px;
	}
}

/* ==========================
OUR PROCESS
========================== */
/*.process-section{*/
/*    padding:0px 0px;*/
/*    margin:30px 25px;*/
/*}*/
/*.process-title{*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    gap:15px;*/
/*    margin-bottom:35px;*/
/*}*/
/*.process-color{*/
/*	color:#03163D;*/
/*}*/
/*.process-title .line{*/
/*    width:60px;*/
/*    height:2px;*/
/*    background:#f0c24b;*/
/*}*/
/*.process-title h2{*/
/*    margin:0;*/
/*    font-size :32x;*/
/*    color:#E31E24;*/
/*    font-family:'Playfair Display', serif;*/
/*}*/
/*.process-section{*/
/*padding:0;*/
/*margin:30px 25px;*/
/*}*/
/* Title */
/*.process-title{*/
/*display:flex;*/
/*align-items:center;*/
/*justify-content:center;*/
/*gap:15px;*/
/*margin-bottom:35px;*/
/*}*/
/*.process-color{*/
/*color:#03163D;*/
/*}*/
/*.process-title .line{*/
/*width:60px;*/
/*height:2px;*/
/*background:#f0c24b;*/
/*}*/
/*.process-title h2{*/
/*margin:0;*/
/*font-size:32px;*/
/*color:#E31E24;*/
/*font-family:'Playfair Display', serif;*/
/*}*/
/* Process Container */
/*.process-container{*/
/*position:relative;*/
/*display:flex;*/
/*justify-content:space-between;*/
/*align-items:center;*/
/*gap:20px;*/
/*}*/
/*.process-container::before{*/
/*content:"";*/
/*position:absolute;*/
/*top:45px;*/
/*left:5%;*/
/*width:90%;*/
/*height:2px;*/
/*background:#d9d9d9;*/
/*z-index:1;*/
/*}*/
/* Step */
/*.process-step{*/
/*display:flex;*/
/*align-items:center;*/
/*gap:12px;*/
/*position:relative;*/
/*z-index:2;*/
/*background:#fff;*/
/*padding:10px;*/
/*opacity:0;*/
/*transform:translateY(50px);*/
/*}*/
/* Icon Circle */
/*.icon-box{*/
/*width:90px;*/
/*height:90px;*/
/*min-width:90px;*/
/*border:2px solid #E31E24;*/
/*border-radius:50%;*/
/*display:flex;*/
/*align-items:center;*/
/*justify-content:center;*/
/*background:#fff;*/
/*}*/
/*.icon-box i{*/
/*width:100%;*/
/*height:100%;*/
/*display:flex;*/
/*align-items:center;*/
/*justify-content:center;*/
/*font-size:34px;*/
/*color:#E31E24;*/
/*}*/
/* Text */
/*.step-content{*/
/*text-align:left;*/
/*}*/
/*.step-number{*/
/*display:block;*/
/*margin-bottom:5px;*/
/*font-size:20px;*/
/*font-weight:700;*/
/*color:#03163D;*/
/*}*/
/*.process-step h5{*/
/*margin:0;*/
/*font-size:16px;*/
/*line-height:1.5;*/
/*font-weight:600;*/
/*color:#03163D;*/
/*}*/
/* Animation */
/*.process-step.show{*/
/*animation:processFade .10s ease forwards;*/
/*}*/
/*@keyframes processFade{*/
/*from{*/
/*opacity:0;*/
/*transform:translateY(50px);*/
/*}*/
/*to{*/
/*    opacity:1;*/
/*    transform:translateY(0);*/
/*}*/
/*}*/
/* Tablet */
/*@media (max-width: 991px){*/
/*.process-container{*/
/*    flex-wrap:wrap;*/
/*    justify-content:center;*/
/*    gap:10px;*/
/*}*/
/*.process-container::before{*/
/*    display:none;*/
/*}*/
/*.process-step{*/
/*    width:48%;*/
/*}*/
/*.icon-box{*/
/*    width:80px;*/
/*    height:80px;*/
/*    min-width:80px;*/
/*}*/
/*.icon-box i{*/
/*    font-size:30px;*/
/*}*/
/*}*/
/* Mobile - 2 Boxes Per Row */
/*@media (max-width: 576px){*/
/*.process-step{*/
/*    width:100%;*/
/*    gap:5px;*/
/*}*/
/*.icon-box{*/
/*    width:70px;*/
/*    height:70px;*/
/*    min-width:70px;*/
/*}*/
/*.icon-box i{*/
/*    font-size:26px;*/
/*}*/
/*.step-number{*/
/*    font-size:18px;*/
/*}*/
/*.process-step h5{*/
/*    font-size:14px;*/
/*    line-height:1.4;*/
/*}*/
/*.process-title h2{*/
/*    font-size:28px;*/
/*	text-align:center;*/
/*}*/
/*.process-title .line{ display:none; }*/
/*.process-title{ justify-content:center; gap:0; }*/
/*}*/
.testimonial-client-section {
	background: var(--section-bg);
	/*border:1px solid rgba(255,255,255,.10);*/
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .35),
		0 0 25px rgba(255, 255, 255, .03);
	border-radius: 20px;
	opacity: 0;
	transform: translateY(50px);
	transition: 1s ease;
}

.testimonial-client-section.show {
	opacity: 1;
	transform: translateY(0);
}

.section-title {
	color: #fff;
	font-weight: 500;
}

.section-title span {
	color: var(--primary-red);
}

.client-heading {
	color: #fff;
}

/* TESTIMONIAL CARD */
.testimonial-card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 16px;
	padding: 25px;
	height: 100%;
	transition: .4s;
}

.color {
	color: #fff !important;
}

.testimonial-card:hover {
	transform: translateY(-6px);
}

.quote {
	color: var(--primary-red);
	font-size: 40px;
	line-height: 1;
}

.testimonial-card p {
	color: #fff;
	font-size: 14px;
	margin: 15px 0;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.client-info img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: cover;
}

.client-info h6 {
	color: #fff;
	margin: 0;
}

.client-info small {
	color: #aaa;
}

/* INDICATORS */
.carousel-indicators {
	margin-bottom: 0;
}

.carousel-indicators button {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
	background-color: #E31E24;
}

.test-color {
	color: #E31E24 !important;
}

/* LOGO SLIDER */
.logo-slider {
	overflow: hidden;
	width: 100%;
}

.logo-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: scroll 50s linear infinite;
}

.logo-box {
	width: 120px;
	height: 90px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.logo-box img {
	max-width: 80%;
	max-height: 60px;
	object-fit: contain;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* MOBILE */
@media (max-width: 767px) {
	.mobile-text-end {
		text-align: right !important;
	}
}

@media(max-width:768px) {
	.testimonial-card {
		margin-bottom: 15px;
	}

	.logo-box {
		width: 140px;
		height: 80px;
	}

	.section-title {
		text-align: center;
	}

	.client-heading {
		text-align: center;
	}
}

.quote {
	font-size: 40px;
	color: #E31E24;
	margin-bottom: 15px;
}

.hero-counter .counter-item {
	opacity: 1 !important;
	transform: none !important;
}

.hero-counter .counter-item {
	opacity: 1 !important;
	transform: none !important;
}

.counter-icon {
	font-size: 30px;
	color: #E31E24;
	margin-bottom: 10px;
	animation: floatIcon 3s ease-in-out infinite;
}

@media (max-width: 767.98px) {
	.hero-badge {
		font-size: 15px !important;
	}
}

@media(max-width:991px) {
	.hero-banner {
		min-height: auto;
		padding: 20px 0 30px;
	}

	.hero-counter {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		padding: 15px 10px;
		width: 100%;
		margin-top: 10px;
	}
}

@media (max-width: 767.98px) {
	.counter-icon {
		font-size: 25px;
	}
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: #ff2b2b;
}

.mi-main-card {

	background: #F8F8F8;

	border-radius: 30px;

	margin: 20px;

	padding-top: 24px;
	padding-bottom: 24px;
	padding-left:4px;
	padding-right:4px;

	overflow: hidden;

	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

}

@media(max-width:767px) {

	.mi-main-card {

		margin: 10px;

		padding: 5px;

		border-radius: 20px;

	}

}

/*======================================
OUR STORY SECTION
======================================*/

.mi-story-section {
	padding: 15px 10px;
}

/* IMAGE */

.mi-story-img-box {
	height: 365px;
	border: 3px solid #D4AF37;
	border-radius: 22px;
	overflow: hidden;
}

.mi-story-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* CONTENT */

.mi-story-content {
	padding: 0;
}

/* TOP LABEL */

.mi-story-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.mi-story-line {
	width: 45px;
	height: 2px;
	background: #D4AF37;
}

.mi-story-label {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.3px;
	color: #020E2B;
	text-transform: uppercase;
}

/* HEADING */

.mi-story-heading {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	line-height: 1.12;
	color: #020E2B;
	font-weight: 700;
	margin-bottom: 25px;
}

.mi-story-heading span {
	color: #E31E24;
}

/* PARAGRAPH */

.mi-story-content p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 13px;
}

/*==========================
Tablet
==========================*/

@media(max-width:991px) {

	.mi-story-section {
		padding: 10px 5px;
	}

	.mi-story-img-box {
		height: 340px;
		margin-bottom: 20px;
	}

	.mi-story-heading {
		font-size: 40px;
	}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px) {

	.mi-story-section {
		padding: 10px 5px;
	}

	.mi-story-top {
		justify-content: center;
	}

	.mi-story-content {
		text-align: center;
	}

	.mi-story-heading {
		font-size: 30px;
		line-height: 1.25;
	}

	.mi-story-content p {
		font-size: 15px;
		line-height: 1.8;
		text-align: center;
	}

	.mi-story-line {
		width: 30px;
	}

}

/*=========================================
MICRO IMAGEE - OUR MILESTONES
PART 2 - CSS
=========================================*/

.mi-ms-section {
	padding: 10px 0;
}

.mi-ms-card {
	background: #011538;
	border-radius: 20px;
	padding: 5px;
	padding-top:18px;
	padding-bottom:18px;
	min-height: 320px;
	position: relative;
	overflow: hidden;
}

/*==============================
Heading
==============================*/

.mi-ms-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 8px 0 15px;

}

.mi-ms-heading h2 {
	margin: 0;
	color: #fff;
	padding-bottom:10px;
	font-size: 32px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
}

.mi-ms-heading h2 span {
	color: #D4AF37;
}

.mi-ms-head-line {
	width: 70px;
	height: 2px;
	background: #D4AF37;
	border-radius: 20px;

}

/*==============================
Timeline
==============================*/

.mi-ms-timeline {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding: 0 15px;
	padding-bottom: 10px;
}

/* GOLD LINE */

.mi-ms-glow-line{
    position:absolute;
    left:8%;
    right:8%;
    top:36px;
    height:2px;
    background:#D4AF37;
    border-radius:50px;
    overflow:hidden;
    z-index:1;
}

/* Base Glow */
.mi-ms-glow-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#D4AF37;
    box-shadow:
        0 0 8px #FFD86A,
        0 0 16px #FFD86A,
        0 0 28px rgba(255,216,106,.9);
}

/* Running Light */
.mi-ms-glow-line::after{
    content:"";
    position:absolute;
    top:-10px;
    left:-120px;
    width:120px;
    height:22px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        #FFE680,
        rgba(255,255,255,.95),
        transparent
    );
    filter:blur(6px);
    animation:miGlowRun 3s linear infinite;
}

@keyframes miGlowRun{

    from{
        left:-120px;
    }

    to{
        left:calc(100% + 120px);
    }

}

.mi-ms-circle::before {

	content: "";

	position: absolute;

	left: -10px;

	top: 50%;

	transform: translateY(-50%);

	width: 9px;

	height: 9px;

	border-radius: 50%;

	background: #D5921A;

	box-shadow:
		0 0 8px #FFD86A,
		0 0 18px #FFD86A,
		0 0 28px #FFD86A;

}

.mi-ms-circle::after {

	content: "";

	position: absolute;

	right: -10px;

	top: 50%;

	transform: translateY(-50%);

	width: 9px;

	height: 9px;

	border-radius: 50%;

	background: #D5921A;

	box-shadow:
		0 0 8px #FFD86A,
		0 0 18px #FFD86A,
		0 0 28px #FFD86A;

}

/*==============================
Items
==============================*/

.mi-ms-item {
	width: 19%;
	position: relative;
	text-align: center;
	z-index: 5;
}

.mi-ms-circle {

	width: 74px;
	height: 74px;
	border: 1px solid #D4AF37;
	border-radius: 50%;
	background: #011538;

	display: flex;
	justify-content: center;
	align-items: center;

	margin: 0 auto 18px;

	position: relative;
	z-index: 5;


}

.mi-ms-circle i {
	font-size: 33px;
	color: #fff;
}

/*==============================
Typography
==============================*/

.mi-ms-year {
	color: #D4AF37;
	font-size: 31px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}

.mi-ms-title {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 5px;
}

.mi-ms-desc {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	max-width: 220px;
	margin: auto;
}

/*==============================
Tablet
==============================*/

@media(max-width:991px) {

	.mi-ms-card {
		min-height: auto;
		padding: 15px;
	}

	.mi-ms-heading h2 {
		font-size: 30px;
	}

	.mi-ms-timeline {
		gap: 30px;
		padding: 0;
	}

	.mi-ms-item {
		width: 20%;
	}

	.mi-ms-year {
		font-size: 29px;
	}

	.mi-ms-title {
		font-size: 20px;
	}

	.mi-ms-desc {
		font-size: 15px;
	}

}

@media (max-width:767px) {

	.mi-ms-card {
		padding: 20px 15px;
	}

	.mi-ms-heading {
		margin-bottom: 25px;
	}

	.mi-ms-heading h2 {
		font-size: 25px;
	}

	.mi-ms-head-line {
		width: 35px;
	}

	/* Vertical Timeline */

	.mi-ms-timeline {
		display: flex;
		flex-direction: column;
		gap: 40px;
		position: relative;
		padding-left: 56px;
		padding-bottom: 0;
	}

	/* Vertical Gold Line */
.mi-ms-glow-line{
        left:36px;
        right:auto;
        top:0;
        width:2px;
        height:90%;
        overflow:hidden;
    }

    .mi-ms-glow-line::before{
        inset:0;
    }

    .mi-ms-glow-line::after{
        left:-10px;
        top:-90px;
        width:22px;
        height:90px;
        background:linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.95),
            #FFE680,
            rgba(255,255,255,.95),
            transparent
        );
        filter:blur(6px);
        animation:miGlowRunVertical 3s linear infinite;
    }


	/* Timeline Items */

	.mi-ms-item {
		width: 100%;
		text-align: left;
		position: relative;
		padding-left: 35px;
	}

	/* Icon */

	.mi-ms-circle {
		position: absolute;
		left: -55px;
		top: 0;
		margin: 0;
		width: 74px;
		height: 74px;
	}

	.mi-ms-circle i {
		font-size: 34px;
	}

	/* Move Glow Balls */

	.mi-ms-circle::before {
		left: 50%;
		top: -10px;
		right: auto;
		transform: translateX(-50%);
	}

	.mi-ms-circle::after {
		left: 50%;
		bottom: -10px;
		top: auto;
		right: auto;
		transform: translateX(-50%);
	}

	/* Typography */

	.mi-ms-year {
		font-size: 34px;
		margin-bottom: 8px;
	}

	.mi-ms-title {
		font-size: 22px;
		margin-bottom: 8px;
	}

	.mi-ms-desc {
		font-size: 16px;
		max-width: 100%;
		margin: 0;
	}

}
@keyframes miGlowRunVertical{

    from{
        top:-90px;
    }

    to{
        top:calc(100% + 90px);
    }

}
/*=========================================
WHY CHOOSE MICRO IMAGEE
=========================================*/

.mi-why-section {
	padding: 20px 0;
	padding-bottom: 10px;
}

.mi-why-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 18px;
}

.mi-heading-line {
	width: 70px;
	height: 2px;
	background: #D4AF37;
	border-radius: 50px;
	flex-shrink: 0;
}

.mi-why-heading h2 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #03163D;
}

.mi-why-heading h2 span {
	color: #E31E24;
}

@media(max-width:767px) {

	.mi-heading-line {
		width: 35px;
	}

	.mi-why-heading {
		gap: 10px;
	}

	.mi-why-heading h2 {
		font-size: 28px;
		text-align: center;
	}
}

.mi-why-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.mi-why-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	padding: 20px 20px;
	text-align: center;
	overflow: hidden;
	transition: .35s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.mi-why-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

@media (max-width:767px) {

	.mi-why-section {
		padding: 40px 5px;
	}

	.mi-why-section .container {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}

}

.mi-why-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	color: #E8A112;
}

.mi-why-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.mi-why-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #03163D;
	margin-bottom: 12px;
}

.mi-why-card p {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

.mi-why-icon i {
	font-size: 52px;
	/* Increase only the icon */
	color: #E8A112;
}

/* Red Line */

.mi-why-card::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: #E31E24;
	transition: .35s ease;
}

.mi-why-card:hover::after {
	width: 55px;
}

/*==========================
Tablet
==========================*/

@media(max-width:991px) {

	.mi-why-grid {
		grid-template-columns: repeat(3, 1fr);
	}

}

/*==========================
Mobile
2 cards per row
==========================*/

@media(max-width:767px) {

	.mi-why-section {
		padding: 40px 0;
	}

	.mi-why-heading h2 {
		font-size: 32px;
	}

	.mi-why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.mi-why-card {
		padding: 22px 15px;
	}

	.mi-why-icon {
		width: 60px;
		height: 60px;
		font-size: 34px;
	}

	.mi-why-icon img {
		width: 40px;
		height: 40px;
	}

	.mi-why-card h4 {
		font-size: 16px;
	}

	.mi-why-card p {
		font-size: 15px;
		line-height: 1.6;
	}

}

/* ============================
MICRO CRAFT PROCESS
Completely Independent CSS
============================ */

.mcp-process-section {
	margin: 11px;
	background: #011538;
	border-radius: 18px;
	padding-top: 25px;
	overflow: hidden;
}
.mcp-icon-box{
    position:relative;
    width:120px;
    height:120px;
    border:2px solid #fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Rotating wrapper */
.orbit{
    position:absolute;
    inset:0;
    animation:orbit 5s linear infinite;
}

/* Badge */
.mcp-badge{
    position:absolute;

    width:38px;
    height:38px;
    border-radius:50%;
    background:#E31E24;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;

    top:50%;
    left:100%;

    transform:translate(-50%,-50%);
}

@keyframes orbit{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/*======================
Heading
======================*/

.mcp-heading {

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 18px;

}

.mcp-heading span {

	width: 65px;
	height: 2px;
	background: #D4AF37;
	position: relative;

}

.mcp-heading h2 {

	margin: 0;
	font-size: 32px;
	color: #fff;
	padding-bottom: 10px;
	font-family: 'Playfair Display', serif;
	font-weight: 700;

}

.mcp-heading h2 span {

	background: none;
	width: auto;
	height: auto;
	color: #E31E24;
	box-shadow: none;

}

@media (max-width:576px) {

	.mcp-heading {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		margin-bottom: 20px;
	}

	/* Left & Right Lines */
	.mcp-heading>span {
		display: block;
		width: 25px;
		min-width: 26px;
		height: 2px;
		background: #D4AF37;
		box-shadow:
			0 0 6px #D4AF37,
			0 0 14px rgba(212, 175, 55, .9);
	}

	.mcp-heading h2 {
		font-size: 24px;
		line-height: 1.3;
		text-align: center;
		margin: 0;
		white-space: nowrap;
	}

	.mcp-heading h2 span {
		color: #E31E24;
	}

}

/*======================
Wrapper
======================*/

.mcp-process-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	gap: 0;
	
	/* No space between items */
}


/*======================
Connector Line
======================*/

.mcp-step {
	flex: 1;
	text-align: center;
	position: relative;
	min-height: 283px;
}

/* Perfect end-to-end connector */

.mcp-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 55px;
	/* Center of circle */
	left: 50%;
	/* Start from center of current circle */
	width: 100%;
	/* Reach next circle */
	height: 1px;
	background: #FFD84A;
	z-index: 0;
}

.mcp-icon-box {
	width: 110px;
	height: 110px;
	margin: auto;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	/* Circle above line */
	background: #011538;
	color: #fff;
	font-size: 50px;
	box-shadow: 0 0 12px rgba(212, 175, 55, .25);
}

/*======================
Badge
======================*/

.mcp-badge {

	position: absolute;

	bottom: -8px;

	left: -8px;

	width: 38px;

	height: 38px;

	border-radius: 50%;

	background: #E31E24;

	color: #fff;

	font-size: 13px;

	font-weight: 600;

	display: flex;

	justify-content: center;

	align-items: center;

}


/*======================
Title
======================*/

.mcp-step h3 {

	margin: 22px 0 12px;

	color: #fff;

	font-size: 21px;

	font-family: 'Poppins', sans-serif;

	font-weight: 600;

}


/*======================
Description
======================*/

.mcp-step p {

	margin: 0;

	color: #d9d9d9;

	font-size: 16px;

	line-height: 1.7;

	font-family: 'Poppins', sans-serif;

}


/*======================
Mobile
======================*/

/*======================
Mobile
======================*/

@media(max-width:991px) {

	.mcp-process-wrapper {
		display: block;
	}

	.mcp-step {
		width: 100%;
		min-height: auto;
		text-align: left;
		padding-left: 120px;
		margin-bottom: 45px;
	}

	.mcp-icon-box {
		position: absolute;
		left: 20px;
		top: 0;
		margin: 0;
		width: 80px;
		height: 80px;
		font-size: 34px;
	}

	/* Vertical connector */

	.mcp-step:not(:last-child)::after {
		top: 80px;
		left: 60px;
		width: 2px;
		height: calc(100% + 10px);
		background: #FFD84A;
		box-shadow:
			0 0 6px #FFD84A,
			0 0 12px #FFD84A,
			0 0 20px #FFD84A;
	}

	.mcp-step h3 {
		margin-top: 0;
	}
}

/*====================================
MICRO IMAGE
CORE VALUES
Independent CSS
====================================*/

.micv-section {

	padding: 30px 0px;

}


/*=====================
Heading
=====================*/

.micv-heading {

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 5px;

}

.micv-heading h2 {

	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #020E2B;

}

.micv-heading h2 span {

	color: #E31E24;

}

.micv-line {

	width: 65px;
	height: 2px;
	background: #D4AF37;
	border-radius: 50px;

}


/*=====================
Wrapper
=====================*/

.micv-wrapper {

	display: grid;
	grid-template-columns: repeat(4, 1fr);

}


/*=====================
Item
=====================*/

.micv-item {

	height: 150px;
	padding: 30px;

	display: flex;
	align-items: center;
	gap: 20px;

	position: relative;

}


/* Divider */

.micv-item:not(:last-child)::after {

	content: "";

	position: absolute;

	right: 0;

	top: 15px;

	width: 2px;

	height: 140px;

	background: #E8E8E8;

}
.micv-item:hover .micv-icon i{
    animation:micvBounce .7s ease;
}

@keyframes micvBounce{

    0%,100%{
        transform:translateY(0);
    }

    30%{
        transform:translateY(-10px);
    }

    60%{
        transform:translateY(6px);
    }
}

/*=====================
Icon
=====================*/

.micv-icon {

	width: 56px;
	height: 56px;

	flex-shrink: 0;

	display: flex;
	align-items: center;
	justify-content: center;

}

.micv-icon i {

	font-size: 56px;
	color: #D4AF37;
	transition: .35s;

}


/*=====================
Content
=====================*/

.micv-content {

	flex: 1;

}

.micv-content h3 {

	margin: 0 0 10px;

	font-size: 22px;

	font-weight: 600;

	font-family: 'Poppins', sans-serif;

	color: #020E2B;

}

.micv-content p {

	margin: 0;

	font-size: 16px;

	line-height: 1.8;

	color: #444;

	font-family: 'Poppins', sans-serif;

}


/*=====================
Hover
=====================*/


/*=====================
Tablet
=====================*/

@media(max-width:991px) {

	.micv-wrapper {

		grid-template-columns: repeat(2, 1fr);

	}

	.micv-item:nth-child(2)::after {

		display: none;

	}

	.micv-item {

		border-bottom: 1px solid #efefef;

	}

}

/* ==================================
GLOBAL SCROLL FADE ANIMATION
================================== */

.fade-section{
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform;
}

.fade-section.show{
    opacity: 1;
    transform: translateY(0);
}
/*=====================
Mobile
=====================*/

@media(max-width:767px) {

	.micv-heading {

		gap: 12px;

	}

	.micv-heading h2 {

		font-size: 32px;

		text-align: center;

	}

	.micv-line {

		width: 35px;

	}

	.micv-wrapper {

		display: flex;

		flex-direction: column;

	}

	.micv-item {

		height: auto;

		min-height: 140px;

		padding: 10px 20px;

		gap: 22px;

	}

	.micv-item::after {

		display: none;

	}

	/* Vertical Connector */

	.micv-item:not(:last-child)::before {
		display: none;
		content: "";

		position: absolute;

		left: 47px;

		top: 82px;

		width: 3px;

		height: 90px;

		background: #D4AF37;

	}

	.micv-icon {

		width: 56px;

		height: 56px;

	}

	.micv-icon i {

		font-size: 56px;

	}

	.micv-content h3 {

		font-size: 22px;

	}

	.micv-content p {

		font-size: 16px;

		line-height: 1.7;

	}

}

/*=============================
PROMOTIONAL CTA BANNER
Independent CSS
==============================*/

.cta-banner {
	background: #011538;
	border-radius: 18px;
	padding: 22px 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	overflow: hidden;
	position: relative;
	margin-left:11px;
	margin-right:11px;
}

/* Left & Right Image */

.cta-left-img,
.cta-right-img {
	flex-shrink: 0;
}

.cta-left-img {
	margin-left: 10px;
}

.cta-right-img {
	margin-right: 10px;
}

.cta-left-img img,
.cta-right-img img {
	width: 100px;
	height: 190px;
	display: block;
	transition: .4s;
}

/* Content */

.cta-content {
	flex: 1;
	text-align: center;
}

/* Heading */

.cta-content h2 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

.cta-content h2 span {
	color: #E31E24;
}

/* Paragraph */

.cta-content p {
	margin: 10px 0 22px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #ffffff;
	font-weight: 400;
}

/* Button */

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 28px;
	background: #E31E24;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	transition: .35s ease;
}

/* Arrow */

.cta-arrow {
	transition: .35s ease;
}

/* Hover */

.cta-btn:hover {
	background: #ffffff;
	color: #E31E24;
}

.cta-btn:hover .cta-arrow {
	transform: translateX(7px);
}

/*=========================
Tablet
=========================*/

@media(max-width:991px) {

	.cta-banner {
		padding: 25px;
		gap: 20px;
	}

	.cta-content h2 {
		font-size: 32px;
	}

	.cta-left-img img,
	.cta-right-img img {
		width: 100px;
		height:auto;
	}

}

/*=========================
Mobile
=========================*/

@media(max-width:767px) {

	.cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
		gap: 18px;
	}

	.cta-left-img,
	.cta-right-img {
		margin: 0;
	}

	.cta-left-img img,
	.cta-right-img img {
		width: 70px;
	}

	.cta-content h2 {
		font-size: 28px;
	}

	.cta-content p {
		font-size: 15px;
		margin: 10px 0 18px;
	}

	.cta-btn {
		padding: 12px 24px;
		font-size: 14px;
		margin-bottom: 15px;
	}

}


/*=========================================
CONTACT SECTION
Independent CSS
=========================================*/

.mi-contact-section {
	position: relative;
	overflow: hidden;
	background: #020E2B;
	padding: 35px 0;
	z-index: 1;
}

.mi-contact-section .container {
	position: relative;
	z-index: 2;
}


/*=========================================
LEFT CONTENT
=========================================*/

.mi-contact-left {
	max-width: 620px;
}

/*=========================================
GET IN TOUCH
=========================================*/

.mi-contact-tag {

	display: inline-flex;
	align-items: center;
	gap: 10px;

	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;

	color: #ffffff;

	margin-bottom: 22px;
}

.mi-contact-tag i {

	color: #D4AF37;
	font-size: 15px;

}

/*=========================================
TITLE
=========================================*/

.mi-contact-title {

	font-family: 'Playfair Display', serif;

	font-size: 43px;

	font-weight: 700;

	line-height: 1.15;

	letter-spacing: 1.5px;

	color: #fff;

	margin-bottom: 28px;

}

.mi-contact-title span {

	color: #E31E24;

}

/*=========================================
PARAGRAPH
=========================================*/

.mi-contact-text {

	font-family: 'Poppins', sans-serif;

	font-size: 18px;

	line-height: 1.9;

	color: #ffffff;

	max-width: 520px;

	margin-bottom: 40px;

}

/*=========================================
FEATURES
=========================================*/

.mi-contact-features {

	row-gap: 30px;

}

.mi-contact-feature {

	text-align: center;

	position: relative;

}

.mi-contact-feature::after {

	content: "";

	position: absolute;

	right: 0;

	top: 15px;

	width: 1px;

	height: 60px;

	background: rgba(255, 255, 255, .15);

}

.mi-contact-feature:last-child::after {

	display: none;

}

.mi-contact-feature i {

	font-size: 40px;

	color: #D4AF37;

	margin-bottom: 15px;

}

.mi-contact-feature h6 {

	font-family: 'Poppins', sans-serif;

	color: #fff;

	font-size: 16px;

	font-weight: 500;

	line-height: 1.5;

}

.mi-contact-feature:hover i {
    animation: bounceTopBottom 0.8s ease;
}

@keyframes bounceTopBottom {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-12px);
    }
    40% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-6px);
    }
    80% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
.feature-col{
    position:relative;
}

.feature-col::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:67px;
    background:rgba(255,255,255,0.28);
}

.feature-col:last-child::after{
    display:none;
}

.mi-contact-feature::after{
    display:none;
}
.feature-col:not(:last-child)::after{
    right: -7px;   /* center of the gutter */
}
/*=========================================
FORM BOX
=========================================*/

.mi-contact-form-box {

	position: relative;

	background: #020E2B;

	border: 1px solid rgba(255, 255, 255, .12);

	border-radius: 18px;

	padding: 35px;

	overflow: hidden;

	backdrop-filter: blur(6px);

}

/* Top border line */

.mi-contact-form-box::before {

	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 100%;

	height: 1px;

	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, .35),
			transparent);

}

/*=========================================
FORM TITLE
=========================================*/

.mi-contact-form-box h3 {

	display: flex;

	align-items: center;

	gap: 14px;

	margin-bottom: 28px;

	font-family: 'Playfair Display', serif;

	font-size: 25px;

	color: #ffffff;

	font-weight: 600;

}

.mi-contact-form-box h3 i {

	color: #D4AF37;

	font-size: 24px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px) {

	.mi-contact-title {

		font-size: 48px;

	}

}

@media(max-width:991px) {

	.mi-contact-section {

		padding: 20px 0;

	}

	.mi-contact-left {

		text-align: center;

		margin: auto;

	}

	.mi-contact-text {

		margin-left: auto;
		margin-right: auto;

	}

	.mi-contact-feature::after {

		display: none;

	}

	.mi-contact-form-box {

		margin-top: 15px;

	}

}

@media(max-width:767px) {

	.mi-contact-title {

		font-size: 29px;

	}

	.mi-contact-tag {

		justify-content: center;

		font-size: 18px;

	}

	.mi-contact-text {

		font-size: 16px;

		text-align: center;

		margin-bottom: 40px;

	}

	.mi-contact-features {

		row-gap: 25px;

	}

	.mi-contact-form-box {

		padding: 25px;

	}

	.mi-contact-form-box h3 {

		font-size: 25px;

	}

}

/*=========================================
INPUT FIELDS
=========================================*/

.mi-contact-input {
	position: relative;
	margin-bottom: 18px;
}

.mi-contact-input i {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, .70);
	font-size: 15px;
	transition: .35s;
	z-index: 2;
}

.mi-contact-input input,
.mi-contact-input textarea {

	width: 100%;

	background: transparent;

	border: 1px solid rgba(255, 255, 255, .12);

	outline: none;

	color: #ffffff;

	font-family: 'Poppins', sans-serif;

	font-size: 16px;

	border-radius: 8px;

	transition: .35s;

	resize: none;

}

.mi-contact-input input {

	height: 54px;

	padding: 0 18px 0 52px;

}

.mi-contact-input textarea {

	min-height: 150px;

	padding: 18px;

}

.mi-contact-input input::placeholder,
.mi-contact-input textarea::placeholder {

	color: rgba(255, 255, 255, .55);

	font-size: 16px;

	font-family: 'Poppins', sans-serif;

}

.mi-contact-input input:focus,
.mi-contact-input textarea:focus {

	border-color: rgba(212, 175, 55, .8);

	box-shadow:
		0 0 0 1px rgba(212, 175, 55, .20);

}

.mi-contact-input input:focus+i,
.mi-contact-input textarea:focus+i {

	color: #D4AF37;

}


/*=========================================
BUTTON
=========================================*/

.mi-contact-btn {

	width: 100%;

	height: 60px;

	border: none;

	border-radius: 8px;

	background: #D4AF37;

	color: #020E2B;

	font-family: 'Poppins', sans-serif;

	font-size: 18px;

	font-weight: 600;

	display: flex;

	justify-content: center;

	align-items: center;

	gap: 14px;

	transition: .35s;

	margin-top: 10px;

}

.mi-contact-btn i {

	transition: .35s;

	font-size: 18px;

}

.mi-contact-btn:hover {

	background: #E1BA49;

}

.mi-contact-btn:hover i {

	transform: translateX(8px);

}

/*=========================================
PRIVACY NOTE
=========================================*/

.mi-contact-note {

	margin-top: 18px;

	justify-content: center;
	display: flex;

	align-items: center;

	gap: 10px;

	color: rgba(255, 255, 255, .70);

	font-size: 14px;

	font-family: 'Poppins', sans-serif;

}

.mi-contact-note i {

	color: #D4AF37;

	font-size: 15px;

}

/*=========================================
INPUT HOVER
=========================================*/

.mi-contact-input:hover input,
.mi-contact-input:hover textarea {

	border-color: rgba(255, 255, 255, .25);

}

.mi-contact-input:hover i {

	color: #D4AF37;

}

/*=========================================
FORM ANIMATION
=========================================*/

.mi-contact-form-box {

	animation: miContactFade .8s ease;

}

@keyframes miContactFade {

	from {

		opacity: 0;

		transform: translateY(40px);

	}

	to {

		opacity: 1;

		transform: translateY(0);

	}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:991px) {

	.mi-contact-btn {

		height: 56px;

		font-size: 17px;

	}

}

@media(max-width:767px) {

	.mi-contact-input input {

		height: 52px;

		padding-left: 50px;

	}

	.mi-contact-input textarea {

		min-height: 130px;

	}

	.mi-contact-note {

		justify-content: center;

		text-align: center;

		font-size: 13px;

		flex-wrap: wrap;

	}

	.mi-contact-btn {

		height: 54px;

		font-size: 16px;

	}

}

/*=========================================
2×2 ICON LAYOUT ON MOBILE
=========================================*/

@media(max-width:767px) {

	.mi-contact-feature {

		padding: 10px 5px;

	}

	.mi-contact-feature i {

		font-size: 34px;

		margin-bottom: 12px;

	}

	.mi-contact-feature h6 {

		font-size: 15px;

		line-height: 1.4;

	}

}

/*=========================================
PREMIUM GOLD SVG GLOW
=========================================*/

.mi-contact-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.mi-contact-glow svg {
	position: absolute;
	right: -120px;
	top: 0;
	width: 650px;
	height: 100%;
}

.mi-contact-glow path {

	stroke: #D4AF37;

	stroke-width: 2;

	fill: none;

	stroke-linecap: round;

	filter: drop-shadow(0 0 10px rgba(212, 175, 55, .35));

}

/*=========================================
MOVING SHINE
=========================================*/


/*=========================================
FLOATING GOLD PARTICLES
=========================================*/

.mi-contact-section::before {

	content: "";

	position: absolute;

	width: 12px;

	height: 12px;

	border-radius: 50%;

	background: #D4AF37;

	top: 18%;

	right: 12%;

	box-shadow:
		0 0 12px rgba(212, 175, 55, .85),
		80px 120px 0 rgba(212, 175, 55, .28),
		160px 60px 0 rgba(212, 175, 55, .22),
		210px 180px 0 rgba(212, 175, 55, .18),
		50px 250px 0 rgba(212, 175, 55, .25);

	animation: miParticle 9s ease-in-out infinite;

}

@keyframes miParticle {

	0% {

		transform: translateY(0);

	}

	50% {

		transform: translateY(-20px);

	}

	100% {

		transform: translateY(0);

	}

}

/*=========================================
FORM PREMIUM BORDER
=========================================*/

.mi-contact-form-box {

	position: relative;

	overflow: hidden;

}

.mi-contact-form-box::after {

	content: "";

	position: absolute;

	inset: 0;

	border-radius: 18px;

	padding: 1px;

	background: linear-gradient(180deg,
			rgba(255, 255, 255, .18),
			transparent,
			rgba(255, 255, 255, .08));

	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);

	-webkit-mask-composite: xor;

	mask-composite: exclude;

	pointer-events: none;

}

/*=========================================
SOFT GOLD SHADOW
=========================================*/

.mi-contact-form-box {

	box-shadow:

		0 0 0 1px rgba(255, 255, 255, .05),

		0 18px 50px rgba(0, 0, 0, .45),

		0 0 40px rgba(212, 175, 55, .05);

}

/*=========================================
BUTTON GLOW
=========================================*/

.mi-contact-btn {

	overflow: hidden;

	position: relative;

}

.mi-contact-btn::before {

	content: "";

	position: absolute;

	top: 0;

	left: -120%;

	width: 70%;

	height: 100%;

	background: linear-gradient(90deg,

			transparent,

			rgba(255, 255, 255, .45),

			transparent);

	transition: .8s;

}

.mi-contact-btn:hover::before {

	left: 130%;

}

/*=========================================
INPUT GLOW
=========================================*/

.mi-contact-input input:focus,
.mi-contact-input textarea:focus {

	box-shadow:

		0 0 0 1px rgba(212, 175, 55, .35),

		0 0 18px rgba(212, 175, 55, .10);

}


/*=========================================
BUTTON ANIMATION
=========================================*/

.mi-contact-btn {

	transition: .35s ease;

}

.mi-contact-btn:hover {

	transform: translateY(-3px);

}

.mi-contact-btn:hover i {

	transform: translateX(8px);

}

.contact-container {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;

	max-width: 1200px;
	margin: 50px auto;
	padding: 50px;

	background: rgb(248, 248, 248);
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 35px;
	overflow: hidden;
}

.contact-info,
.contact-form {
	flex: 1;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	outline: none;
	font-size: 16px;
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form button {
	padding: 15px;
	border: none;
	border-radius: 10px;
	background: #000;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.contact-form button:hover {
	background: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
		padding: 30px;
		gap: 30px;
	}
}

/*==================================================
MICRO IMAGEE CONTACT SECTION - PART 1
Independent CSS
==================================================*/

.micx-contact-section {
	padding: 25px 10px;
}

.micx-contact-left {
	padding: 10px 15px;
}

.micx-contact-label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #020E2B;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
}

.micx-contact-label i {
	color: #D4AF37;
	font-size: 14px;
}

.micx-contact-heading {
	font-family: 'Playfair Display', serif;
	font-size: 46px;
	font-weight: 700;
	color: #020E2B;
	margin: 12px 0 12px;
}

.micx-red-line {
	width: 70px;
	height: 3px;
	background: #E31E24;
	border-radius: 50px;
	margin-bottom: 22px;
}

.micx-contact-text {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 28px;
}


/*==============================
Contact Item
==============================*/

.micx-contact-item {

	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 0;

}

.micx-contact-icon {

	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 50%;
	background: #020E2B;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D4AF37;
	font-size: 20px;
	transition: .35s;

}

.micx-contact-item:hover .micx-contact-icon {

	background: #E31E24;
	color: #fff;
	transform: translateY(-4px);

}

.micx-contact-content h5 {

	margin: 0 0 6px;
	font-size: 18px;
	color: #E31E24;
	font-weight: 700;

}

.micx-contact-content p {

	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.7;

}

.micx-contact-left hr {

	margin: 0;
	border-color: #ececec;

}


/*====================================
RIGHT CARD
====================================*/

.micx-map-box {

	background: #020E2B;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.micx-map-header h3 {

	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;

}

.micx-map-header h3 i {

	color: #D4AF37;

}

.micx-map-header p {

	color: #d7d7d7;
	font-size: 15px;
	margin-bottom: 22px;

}


/*============================
MAP
============================*/

.micx-map-frame {

	overflow: hidden;
	border-radius: 18px;
	border: 3px solid rgba(255, 255, 255, .08);

}

.micx-map-frame iframe {

	width: 100%;
	height: 350px;
	border: 0;
	display: block;

}


/*============================
Branch Cards
============================*/

.micx-branch-card {

	background: #071632;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	gap: 15px;
	align-items: flex-start;
	transition: .35s;

}

.micx-branch-card:hover {

	transform: translateY(-5px);
	border-color: #D4AF37;

}

.micx-branch-icon {

	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 18px;

}

.micx-branch-icon.red {

	background: #E31E24;

}

.micx-branch-icon.gray {

	background: #6d768a;

}

.micx-branch-card h5 {

	color: #fff;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;

}

.micx-branch-card p {

	color: #d7d7d7;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;

}


/*============================
Desktop polish
============================*/

.micx-contact-item,
.micx-branch-card {

	transition: all .35s ease;

}

.micx-map-box {

	position: relative;
	overflow: hidden;

}

.micx-map-box::before {

	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;

	background: linear-gradient(90deg,
			transparent,
			rgba(212, 175, 55, .8),
			transparent);

}


/*====================================
TABLET
====================================*/

@media(max-width:991px) {

	.micx-contact-heading {

		font-size: 38px;

	}

	.micx-map-box {

		margin-top: 30px;

	}

	.micx-map-frame iframe {

		height: 320px;

	}

}


/*====================================
MOBILE
====================================*/

@media(max-width:767px) {

	.micx-contact-section {

		padding: 10px 5px;

	}

	.micx-contact-left {

		padding: 5px;

		text-align: center;

	}

	.micx-contact-label {

		justify-content: center;

	}

	.micx-red-line {

		margin: auto auto 20px;

	}

	.micx-contact-heading {

		font-size: 34px;

	}

	.micx-contact-text {

		font-size: 15px;

	}

	.micx-contact-item {

		flex-direction: column;

		align-items: center;

		text-align: center;

		gap: 15px;

		padding: 22px 0;

	}

	.micx-contact-icon {

		width: 60px;
		height: 60px;

	}

	.micx-map-box {

		padding: 18px;

		border-radius: 18px;

	}

	.micx-map-header {

		text-align: center;

	}

	.micx-map-header h3 {

		justify-content: center;
		font-size: 26px;

	}

	.micx-map-frame iframe {

		height: 260px;

	}

	.micx-branch-card {

		margin-bottom: 15px;

	}

}

/*=================================================
 CONTACT PAGE SECTION
=================================================*/

.mi-contactpage-section {
	padding: 10px 0;
	font-family: 'Poppins', sans-serif;
}

.mi-contactpage-section * {
	box-sizing: border-box;
}

/* Contact Icon Bounce Effect */
.mi-contactpage-item:hover .mi-contactpage-icon {
    animation: contactBounce 0.8s ease;
}

@keyframes contactBounce {
    0%,100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-4px);
    }
}
.mi-contactpage-content a {
    color: inherit;
    text-decoration: none;
}
/*=========================
LEFT SIDE
=========================*/

.mi-contactpage-left {
	padding-right: 20px;
}

.mi-contactpage-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.mi-contactpage-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 700;
	color: #222;
	text-transform: uppercase;
	white-space: nowrap;
}

.mi-contactpage-label i {
	color: #D4AF37;
	font-size: 12px;
}

.mi-contactpage-line {
	width: 45px;
	/* Adjust to 30px, 40px, 50px as needed */
	height: 2px;
	flex: 0 0 auto;
	background: #D4AF37;
}

.mi-contactpage-label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #020E2B;
	text-transform: uppercase;
}

.mi-contactpage-heading {
	font-family: 'Playfair Display', serif;
	font-size: 46px;
	color: #020E2B;
	font-weight: 700;
	margin-bottom: 20px;
}

.mi-contactpage-description {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 10px;
}

.mi-contactpage-heading {
	position: relative;
	display: inline-block;
	font-size: 48px;
	/* Adjust as needed */
	font-weight: 700;
	color: #1d1d1d;
	margin-bottom: 20px;
}

.mi-contactpage-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 70px;
	/* Underline length */
	height: 2px;
	background: #E31E24;
}

/*=========================
CONTACT ITEM
=========================*/

.mi-contactpage-item {

	display: flex;

	align-items: flex-start;

	gap: 18px;

	padding: 18px 0;

	border-bottom: 1px solid #ECECEC;

}

.mi-contactpage-item:last-child {

	border-bottom: none;

}

.mi-location-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.mi-location-title h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.mi-location-title h3 i {
	color: #D4AF37;
	font-size: 20px;
}

.mi-location-line {
	width: 55px;
	height: 2px;
	background: #D4AF37;
}

.mi-location-text {
	margin: 0;
	color: #d8d8d8;
	font-size: 16px;
	line-height: 1.7;
}

/*=========================
ICON
=========================*/

.mi-contactpage-icon {

	width: 58px;

	height: 58px;

	min-width: 58px;

	border-radius: 50%;

	background: #020E2B;

	display: flex;

	align-items: center;

	justify-content: center;

}

.mi-contactpage-icon i {

	color: #D4AF37;

	font-size: 23px;

}

/*=========================
TEXT
=========================*/

.mi-contactpage-content h5 {

	font-size: 19px;

	margin-bottom: 8px;

	font-weight: 700;

	color: #E31E24;

	font-family: 'poppins';

}

.mi-contactpage-content h6 {

	font-size: 18px;

	margin-bottom: 8px;

	color: #E31E24;

	font-family: 'poppins';

	font-weight: 700;

}

.mi-contactpage-content p {

	font-size: 16px;

	line-height: 1.8;

	color: #555;

	margin: 0;

}

/*=================================================
RIGHT SIDE
=================================================*/

.mi-contactpage-mapbox {

	background: #020E2B;

	border-radius: 24px;

	padding: 30px;

	height: 100%;

}

.mi-contactpage-mapheading {

	margin-bottom: 25px;

}

.mi-contactpage-mapheading h3 {

	font-size: 30px;

	color: #ffffff;

	margin-bottom: 8px;

	font-family: 'Playfair Display', serif;

}

.mi-contactpage-mapheading h3 i {

	color: #D4AF37;

	margin-right: 10px;

}

.mi-contactpage-mapheading p {

	color: #ffffff;

	opacity: .85;

	font-size: 16px;

	margin: 0;

}

/*=========================
GOOGLE MAP
=========================*/

.mi-contactpage-map {

	overflow: hidden;

	border-radius: 18px;

	margin-bottom: 25px;

}

.mi-contactpage-map iframe {

	width: 100%;

	height: 360px;

	border: none;

	display: block;

}

/*=========================
LOCATION CARD
=========================*/

.mi-contactpage-locationcard {

	background: #071739;

	border: 1px solid rgba(255, 255, 255, .08);

	border-radius: 18px;

	padding: 22px;

	display: flex;

	gap: 15px;

	align-items: flex-start;

	height: 100%;

	transition: .35s;

}

.mi-contactpage-locationcard:hover {

	transform: translateY(-5px);

	border-color: #D4AF37;

}

.mi-contactpage-cardicon {

	width: 48px;

	height: 48px;

	min-width: 48px;

	border-radius: 50%;

	background: #D4AF37;

	display: flex;

	justify-content: center;

	align-items: center;

}

.mi-contactpage-cardicon.red {

	background: #E31E24;

}

.mi-contactpage-cardicon i {

	color: #020E2B;

	font-size: 18px;

}

.mi-contactpage-cardicon.red i {

	color: #ffffff;

}

.mi-contactpage-locationcard h5 {

	color: #ffffff;

	font-size: 20px;

	margin-bottom: 8px;

	font-family: 'Playfair Display', serif;

}

.mi-contactpage-locationcard p {

	color: #d8d8d8;

	margin: 0;

	font-size: 15px;

	line-height: 1.7;

}
.mi-contact-left,
.mi-contact-form-box,
.mi-contactpage-left,
.mi-contactpage-mapbox,
.mi-contactpage-bottom {
    animation: fadeUp 0.8s ease forwards;
}

.mi-contact-form-box {
    animation-delay: .2s;
}

.mi-contactpage-left {
    animation-delay: .4s;
}

.mi-contactpage-mapbox {
    animation-delay: .6s;
}

.mi-contactpage-bottom {
    animation-delay: .8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Contact page animation */
.mi-contact-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s ease, transform .8s ease;
}

.mi-contact-animate.show {
    opacity: 1;
    transform: translateY(0);
}
/*=========================================
BOTTOM SECTION
=========================================*/

.mi-contactpage-bottom {
	margin-top: 20px;
	background: #020E2B;
	border-radius: 22px;
	overflow: hidden;
}

.mi-contactpage-lefttext {
	padding: 35px;
	height: 100%;
	border-right: 1px solid rgba(255, 255, 255, .08);
}

.mi-contactpage-lefttext h3 {
	font-family: 'Playfair Display', serif;
	color: #ffffff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.mi-contactpage-lefttext p {
	color: #d7d7d7;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

/*=========================================
FEATURE CARD
=========================================*/

.mi-contactpage-feature {
	height: 100%;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	border-left: 1px solid rgba(255, 255, 255, .08);
	transition: .35s ease;
}

.mi-contactpage-feature:hover {
	background: #03163D;
}

.mi-contactpage-feature i {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #D4AF37;
	color: #020E2B;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 18px;
	transition: .35s;
}

.mi-contactpage-feature:hover i {
	transform: translateY(-6px);
}

.mi-contactpage-feature h6 {
	color: #ffffff;
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

/*=========================================
LARGE DESKTOP
=========================================*/

@media(min-width:1400px) {

	.mi-contactpage-heading {
		font-size: 52px;
	}

	.mi-contactpage-map iframe {
		height: 400px;
	}

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

	.mi-contactpage-section {
		padding: 60px 0;
	}

	.mi-contactpage-left {
		padding-right: 0;
	}

	.mi-contactpage-heading {
		font-size: 38px;
	}

	.mi-contactpage-mapbox {
		margin-top: 15px;
		padding: 22px;
	}

	.mi-contactpage-map iframe {
		height: 320px;
	}

	.mi-contactpage-lefttext {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		text-align: center;
	}

	.mi-contactpage-feature {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, .08);
	}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px) {

	.mi-contactpage-section {
		padding: 10px 0;
	}

	.mi-contactpage-heading {
		font-size: 32px;
		text-align: center;
	}

	.mi-contactpage-description {
		margin-bottom: 25px;
	}

	.mi-contactpage-item {
		gap: 15px;
		padding: 18px 0;
	}

	.mi-contactpage-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.mi-contactpage-icon i {
		font-size: 18px;
	}

	.mi-contactpage-content h5 {
		font-size: 18px;
	}

	.mi-contactpage-content h6 {
		font-size: 17px;
	}

	.mi-contactpage-content p {
		font-size: 15px;
		line-height: 1.7;
	}

	.mi-contactpage-mapbox {
		padding: 18px;
		border-radius: 18px;
	}

	.mi-contactpage-mapheading {
		text-align: center;
	}

	.mi-contactpage-mapheading h3 {
		font-size: 24px;
	}

	.mi-contactpage-map iframe {
		height: 250px;
	}

	.mi-contactpage-locationcard {
		padding: 18px;
	}

	.mi-contactpage-locationcard h5 {
		font-size: 18px;
	}

	.mi-contactpage-locationcard p {
		font-size: 14px;
	}

	.mi-contactpage-bottom {
		margin-top: 30px;
	}

	.mi-contactpage-lefttext {
		padding: 25px;
	}

	.mi-contactpage-lefttext h3 {
		font-size: 24px;
	}

	.mi-contactpage-lefttext p {
		font-size: 15px;
	}

	.mi-contactpage-feature {
		min-height: 150px;
		padding: 25px 15px;
	}

	.mi-contactpage-feature i {
		width: 58px;
		height: 58px;
		font-size: 22px;
		margin-bottom: 14px;
	}

	.mi-contactpage-feature h6 {
		font-size: 15px;
	}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px) {

	.mi-contactpage-heading {
		font-size: 28px;
	}

	.mi-contactpage-map iframe {
		height: 220px;
	}

	.mi-contactpage-feature {
		min-height: 130px;
	}

	.mi-contactpage-feature i {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.mi-contactpage-feature h6 {
		font-size: 14px;
		line-height: 1.5;
	}

}

/*==========================================
 MICRO IMAGEE ABOUT HERO
 PART 2 - DESKTOP CSS
==========================================*/

.mih-about-hero {
	position: relative;
	overflow: hidden;
	background: #020E2B;
	background-image:
		radial-gradient(circle at top right, #1b2448 0%, transparent 35%),
		linear-gradient(135deg, #020E2B 0%, #03163D 100%);
	padding: 30px 20px;
}

.mih-about-hero .container {
	max-width: 1486px;
}

/*==========================
Particles
==========================*/

.mih-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.mih-particles span {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #D4AF37;
	border-radius: 50%;
	box-shadow: 0 0 15px #FFD447;
	animation: mihFloat 8s infinite ease-in-out;
}


/*==========================
Content
==========================*/

.mih-content {
	position: relative;
	z-index: 5;
}

.mih-label {

	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;

}

.mih-label i {

	color: #D4AF37;
	font-size: 14px;

}

.mih-label span {

	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #ffffff;

}

.mih-label-line {

	width: 65px;
	height: 2px;
	background: #D4AF37;

}

/*==========================
Heading
==========================*/

.mih-title {

	font-family: 'Playfair Display', serif;
	font-size: 59px;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 28px;

}

.mih-title span {

	color: #E31E24;

}

/*==========================
Paragraph
==========================*/

.mih-desc {

	max-width: 560px;

	font-family: 'Poppins', sans-serif;

	font-size: 16px;

	line-height: 1.9;

	color: #ffffff;

	margin-bottom: 35px;

}

/*==========================
Button
==========================*/

.mih-btn {

	display: inline-flex;

	align-items: center;

	gap: 16px;

	padding: 12px 25px;

	background: #E31E24;

	border-radius: 8px;

	color: #fff;

	font-size: 16px;

	font-weight: 600;

	font-family: 'Poppins';

	transition: .4s;

	text-decoration: none;

}

.mih-btn i {

	transition: .4s;

}

.mih-btn:hover {

	background: #ffffff;

	color: #E31E24;

}

.mih-btn:hover i {

	transform: translateX(8px);

}

/*==========================
Image Area
==========================*/

.mih-image-box {

	position: relative;

	height: auto;

	display: flex;

	justify-content: center;

	align-items: center;

}

/*==========================
Gold Light
==========================*/

.mih-light {

	position: absolute;

	bottom: 0;

	left: -80px;

	width: 120%;

	opacity: .9;

	z-index: 1;

}

/*==========================
Stage
==========================*/

.mih-stage {

	position: absolute;

	bottom: 0;

	width: 100%;

	z-index: 2;

}

/*==========================
Star Trophy
==========================*/

.mih-star {

	position: absolute;

	bottom: 125px;

	left: 28%;

	width: 170px;

	z-index: 5;

	animation: mihStarFloat 4s ease-in-out infinite;

}

/*==========================
Crystal Award
==========================*/

.mih-award {

	position: absolute;

	bottom: 120px;

	right: 15%;

	width: 220px;

	z-index: 6;

	animation: mihAwardFloat 5s ease-in-out infinite;

}

/*==========================
Animations
==========================*/

@keyframes mihStarFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}

}

@keyframes mihAwardFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

}

/*==========================
Golden Glow
==========================*/

.mih-image-box::before {

	content: "";

	position: absolute;

	right: 80px;

	top: 80px;

	width: 320px;

	height: 320px;

	border-radius: 50%;

	background: radial-gradient(circle,
			rgba(255, 215, 0, .35),
			transparent 70%);

	filter: blur(50px);

	z-index: 0;

}

/*==========================
Image Shadow
==========================*/

.mih-star,
.mih-award {

	filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .4));

}

/*==========================================
 MICRO IMAGEE ABOUT HERO
 PART 3 - RESPONSIVE
==========================================*/

/*==========================
 Large Tablet
==========================*/

@media (max-width:1199px) {

	.mih-about-hero {
		padding: 20px 15px;
	}

	.mih-title {
		font-size: 56px;
	}

	.mih-desc {
		max-width: 100%;
	}

	.mih-image-box {
		height: 300px;
	}

	.mih-award {
		width: 190px;
		right: 12%;
	}

	.mih-star {
		width: 145px;
		left: 30%;
	}

}

/*==========================
 Tablet
==========================*/

@media (max-width:991px) {

	.mih-about-hero {
		padding: 10px 15px;
		text-align: center;
	}

	.mih-content {
		margin-bottom: 40px;
	}

	.mih-label {
		justify-content: center;
	}

	.mih-title {
		font-size: 46px;
	}

	.mih-desc {
		margin: 0 auto 30px;
	}

	.mih-btn {
		justify-content: center;
	}

	.mih-image-box {

		width: 100%;

		height: 480px;

		margin-top: 20px;

	}

	.mih-stage {

		width: 90%;

		left: 50%;

		transform: translateX(-50%);

	}

	.mih-light {

		width: 110%;

		left: -5%;

	}

	.mih-star {

		width: 130px;

		left: 32%;

		bottom: 95px;

	}

	.mih-award {

		width: 170px;

		right: 20%;

		bottom: 95px;

	}

}

/*==========================
 Mobile
==========================*/

@media (max-width:767px) {

	.mih-about-hero {

		padding: 45px 15px;

		overflow: hidden;

	}

	.mih-content {

		text-align: center;

		margin-bottom: 30px;

	}

	.mih-label {

		justify-content: center;

		gap: 10px;

		margin-bottom: 15px;

	}

	.mih-label span {

		font-size: 13px;

	}

	.mih-label-line {

		width: 35px;

	}

	.mih-title {

		font-size: 34px;

		line-height: 1.2;

		margin-bottom: 18px;

	}

	.mih-desc {

		font-size: 15px;

		line-height: 1.8;

		margin-bottom: 25px;

		text-align: center;

	}

	.mih-btn {

		width: 100%;

		justify-content: center;

		padding: 14px;

		font-size: 15px;

	}

	.mih-image-box {

		height: 340px;

		margin-top: 20px;

	}

	.mih-stage {

		width: 100%;

		bottom: 0;

	}

	.mih-light {

		width: 135%;

		left: -18%;

		bottom: 0;

		opacity: .85;

	}

	.mih-star {

		width: 95px;

		left: 28%;

		bottom: 72px;

	}

	.mih-award {

		width: 120px;

		right: 16%;

		bottom: 70px;

	}

	.mih-image-box::before {

		width: 180px;

		height: 180px;

		right: 30px;

		top: 25px;

	}

}

/*==========================
 Small Mobile
==========================*/

@media (max-width:480px) {

	.mih-about-hero {

		padding: 35px 12px;

	}

	.mih-title {

		font-size: 30px;

	}

	.mih-desc {

		font-size: 14px;

	}

	.mih-btn {

		padding: 13px;

		font-size: 14px;

	}

	.mih-image-box {

		height: 280px;

	}

	.mih-stage {

		width: 100%;

	}

	.mih-star {

		width: 80px;

		left: 26%;

		bottom: 60px;

	}

	.mih-award {

		width: 105px;

		right: 12%;

		bottom: 58px;

	}

}

/*=============================
MICRO AWARD HERO
Independent CSS
==============================*/

.miAwardHero {

	position: relative;

	overflow: hidden;

	background: #03153B;

	padding: 55px 0;

	isolation: isolate;

}

.miAwardHero::before {

	content: "";

	position: absolute;

	top: -280px;

	right: -250px;

	width: 700px;

	height: 700px;

	border-radius: 50%;

	background:
		radial-gradient(circle,
			rgba(232, 161, 18, .22),
			transparent 70%);

	z-index: -1;

}

.miAwardHero::after {

	content: "";

	position: absolute;

	left: -300px;

	bottom: -330px;

	width: 800px;

	height: 800px;

	border-radius: 50%;

	background:
		radial-gradient(circle,
			rgba(232, 161, 18, .15),
			transparent 70%);

	z-index: -1;

}

/*========================*/

.miAwardContent {

	position: relative;

	z-index: 2;

}

/*========================*/

.miAwardLabel {

	display: flex;

	align-items: center;

	margin-bottom: 15px;

	gap: 12px;

}

/*========================*/

.miAwardStar {

	font-size: 20px;

	color: #E8A112;

}

/*========================*/

.miAwardLine {

	width: 65px;

	height: 2px;

	background: #E8A112;

	display: block;

}

/*========================*/

.miAwardText {

	font-family: Poppins, sans-serif;

	font-size: 15px;

	font-weight: 600;

	letter-spacing: .5px;

	text-transform: uppercase;

	color: #ffffff;

}

/*========================*/

.miAwardTitle {

	font-family: 'Playfair Display', serif;

	font-size: 58px;

	font-weight: 700;

	line-height: 1.12;

	color: #ffffff;

	margin-bottom: 22px;

}

/*========================*/

.miAwardTitle span {

	color: #E31E24;

}

/*========================*/

.miAwardDesc {

	font-family: Poppins, sans-serif;

	font-size: 16px;

	font-weight: 400;

	line-height: 1.9;

	color: #ffffff;

	max-width: 520px;

	margin-bottom: 10px;

}

/*========================*/

.miAwardFeature {

	text-align: center;
	transition: .35s ease;

}

.miAwardFeature img {

	width: 42px;

	margin: auto;

	margin-bottom: 12px;

	transition: .4s;

}

.miAwardFeature i {
	font-size: 42px;
	color: #E8A112;
	margin-bottom: 15px;
	transition: .35s ease;
}

.miAwardFeature h6 {

	font-family: Poppins, sans-serif;

	font-size: 14px;

	font-weight: 500;

	color: #ffffff;

	margin: 0;

	line-height: 1.6;

}

/*========================*/

.miAwardImage {

	position: relative;

	z-index: 2;

}

.miAwardImage img {

	max-width: 100%;

	animation: awardFloat 5s ease-in-out infinite;

}

/*========================*/

@keyframes awardFloat {

	0%,
	100% {

		transform: translateY(0);

	}

	50% {

		transform: translateY(-12px);

	}

}

/*==========================
Golden Curves
==========================*/

.miAwardGlow {

	position: absolute;

	pointer-events: none;

	z-index: 0;

}

.glowOne {

	right: -150px;

	top: -80px;

	width: 650px;

	height: 650px;

	border: 2px solid rgba(232, 161, 18, .25);

	border-radius: 50%;

	transform: rotate(-18deg);

}

.glowTwo {

	left: -260px;

	bottom: -250px;

	width: 720px;

	height: 720px;

	border: 2px solid rgba(232, 161, 18, .16);

	border-radius: 50%;

	transform: rotate(20deg);

}
/* Center Features */
.row.g-4.mt-4{
    justify-content: center;
}

.miAwardFeature{
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row.g-4.mt-4 > div{
    position: relative;
}

.row.g-4.mt-4 > div:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: rgba(255,255,255,.25);
}

.miAwardFeature i{
    transition: .3s;
}

.miAwardFeature:hover i{
    animation: awardBounce .6s ease;
}

@keyframes awardBounce{
    0%,100%{
        transform: translateY(0);
    }
    30%{
        transform: translateY(-10px);
    }
    60%{
        transform: translateY(5px);
    }
}
/* Initial State */
.reveal-product{
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .9s ease, transform .9s ease;
}

/* When visible */
.reveal-product.show{
    opacity: 1;
    transform: translateY(0);
}
/*=========================================
RESPONSIVE
=========================================*/

/* 1600px */

@media (max-width:1600px) {

	.miAwardHero {

		padding: 30px 0;

	}

	.miAwardTitle {

		font-size: 54px;

	}

	.miAwardImage img {

		max-width: 94%;

	}

}


/*==============================
1400px
==============================*/

@media(max-width:1400px) {

	.miAwardTitle {

		font-size: 50px;

	}

	.miAwardDesc {

		max-width: 500px;

	}

}


/*==============================
1200px
==============================*/

@media(max-width:1199px) {

	.miAwardHero {

		padding: 45px 0;

	}

	.miAwardTitle {

		font-size: 46px;

	}

	.miAwardDesc {

		font-size: 16px;

	}

	.miAwardFeature img {

		width: 38px;

	}

	.miAwardFeature h6 {

		font-size: 13px;

	}

}


/*==============================
991px
==============================*/

@media(max-width:991px) {

	.miAwardHero {

		padding: 60px 0;

		text-align: center;

	}

	.miAwardContent {

		margin-bottom: 45px;

	}

	.miAwardLabel {

		justify-content: center;

	}

	.miAwardDesc {

		margin: auto;

		margin-bottom: 25px;

		max-width: 650px;

	}

	.miAwardImage {

		margin-top: 10px;

	}

	.miAwardImage img {

		max-width: 520px;

	}

}


/*==============================
768px
==============================*/

@media(max-width:768px) {

	.miAwardHero {

		padding: 45px 0;

	}

	.miAwardTitle {

		font-size: 40px;

		line-height: 1.2;

	}

	.miAwardDesc {

		font-size: 16px;

		line-height: 1.8;

		padding: 0 15px;

	}

	.miAwardFeature {

		padding-bottom: 10px;

	}

	.miAwardFeature img {

		width: 40px;

	}

}


/*==============================
576px
==============================*/

@media(max-width:576px) {

	.miAwardHero {

		padding: 35px 0;

	}

	.miAwardTitle {

		font-size: 34px;

	}

	.miAwardLabel {

		gap: 10px;

	}

	.miAwardLine {

		width: 45px;

	}

	.miAwardText {

		font-size: 13px;

	}

	.miAwardDesc {

		font-size: 15px;

		line-height: 1.8;

	}

	.miAwardImage img {

		max-width: 100%;

	}

}


/*==============================
480px
==============================*/

@media(max-width:480px) {

	.miAwardHero {

		padding: 30px 0;

	}

	.miAwardTitle {

		font-size: 30px;

	}

	.miAwardFeature h6 {

		font-size: 13px;

	}

	.miAwardFeature img {

		width: 34px;

	}

}


/*==============================
375px
==============================*/

@media(max-width:375px) {

	.miAwardTitle {

		font-size: 28px;

	}

	.miAwardDesc {

		font-size: 14px;

	}

	.miAwardFeature h6 {

		font-size: 12px;

	}

}


/*=========================================
GOLDEN LIGHT EFFECT
=========================================*/

.miAwardHero::before {

	animation: goldGlowOne 8s linear infinite;

}

.miAwardHero::after {

	animation: goldGlowTwo 8s linear infinite;

}

@keyframes goldGlowOne {

	0% {

		transform: scale(1);

		opacity: .5;

	}

	50% {

		transform: scale(1.08);

		opacity: .9;

	}

	100% {

		transform: scale(1);

		opacity: .5;

	}

}

@keyframes goldGlowTwo {

	0% {

		transform: scale(1);

		opacity: .4;

	}

	50% {

		transform: scale(1.1);

		opacity: .8;

	}

	100% {

		transform: scale(1);

		opacity: .4;

	}

}


/*=========================================
SMOOTH HOVER
=========================================*/


/*=========================================
IMAGE EFFECT
=========================================*/

.miAwardImage img {

	filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .45));

}


/*=========================================
SMALL GOLD PARTICLES
=========================================*/

.miAwardHero {

	background-image:

		radial-gradient(circle at 90% 15%, rgba(232, 161, 18, .35) 2px, transparent 3px),

		radial-gradient(circle at 80% 25%, rgba(232, 161, 18, .25) 1px, transparent 2px),

		radial-gradient(circle at 95% 38%, rgba(232, 161, 18, .30) 2px, transparent 3px),

		radial-gradient(circle at 88% 50%, rgba(232, 161, 18, .25) 1px, transparent 2px),

		radial-gradient(circle at 93% 70%, rgba(232, 161, 18, .30) 2px, transparent 3px);

	background-repeat: no-repeat;

}


/*=========================================
TEXT SELECTION
=========================================*/

.miAwardHero ::selection {

	background: #E31E24;

	color: #fff;

}


/*=========================================
RED HIGHLIGHT
=========================================*/

.miAwardTitle span {

	position: relative;

	display: inline-block;

}

.miAwardTitle span::after {

	content: "";

	position: absolute;

	left: 0;

	bottom: 6px;

	width: 100%;

	height: 8px;

	background: rgba(227, 30, 36, .15);

	z-index: -1;

	border-radius: 30px;

}

/*==========================================
MICRO IMAGEE PRODUCT SECTION
Independent CSS
==========================================*/

.mii-products-section {
	width: 100%;
	background: #ffffff;
	padding: 5px;
}

.mii-products-section .container-fluid {
	padding: 0;
}

.mii-product-row {
	margin-bottom: 35px;
}

.mii-image-box {
	width: 100%;
	height: 320px;
	overflow: hidden;
}

.mii-image-box img {
	width: 100%;
	border-radius: 20px;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mii-content-box {

	width: 100%;
	height: 320px;

	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 10px;

	background: #ffffff;

}

.mii-heading-wrap {

	display: flex;
	align-items: center;

	margin-bottom: 18px;

}

.mii-number-wrap {

	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #03153B;

	display: flex;
	justify-content: center;
	align-items: center;

	position: relative;

	flex-shrink: 0;

}

.mii-number {

	color: #E8A112;

	font-size: 28px;

	margin-top: -8px;
	font-family: 'Playfair Display', serif;

	font-weight: 700;

}

.mii-number-wrap::after {

	content: "";

	position: absolute;

	right: -10px;

	width: 2px;

	height: 39px;

	background: #d4af37;

}

.mii-title-wrap {

	padding-left: 28px;

}

.mii-title-wrap h2 {

	margin: 0;

	font-family: 'Playfair Display', serif;

	font-size: 32px;

	font-weight: 700;

	color: #03153B;

}

.mii-content-box p {

	margin: 0;

	font-family: 'Poppins', sans-serif;

	font-size: 16px;

	color: #555;

	line-height: 1.9;

}


/*=================================
Large Desktop
=================================*/

@media(min-width:1600px) {

	.mii-image-box {

		height: 340px;

	}

	.mii-content-box {

		height: 340px;

	}

}


/*=================================
Laptop
=================================*/

@media(max-width:1199px) {

	.mii-image-box {

		height: 290px;

	}

	.mii-content-box {

		height: 290px;

	}

	.mii-title-wrap h2 {

		font-size: 30px;

	}

}


/*=================================
Tablet
=================================*/

@media(max-width:991px) {

	.mii-image-box {

		height: 260px;

	}

	.mii-content-box {

		height: auto;

		min-height: 260px;

	}

	.mii-title-wrap h2 {

		font-size: 28px;

	}

	.mii-content-box p {

		max-width: 100%;

	}

}


/*=================================
Mobile
=================================*/

@media(max-width:767px) {

	.mii-products-section {

		padding: 10px;

	}

	.mii-product-row {

		margin-bottom: 10px;

	}

	.mii-image-box {

		height: 230px;

	}

	.mii-content-box {

		height: auto;

		padding: 10px;

	}

	.mii-heading-wrap {

		margin-bottom: 15px;

	}

	.mii-number-wrap {

		width: 42px;

		height: 42px;

	}

	.mii-number {

		font-size: 18px;

	}

	.mii-number-wrap::after {

		height: 36px;

		right: -12px;

	}

	.mii-title-wrap {

		padding-left: 24px;

	}

	.mii-title-wrap h2 {

		font-size: 26px;

	}

	.mii-content-box p {

		font-size: 15px;

		line-height: 1.8;

	}

}


/*=================================
Small Mobile
=================================*/

@media(max-width:480px) {

	.mii-image-box {

		height: 210px;

	}

	.mii-title-wrap h2 {

		font-size: 24px;

	}

	.mii-content-box p {

		font-size: 15px;

	}

}

/*==========================================
INDUSTRIES WE SERVE
Unique Classes (No Conflict)
==========================================*/

.isw-section {
	padding: 15px 0;
	background: #fff;
}

/* Heading */

.isw-title-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
}

.isw-line {
	width: 70px;
	height: 2px;
	background: #d4af37;
	border-radius: 30px;
}

.isw-title {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #03153B;
}

/* Cards */

.isw-card {
	background: #03153B;
	border-radius: 12px;
	padding: 18px 10px;
	text-align: center;
	height: 100%;
	transition: .35s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.isw-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

/* Image */

.isw-card img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 12px;
}

/* Title */

.isw-card h5 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4;
}

/* Desktop XL - 8 Cards */

@media(min-width:1200px) {

	.col-xl {
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}

}

/* Tablet */

@media(max-width:991px) {

	.isw-section {
		padding: 45px 0;
	}

	.isw-title {
		font-size: 30px;
	}

	.isw-line {
		width: 50px;
	}

	.isw-card {
		padding: 20px 10px;
	}

}

/* Mobile */


@media(max-width:767px) {

	.isw-section {
		padding: 10px 0;
	}

	.isw-title-wrap {
		gap: 5px;
	}

	.isw-title {
		font-size: 24px;
		text-align: center;
	}

	.isw-line {
		width: 30px;
	}

	.isw-card {
		padding: 18px 10px;
		min-height: 125px;
	}

	.isw-card img {
		width: 42px;
		height: 42px;
	}

	.isw-card h5 {
		font-size: 15px;
		line-height: 1.35;
	}

}

@media (min-width: 992px) {
	.custom-dropdown:hover>.dropdown-menu {
		display: block;
		margin-top: 0;
	}
}
.mi-contactpage-map {
    display: flex;
    gap: 20px;
}

.mi-contactpage-map {
    display: flex;
    gap: 20px;
    width: 100%;
}

.mi-contactpage-map iframe {
    flex: 1;
    height: 450px;
    border: 0;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .mi-contactpage-map {
        flex-direction: column;
    }

    .mi-contactpage-map iframe {
        width: 100%;
        height: 350px;
    }
}