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

* html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
	--navy: #0d2547;
	--navy-mid: #153060;
	--navy-lt: #1a3a72;
	--blue: #1a73e8;
	--cyan: #00b4d8;
	--cyan-lt: #22d3ee;
	--white: #ffffff;
	--off-white: #f4f7fb;
	--light-grey: #e8edf5;
	--text-dark: #0d2547;
	--text-mid: #4a6080;
	--text-muted: #7a90aa;
	--border: #dde5f0;
	--shadow-sm: 0 4px 16px rgba(13, 37, 71, .07);
	--shadow-md: 0 10px 36px rgba(13, 37, 71, .12);
	--shadow-lg: 0 20px 60px rgba(13, 37, 71, .18);
	--radius: 16px;
	--radius-sm: 10px;
}

body {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0 !important;
}

a:hover {
	color: var(--mainColor);
	text-decoration: none;
}

:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

ul,
ol,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.no-padding {
	padding: 0px;
}

img {
	max-width: 100%;
	height: auto;
}


p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
}

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

.custom-container {
	max-width: 1700px;
	margin: 0px auto;
	padding: 0px 15px;
}

.cmn-gap {
	padding: 100px 0px;
	margin: 0px;
}

.cmn-butn {
	font-family: Poppins;
	font-weight: 300;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0%;
	padding: 16px 35px;
	border-radius: 30px;
}

.red-butn {
	background: linear-gradient(90deg, #42AED4 0%, #0258A1 100%);

	color: var(--white);
}

.red-butn:hover {
	background: #0258A1;
	color: var(--white);
}

.red-butn span {
	margin-left: 10px;
}

.red-butn span img {
	width: 10px;
	height: auto;
}

.white-butn {
	background: #fff;
	color: #404040;
}

.white-butn:hover {
	background: #00D1FC;
	color: #404040;
}

.white-butn span {
	margin-left: 10px;
}

.white-butn span img {
	width: 10px;
	height: auto;
}

h6 {
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #0595D2;
	margin: 0px 0px 20px 0px;
	padding: 10px 40px;
	background: #EAF3FC;
	border-radius: 30px;
	width: fit-content;
}

h2 {
	font-weight: 600;
	font-size: 48px;
	line-height: 61px;
	letter-spacing: -1px;
	text-transform: capitalize;
	color: #033B6A;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}


p {
	font-weight: 400;
	font-size: 20px;
	line-height: 35px;
	letter-spacing: 0%;
	color: #677489;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}


/* =================================== */
/* =============my-css-start===========*/
/* =================================== */

/* =================================== */
/* ============NAVBAR===========*/
/* =================================== */

.header-section {
	background: #ffff;
	padding: 20px 0px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	/* smooth background/shadow */
}

.header-section.scroll {
	background: #f2faf8;
	height: auto;
	padding: 10px 0px;
	transition: background-color 0.5s ease 0s;
	top: 0px;
	animation: slideDown 0.35s ease-out;
	position: fixed;
	transition: all 0.3s ease 0s;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.07);
	z-index: 999;
	width: 100%;
	animation: slideDown 0.35s ease-out;
}

/* Slide-down animation */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}


.logo {
	width: 280px;
	height: auto;
	margin: 0px;
	transition: all 0.3s ease;
	padding: 0px;
}

.logo img {
	width: auto;
	height: auto;
	object-fit: cover;
	transition: all 0.3s ease;
	/* smooth movement */
}

.header-section.scroll .logo {
	width: 180px;
	height: auto;
	margin: 0px;
	bottom: 0px;
	position: relative;
	z-index: 99;
}

/* =================topbar============*/

.header-section-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;

}

.nav-row {
	position: relative;
	padding: 5px 0px;
	position: relative;
	z-index: 9;
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.stellarnav {
	width: 100%;
	line-height: normal;
	display: flex;
	justify-content: start;
	align-items: center;
	height: 100%;
}

.stellarnav ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.stellarnav>ul>li>a {

	font-weight: 400;

	font-size: 18px;

	line-height: 28px;
	letter-spacing: 0%;
	color: #001A35;
	padding: 10px 30px;
	margin: 0px;
	border-radius: 30px;
	background-color: transparent;
}

.stellarnav>ul>li>a:hover {
	background: #033B6A;
	border-radius: 30px;

	color: #fff;
	text-decoration: none;
}

.stellarnav>ul>li>a.active {
	background: #033B6A;
	border-radius: 30px;

	color: #fff !important;
	text-decoration: none;
}

.stellarnav.mobile ul {
	background: #033B6A;
	z-index: 999;
}

.stellarnav ul ul {
	top: auto;
	width: 250px;
	position: absolute;
	z-index: 9900;
	text-align: left;
	display: none;
	background: #fff;
}

.main-nav .stellarnav li li {
	margin: 0px 0px;
	width: 100% !important;
}

.stellarnav li li {
	display: block !important;
	width: 100% !important;
}

.main-nav .stellarnav li li a {
	font-size: 16px;
	padding: 8px 12px;
	color: #000;
	font-weight: 400;
}

.stellarnav.mobile li a {
	border-bottom: 0px solid rgba(255, 255, 255, 0.15);
}

.stellarnav li.has-sub a {
	padding-right: 0px !important;
}

.main-nav .stellarnav li li a:hover {
	background: #f9f9f9;
	color: #1ba291;
}

.main-nav .stellarnav li li a.active {
	background: #f9f9f9;
	color: #1ba291;
}

.stellarnav li.has-sub>a::after {
	content: "\f107";
	margin-right: 20px !important;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #267ec3;
	display: inline-block;
	border: none !important;
	font: normal normal normal 16px/1 FontAwesome;
}


/* adjust value as needed */

.rightlink {
	display: flex;
	align-items: center;
	gap: 1px;
	justify-content: end;
	margin: 0px;
	width: 250px;
}

/* =================================== */
/* ============NAVBAR===========*/
/* =================================== */

/* =================================== */
/* ============banner-section=====*/
/* =================================== */


.hero-section {
	background: var(--white);
	padding: 0px;
}

.hero-inner {
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	/* min-height: 870px; */
	height: 100%;
	background: url('../images/banner-img.png') center/cover no-repeat;
	padding: 100px 80px;
}

.hero-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #00000082;

}


.hero-content {
	position: relative;
	z-index: 2;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	height: 100%;
	max-width: 87%;
	margin: 0px 0px 60px 0px;
}


h6.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #EAF3FC40;
	color: var(--white);
	border-radius: 50px;
	padding: 9px 18px;
	font-weight: 300;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 0px;
	color: var(--white);
	animation: fadeDown .7s ease both;
}


.hero-tag img {
	height: 18px;
}


.hero-section h1 {
	font-weight: 600;
	font-size: 80px;
	line-height: 90px;
	letter-spacing: 0%;
	padding: 0px;
	margin: 0px 0px 20px 0px;
	animation: fadeUp .7s .1s ease both;
	color: var(--white);
}


.hero-section h1 span {
	color: #00D1FC;
}


.hero-section p {
	font-weight: 300;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 0%;
	color: var(--white);
	padding: 0px;
	margin: 0px 0px 40px 0px;
	animation: fadeUp .7s .2s ease both;
	max-width: 70%;
}


.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: fadeUp .7s .3s ease both;
}


/* Hero right card */


.hero-package-card {
	position: absolute;
	right: 80px;
	/* bottom: 48px; */
	width: 600px;
	background: rgba(255, 255, 255, .13);
	backdrop-filter: blur(1px);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 20px;
	padding: 28px 26px;
	text-align: center;
	animation: fadeLeft .8s .4s ease both;
	top: 80px;
}

.hero-package-card img.pkg-img {
	width: 100%;
	max-height: 270px;
	object-fit: contain;
	margin-bottom: 10px;
}


.hero-package-card h4 {
	font-weight: 500;
	font-size: 36px;
	line-height: 46px;
	letter-spacing: 0%;
	text-align: center;
	margin: 0px auto;
	padding: 0px 0px 20px 0px;
	color: var(--white);
	max-width: 64%;
}


.hero-section .hero-package-card p {

	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0%;
	margin: 0px 0px 30px 0px;
	padding: 0px;
	color: var(--white);
	text-align: center;
	max-width: 100%;
}


.btn-pkg {
	background: rgba(255, 255, 255, .15);
	border: 1.5px solid rgba(255, 255, 255, .5);
	color: var(--white);

	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: all .3s;
}

.btn-pkg:hover {
	background: rgba(255, 255, 255, .3);
	color: var(--white);
}


/* =================================== */
/* ============banner-section=====*/
/* =================================== */


/* =================================== */
/* ============stats-bar=====*/
/* =================================== */

.stats-bar-section {
	padding: 40px 0px 0px;
	position: relative;
	overflow: hidden;
}

.stats-bar {
	background: #586d7f;
	border-radius: 30px;
	margin: 0px;
	padding: 40px 50px;
}


.stat-col {
	text-align: center;
	position: relative;
	border-right: 1px solid #ccc;
}


.stats-bar .col-md-3:last-child .stat-col {
	border-right: 0px solid #ffffff1c;
}


.stat-col:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10%;
	bottom: 10%;
	width: 1px;
	background: rgba(255, 255, 255, .15);
}


.stat-num {
	font-weight: 400;
	font-size: 48px;
	line-height: 48px;
	letter-spacing: 0%;
	color: var(--white);
	margin: 0px 0px 10px 0px;
}


.stat-label {
	font-weight: 300;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0%;
	color: #FFFFFF;
}


/* =================================== */
/* ============stats-bar=====*/
/* =================================== */


/* =================================== */
/* ============stats-bar=====*/
/* =================================== */


.about-section {
	position: relative;
	overflow: hidden;
}

.about-top-right p {
	margin: 40px 0px 0px 0px;
}


.about-img-wrap {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}


.about-img-wrap img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}


.about-img-wrap:hover img {
	transform: scale(1.04);
}


/* =================================== */
/* ============stats-bar=====*/
/* =================================== */


/* =================================== */
/* ==========services-section=====*/
/* =================================== */


.services-section {
	background: #072D54;
	border-radius: 30px;
	margin: 0 16px;
	padding: 60px 52px;
}


.services-header {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	margin-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding-bottom: 28px;
	justify-content: space-between;
	align-items: center;
}

.services-header h6 {
	background: #fff;
}


.services-header h3 {
	max-width: 73%;
	font-weight: 500;
	font-size: 36px;
	line-height: 46px;
	letter-spacing: 0%;
	color: #FDFDFD;
	padding: 0px;
	margin: 0px;
}


.service-card {
	background: #254769;
	border-radius: 30px 30px 30px 30px;
	padding: 30px 30px;
	position: relative;
	height: 240px;
	margin: 0px 0px 30px 0px;
}

.service-card::after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	width: 115px;
	height: 115px;
	background: #072d54;
	border-radius: 0px 0px 0px 30px;
}


.service-arrow {
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 47px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 9;
	background: linear-gradient(90deg, #42AED4 0%, #0258A1 100%);
}

.service-arrow img {
	width: 50px;
	height: auto;
	object-fit: contain;
}


.service-card h5 {
	font-weight: 500;
	font-size: 30px;
	line-height: 40px;
	color: #fff;
	margin: 0px 0px 70px 0px;
	padding: 0px;
	letter-spacing: 0%;
}


.service-card p {
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #D1D1D1;
	margin: 0px;
	padding: 0px;

}


/* =================================== */
/* ==========services-section=====*/
/* =================================== */


/* =================================== */
/* ==========why-section=====*/
/* =================================== */


.why-section {
	position: relative;
	overflow: hidden;
}


.why-feature-item {
	background: #ffffffe8;
	border-radius: 20px;
	padding: 25px 25px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
	transition: all .3s ease;
	box-shadow: 0px 4px 60.1px 0px #569BE540;
	width: 525px;
	position: relative;
    z-index: 99;
}

.why-feature-item:hover {
	border-color: rgba(0, 180, 216, .3);
	transform: translateX(-5px);
	box-shadow: var(--shadow-md);
}


.why-feature-item i {
	color: #42AED4;
	font-size: 30px;
	flex-shrink: 0;
	margin-top: 2px;
}


.why-feature-item h4 {
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	letter-spacing: 0%;
	color: #404040;
	padding: 0px;
	margin: 0px 0px 10px 0px;
}


.why-feature-item p {

	font-weight: 300;

	font-size: 16px;

	line-height: 26px;
	letter-spacing: 0%;
	color: #404040;
	padding: 0px;
	margin: 0px;

}


.why-img-col {
	position: relative;
}


.why-main-img {
	border-radius: 0px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	height: 500px;
}


.why-main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s;
}

.why-main-img:hover img {
	transform: scale(1.03);
}


.why-right-features {
	position: relative;
	left: -140px;
}

.why-right-features .why-feature-item:hover {
	transform: translateX(5px);
}


/* =================================== */
/* ==========why-section=====*/
/* =================================== */


/* =================================== */
/* ==========pricing-section =====*/
/* =================================== */


.pricing-section {
	position: relative;
	overflow: hidden;
}


.pricing-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 16px;
}


/* Popular badge row */


.popular-row {
	display: flex;
	justify-content: center;
	margin-bottom: -1px;
}


.popular-badge {
	background: #0258A1;
	color: var(--white);
	border-radius: 6px;
	padding: 10px 30px;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	position: absolute;
	top: -40px;
}

/* Pricing cards wrapper — all same height, popular card raised */


.pricing-cards-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	align-items: end;
}


.pricing-card {
	background: #F4FBFF;
	border: 1px solid #EDEDED;
	border-radius: 30px;
	padding: 35px 25px 30px;
	box-shadow: 0px 4px 4px 0px #98959540;
	transition: all .35s ease;
	position: relative;
	margin: 0px 0px 60px 0px;
}


/* 
    .pricing-card:first-child { border-radius: 20px 0 0 20px; }

    .pricing-card:last-child  { border-radius: 0 20px 20px 0; } */


.pricing-card.popular {
	border-color: 1px solid #98959540;
	border-radius: 30px;
	border-bottom: 3px solid #98959540;
	box-shadow: 0px -3px 5px 0px #98959540;
	z-index: 2;
	background: var(--white);
	padding-top: 36px;
	padding-bottom: 36px;
	box-shadow: 0px -3px 5px 0px #98959540;
	position: relative;

}


.pricing-card:not(.popular):hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(0, 180, 216, .25);
	z-index: 1;
}


.plan-name {

	font-weight: 700;

	font-size: 24px;

	line-height: 28px;
	letter-spacing: 0%;
	color: #033B6A;
	padding: 0px;
	margin: 0px 0px 10px 0px;

}


.plan-price {

	font-weight: 700;
	font-style: Bold;
	font-size: 50px;

	line-height: 100%;
	letter-spacing: 0%;
	color: #2B1C50;
	padding: 0px;
	margin: 0px 0px 30px 0px;

}


.plan-label {
	font-weight: 400;
	font-size: 30px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #4A5568;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}


.plan-feature {
	margin: 20px 0px;
	padding: 0px;
}

.plan-feature li {
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0%;
	color: #626469;
	margin: 0px;
	padding: 0px 0px 0px 30px;
	position: relative;
}

.plan-feature li::before {
	position: absolute;
	content: "\f00c";
	left: 0px;
	top: 8px;
	font: normal normal normal 16px/1 FontAwesome;
	color: #2B1C50;
	font-size: 16px;
}


/* =================================== */
/* ==========pricing-section =====*/
/* =================================== */


/* =================================== */
/* ==========testi-section=====*/
/* =================================== */


.testi-section {
	position: relative;
	overflow: hidden;
}

.testi-section h2 {


	text-align: center;
	margin-bottom: 52px;
}


.testi-section-img {
	width: 100%;
	height: 450px;
	border-radius: 20px;
	overflow: hidden;
}

.testi-section-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.testi-section-img:hover img {
	transform: scale(1.05);
}


.testi-card {
	background: #072d54;
	border-radius: 20px;
	overflow: hidden;
	padding: 60px;
	height: 450px;
}

.testi-body .testi-stars {
	font-size: 24px;
	color: #fef967;
	margin-bottom: 40px;
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 10px;
}

.testi-body p {
	font-weight: 400;
	font-size: 24px;
	line-height: 40px;
	letter-spacing: 0%;
	color: #ffffff;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

.testi-info {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 20px;
}

.testi-img {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 50%;
	background: #ccc;
}

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

.testi-author {
	padding: 0px;
	margin: 0px;
}

.testi-author h5 {
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.testi-author p {
	font-weight: 300;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.testi-carousel .owl-dots {
	position: absolute;
	bottom: -60px;
	right: 0px;
	left: 0px;
	display: flex;
	justify-content: start;
	flex-direction: row;
	gap: 5px;
}

.testi-carousel .owl-dots .owl-dot span {
	width: 14px;
	height: 14px;
	margin: 0px;
	background: #eae8e8 !important;
	display: block;

	transition: opacity 0.2s ease;
	border-radius: 50%;
}

.testi-carousel .owl-dots .owl-dot.active span,
.testi-carousel .owl-dots .owl-dot:hover span {
	background: #001a35 !important;
	width: 37px;
	height: 14px;
	border-radius: 25px;
}


/* =================================== */
/* ==========testi-section=====*/
/* =================================== */


/* =================================== */
/* ==========gallery-section=====*/
/* =================================== */


.gallery-section {
	overflow: hidden;
	position: relative;
}


.gallery-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}


.gallery-card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	margin: 0px;
}

.gallery-card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}

.gallery-card:hover img {
	transform: scale(1.06);
}

.gallery-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 37, 71, .6) 0%, transparent 60%);
	opacity: 0;
	transition: opacity .35s;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 20px;
}


.gallery-card:hover .gallery-card-overlay {
	opacity: 1;
}


#galleryCarousel .owl-nav {
	position: absolute;
	top: -150px;
	right: 0px;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 20px;
}


/* =================================== */
/* ==========gallery-section=====*/
/* =================================== */


/* =================================== */
/* ==========gallery-section=====*/
/* =================================== */


.add-tag {
	padding: 80px 0px 0px 0px;
	margin: 0px;
}

.cta-section {
	margin: 0px 0px -200px 0px;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	min-height: 435px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('../images/contact-bg.png') center/cover no-repeat;
}

.cta-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(13, 37, 71, 0.43) 0%, rgba(10, 50, 90, 0) 100%);
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px 20px;
}

.cta-content h2 {

	color: var(--white);
	margin-bottom: 20px;
}

.cta-content p {
	font-weight: 300;
	font-size: 24px;
	line-height: 34px;
	text-align: center;
	color: var(--white);
	margin: 0px auto;
	padding: 0px 0px 48px 0px;
	max-width: 70%;
}

.cta-badges {
	margin: 45px 0px 0px;
	font-size: 18px;
	color: rgba(255, 255, 255, .6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}


.cta-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	display: inline-block;
}


/* =================================== */
/* ==========gallery-section=====*/
/* =================================== */


/* =================================== */
/* ===========footer-section=====*/
/* =================================== */


footer {
	background: #001A35;
	;
	padding: 300px 0px 0px 0px;

}

.footer-logo {
	height: 44px;
	margin-bottom: 18px;
	filter: brightness(10);
}


.footer-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0px;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}


.footer-socials {
	display: flex;
	gap: 10px;
}


.footer-social {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(90deg, #42AED4 0%, #0258A1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	transition: all .25s;
}


.footer-social:hover {
	background: #0258A1;
	color: #fff;
	transform: translateY(-2px);
}


.footer-heading {
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 2%;
	color: #fff;
	margin: 0px 0px 15px 0px;
}


.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}


.footer-links li {
	margin-bottom: 12px;
}


.footer-links a {

	font-weight: 400;

	font-size: 14px;

	line-height: 24px;
	letter-spacing: 0%;
	color: #fff;

	transition: color .25s, padding-left .25s;
	display: block;
}


.footer-links a:hover {
	color: var(--cyan);
	padding-left: 4px;
}


.footer-info {
	padding: 0px 50px;
}


.newsletter-form {
	display: flex;
	border-radius: 50px;
	overflow: hidden;


	background: #fff;
	margin: 25px 0px 0px 0px;
}


.newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	padding: 12px 18px;

	font-weight: 400;

	font-size: 14px;

	line-height: 14px;
	letter-spacing: 0px;
	vertical-align: middle;
	color: #404040;

}


.newsletter-form input::placeholder {
	color: #404040;
}


.newsletter-form button {
	background: var(--cyan);
	border: none;
	border-radius: 50px;
	padding: 15px 39px;
	/* font-family: 'Nunito', sans-serif; */
	/* font-weight: 700; */
	font-size: 16px;
	color: var(--white);
	cursor: pointer;
	transition: background .25s;
	margin: 0px;
}

.newsletter-form button:hover {
	background: var(--blue);
}


.footer-bottom {
	border-top: 1px solid #454545;
	padding: 18px 0;
	margin-top: 40px;
	text-align: center;
}


.footer-bottom p {
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 2%;
	color: #fff;
	margin: 0px;
	padding: 0px;
}


.cta-badges p {
	font-size: 18px;
	margin: 0px;
	line-height: 18px;
	max-width: auto;
	padding: 0px;
}


.cta-badges p span {
	color: #e2c03b;
	font-size: 12px;
}


/* =================================== */
/* ===========footer-section=====*/
/* =================================== */


/*================================================
Go Top CSS
=================================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 100px;
	right: 20px;
	border-radius: 50%;
	background-color: #0170b9;
	color: #ffffff;
	z-index: 999;
	width: 50px;
	text-align: center;
	height: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 25px;
	-webkit-transition: var(--transition);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.go-top:hover {
	color: #ffffff;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	background-color: #000;
	border: 1px solid #000;
}

.go-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
	-webkit-animation: top-bottom 5s infinite linear;
	animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/

.float-anim {
	animation: floatY 4s ease-in-out infinite;
}

button.sub-menu-toggle {
	display: none;
}


/*================================================
end M.B CSS
=================================================*/

/*--inner page - about start--*/

.inner-banner-section {
	padding: 0px;
	margin: 0px;
	position: relative;
	overflow: hidden;
}

.inner-banner-section img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.inner-banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 0px;
	width: 100%;
}

.inner-banner-text h1 {
	font-weight: 600;
	font-size: 60px;
	line-height: 70px;
	text-transform: capitalize;
	color: #fff;
	padding: 0px;
	margin: 0px;
}

.inner-banner-text p {
	font-family: Poppins;
	font-weight: 400;
	font-size: 35px;
	line-height: 35px;
	letter-spacing: 0%;
	color: #fff;
	padding: 0px;
	margin: 0px;
}

.inner-banner-section .banner-right-info {
	width: 23%;
}


.single-service-page {
	padding: 80px 0;
	background: #fff;
}

.service-content-wrap {
	margin: auto;
}

.service-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
}

.service-content {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
}

.service-content p {
	margin-bottom: 20px;
	text-align: justify;
}


/* ── SECTION: IMAGE LEFT / CONTENT RIGHT ── */

.about-split .img-wrap {
	position: relative;
}

.about-split .img-wrap img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	display: block;
}

.about-split .img-wrap .tag {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	background: #033B6A;
	color: #fff;
	font-size: 1rem;
	padding: 1.25rem 1.75rem;
	line-height: 1.3;
}

.about-split .tag strong {
	display: block;
	font-size: 2rem;
}

.about-split .content {
	padding-left: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-split .content .eyebrow {
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #033B6A;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.about-split .content .divider {
	width: 48px;
	height: 2px;
	background: #033B6A;
	margin: 1.5rem 0;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 2rem;
}

.values-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	font-size: 18px;

}

.values-list li::before {
	content: '';
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #033B6A;
	margin-top: 0.45rem;
}

.btn-brand {
	display: inline-block;
	background: var(--clr-dark);
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.9rem 2.25rem;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
	border: 2px solid var(--clr-dark);
}

.btn-brand:hover {
	background: transparent;
	color: var(--clr-dark);
}

section.aboutuspage-section {
	padding: 67px 0px;
}

.about-page-left p {
	text-align: justify;
}

/* ─── Main Contact Section ───────────────── */
/*.contact-section {*/
/*  padding: 5.5rem 0 6rem;*/
/*}*/

/* ── Left Info Panel ── */
.info-panel {
	padding-right: 3.5rem;
}

.info-panel .section-label {
	font-size: 0.68rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #033B6A;
	font-weight: 500;
	margin-bottom: 0.6rem;
}

.info-panel h2 em {
	font-style: italic;
	color: #033B6A;
}

.info-panel p {
	font-size: 0.89rem;
	line-height: 1.80;
	color: #6b6560;
	margin-bottom: 1rem;
	text-align: justify;
}

.gold-line {
	width: 44px;
	height: 2px;
	background: #033B6A;
	margin: 1.5rem 0;
}

/* Contact detail cards */
.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #ffffff;
	border: 1px solid #c6d0d5;
	border-radius: 8px;
	padding: 1.1rem 1.25rem;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
	border-color: #033B6A;
	box-shadow: 0 4px 20px rgba(201, 147, 90, 0.12);
	color: inherit;
}

.card-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: #d9e3eb;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-icon svg {
	width: 20px;
	height: 20px;
	stroke: #033B6A;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.card-label {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #aaa49d;
	font-weight: 500;
	margin-bottom: 0.2rem;
}

.card-value {
	font-size: 0.92rem;
	font-weight: 500;
	color: #033B6A;
}


/* ── Right Form Panel ── */
.form-panel {
	background: #ffffff;
	border: 1px solid #c6d0d5;
	border-radius: 12px;
	padding: 2.75rem;
}

.form-panel .form-title {
	font-size: 1.65rem;
	font-weight: 600;
	color: #033B6A;
	margin-bottom: 0.25rem;
}

.form-panel .form-sub {
	font-size: 0.875rem;
	color: #aaa49d;
	margin-bottom: 2rem;
}

/* Form controls */
.form-panel label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	color: #6b6560;
	margin-bottom: 0.45rem;
	display: block;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
	width: 100%;
	/* background: #d9e3eb; */
	border: 1px solid #d9e3eb;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	color: #aaa49d;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
}

.form-panel textarea {
	resize: vertical;
	min-height: 130px;
}

/* Select arrow */
.select-wrap {
	position: relative;
}

.select-wrap::after {
	content: '';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-top-color: #aaa49d;
	pointer-events: none;
}

.select-wrap select {
	padding-right: 2.5rem;
	cursor: pointer;
}

/* Radio / checkbox group */
.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.radio-chip input {
	display: none;
}

.radio-chip label {
	display: inline-block;
	padding: 0.45rem 1rem;
	border: 1px solid #d9e3eb;
	border-radius: 100px;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	text-transform: none;
	color: #6b6560;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	font-weight: 400;
}

.radio-chip input:checked+label {
	border-color: #033B6A;
	background: #033B6A;
	color: #ffffff;
}

.radio-chip label:hover {
	border-color: #033B6A;
	color: #033B6A;
}

/* Submit */
.btn-submit {
	width: 100%;
	background: #033B6A;
	color: #ffffff !important;
	border: 2px solid #033B6A;
	border-radius: 6px;
	padding: 0.9rem;
	font-size: 0.78rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.22s, color 0.22s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


.form-note {
	text-align: center;
	font-size: 0.75rem;
	color: #aaa49d;
	margin-top: 1rem;
}


.inner-banner-section {
	height: 400px;
}

.inner-banner-section img {
	height: 100%;
}

.stellarnav .icon-close {

	right: 10px;
}