:root {
	--dark: #073d39;
	--dark-2: #0b4541;
	--green: #27ACE3;
	--light: #f8f8ef;
	--white: #ffffff;
	--text: #173d3a;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: var(--light);
}

/* =========================
TOP BAR
========================== */

.top-bar {
	background: var(--green);
	color: #fff;
	font-size: normal;
	font-weight: 700;
	padding: 7px 0;
}

.top-bar i {
	font-size: 10px;
}

.top-social a {
	color: #fff;
	text-decoration: none;
	margin-left: 10px; 
}

/* =========================
NAVIGATION
========================== */

.main-nav {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	padding: 18px 0;

	background: linear-gradient(
	180deg,
	rgba(255, 255, 255, 0.92) 0%,
	rgba(255, 255, 255, 0.68) 100%
	);

	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);

	border-bottom: 1px solid rgba(255, 255, 255, 0.9);

	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
	inset 0 1px 0 rgba(255, 255, 255, 1);
}

.navbar-brand {
	color: #0000 !important;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.5px;
}

.brand-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-right: 7px;
	color: var(--green);
	font-size: 20px;
}

.navbar-nav .nav-link {
	color: rgba(0,0,0,.9) !important;
	font-size: 22px;
	font-weight: 500;
	margin: 0 10px;
	text-transform: uppercase !important;
}

.navbar-nav .nav-link.active {
	color: #27ACE3 !important;
	font-weight: 600;
}

.navbar-nav .nav-link {
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--green) !important;
}

.nav-book-btn {
	background: var(--green);
	color: #103d38;
	border-radius: 30px;
	padding: 8px 8px 8px 18px; 
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.nav-book-btn span {
	width: 25px;
	height: 25px;
	background: #083f3b;
	color: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =========================
HERO
========================== */

.hero {
	min-height: 85vh;
	position: relative;
	overflow: hidden;
	background: linear-gradient(
	90deg,
	rgba(5, 58, 54, .98) 0%,
	rgba(5, 58, 54, .91) 35%,
	rgba(5, 58, 54, .48) 62%,
	rgba(5, 58, 54, .05) 100%
	),
	url("../img/bg-2.PNG") center right / cover no-repeat;
}

.hero-content {
	position: relative;
	z-index: 5;
	padding-top: 145px;
	padding-bottom: 90px;
}

.rating {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255,255,255,.08);
	border-radius: 20px;
	padding: 5px 11px;
	color: #fff; 
	margin-bottom: 18px;
}

.rating .stars {
	color: var(--green);
	letter-spacing: 1px;
}

.hero-title {
	color: #fff;
	font-size: clamp(42px, 5vw, 70px);
	line-height: .98;
	font-weight: 700;
	letter-spacing: -2px;
	max-width: 650px;
	margin-bottom: 22px;
}

.hero-title span {
	color: var(--green);
}

.hero-text {
	color: rgba(255,255,255,.72); 
	line-height: 1.7;
	max-width: 400px;
	margin-bottom: 24px;
}

/* Buttons */

.btn-main {
	background: var(--green);
	color: #103d38;
	border: none;
	border-radius: 30px;
	padding: 10px 10px 10px 18px; 
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.btn-main:hover {
	background: #c0ff7d;
	color: #103d38;
}

.btn-main i {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #103d38;
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
}

.call-box {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 12px;
	color: #fff;
}

.call-icon {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: var(--green);
	color: #103d38;
	display: flex;
	align-items: center;
	justify-content: center; 
}

.call-text small {
	display: block;
	color: rgba(255,255,255,.55); 
	text-transform: uppercase;
	margin-bottom: 2px;
}

.call-text strong {
	font-size: 10px;
	font-weight: 500;
}

/* =========================================
ABOUT SECTION
========================================= */

.about-section {
	background: #f7fbfe;
	position: relative;
	overflow: hidden;
}

.section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #27ACE3;
	margin-bottom: 15px;
	position: relative;
	padding-left: 38px;
}

.section-label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 28px;
	height: 2px;
	background: #27ACE3;
	transform: translateY(-50%);
}

.about-title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	color: #17233c;
	margin-bottom: 22px;
}

.about-title span {
	color: #2A569F;
}

.about-lead {
	font-size: 18px;
	line-height: 1.7;
	font-weight: 500;
	color: #3d4b61;
	margin-bottom: 15px;
}

.about-text {
	font-size: 15px;
	line-height: 1.8;
	color: #697586;
	margin-bottom: 12px;
}


/* IMAGE */

.about-image-wrap {
	position: relative;
	padding: 15px;
}

.about-image-wrap:before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	background: rgba(39, 172, 227, 0.10);
	border-radius: 50%;
	top: -30px;
	left: -30px;
	z-index: 0;
}

.about-image {
	width: 100%;
	height: 540px;
	object-fit: cover;
	border-radius: 25px;
	position: relative;
	z-index: 1;
	box-shadow: 0 25px 60px rgba(42, 86, 159, 0.15);
}


/* EXPERIENCE CARD */

.experience-card {
	position: absolute;
	right: -5px;
	bottom: 45px;
	z-index: 3;

	display: flex;
	align-items: center;
	gap: 12px;

	padding: 20px 25px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);

	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 15px;

	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-number {
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	color: #27ACE3;
}

.experience-text {
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	color: #2A569F;
}


/* FEATURES */

.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.feature-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;
	background: rgba(39, 172, 227, 0.10);
	color: #27ACE3;
	font-size: 18px;
}

.about-feature h6 {
	font-size: 14px;
	font-weight: 700;
	color: #17233c;
	margin: 0 0 4px;
}

.about-feature p {
	font-size: 12px;
	color: #7b8798;
	margin: 0;
	line-height: 1.4;
}


/* BUTTON */

.btn-about {
	display: inline-flex;
	align-items: center;
	padding: 13px 25px;
	border-radius: 8px;
	background: #2A569F;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-about:hover {
	background: #27ACE3;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(39, 172, 227, 0.25);
}


/* STATS */

.stats-row {
	border-top: 1px solid #e3edf5;
}

.stat-box {
	text-align: center;
	padding: 15px;
	position: relative;
}

.stat-box h3 {
	font-size: 32px;
	font-weight: 800;
	color: #2A569F;
	margin: 0 0 4px;
}

.stat-box p {
	font-size: 13px;
	color: #7b8798;
	margin: 0;
}


/* RESPONSIVE */

@media (max-width: 991px) {

	.about-title {
		font-size: 36px;
	}

	.about-image {
		height: 450px;
	}

	.experience-card {
		right: 10px;
	}

}


@media (max-width: 575px) {

	.about-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.about-title {
		font-size: 30px;
	}

	.about-lead {
		font-size: 16px;
	}

	.about-image-wrap {
		padding: 5px;
	}

	.about-image {
		height: 380px;
		border-radius: 18px;
	}

	.experience-card {
		bottom: 25px;
		right: 0;
		padding: 15px 18px;
	}

	.experience-number {
		font-size: 30px;
	}

	.experience-text {
		font-size: 11px;
	}

	.stat-box h3 {
		font-size: 25px;
	}

	.stat-box p {
		font-size: 11px;
	}

}


/* =========================================
ABOUT MAIN
========================================= */

.about-main {
	background: #ffffff;
}

.about-label {
	display: inline-block;
	color: #27ACE3;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.about-heading {
	font-size: 48px;
	line-height: 1.12;
	font-weight: 800;
	color: #17233c;
	margin-bottom: 25px;
}

.about-heading span {
	color: #2A569F;
}

.about-intro {
	font-size: 18px;
	line-height: 1.7;
	color: #3d4b61;
	font-weight: 500;
}

.about-description {
	color: #707d8f;
	font-size: 15px;
	line-height: 1.8;
}


/* IMAGE */

.about-visual {
	position: relative;
	padding: 15px;
}

.about-visual img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 25px;
	box-shadow: 0 25px 60px rgba(42, 86, 159, .15);
}

.about-floating-card {
	position: absolute;
	left: -15px;
	bottom: 50px;

	display: flex;
	align-items: center;
	gap: 14px;

	padding: 18px 22px;
	background: rgba(255,255,255,.9);
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 15px;

	backdrop-filter: blur(15px);
	box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.floating-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(39,172,227,.12);
	color: #27ACE3;
	font-size: 21px;
}

.about-floating-card strong {
	display: block;
	font-size: 14px;
	color: #17233c;
}

.about-floating-card span {
	display: block;
	font-size: 11px;
	color: #7b8798;
	margin-top: 3px;
}


/* BUTTON */

.btn-about-primary {
	background: #2A569F;
	color: #fff;
	padding: 13px 25px;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.btn-about-primary:hover {
	background: #27ACE3;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(39,172,227,.25);
}


/* =========================================
STATISTICS
========================================= */

.about-statistics {
	border-top: 1px solid #e8eef5;
	border-bottom: 1px solid #e8eef5;
}

.about-stat {
	text-align: center;
	padding: 28px 10px;
	border-right: 1px solid #e8eef5;
}

.about-stat:last-child {
	border-right: none;
}

.about-stat h3 {
	font-size: 34px;
	font-weight: 800;
	color: #2A569F;
	margin-bottom: 4px;
}

.about-stat p {
	font-size: 13px;
	color: #7b8798;
	margin: 0;
}


/* =========================================
MISSION
========================================= */

.mission-section {
	background: #f5f9fc;
}

.mission-card {
	height: 100%;
	padding: 35px;
	display: flex;
	gap: 22px;

	background: #fff;
	border-radius: 18px;

	border: 1px solid #e8eef5;

	box-shadow: 0 10px 35px rgba(42,86,159,.06);
}

.mission-icon {
	min-width: 60px;
	height: 60px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 15px;
	background: rgba(39,172,227,.10);
	color: #27ACE3;
	font-size: 25px;
}

.mission-card span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
	color: #27ACE3;
}

.mission-card h3 {
	font-size: 23px;
	font-weight: 750;
	color: #17233c;
	margin: 8px 0 12px;
}

.mission-card p {
	color: #718096;
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
}


/* =========================================
VALUES
========================================= */

.values-section {
	background: #fff;
}

.values-heading {
	font-size: 40px;
	font-weight: 800;
	color: #17233c;
}

.values-heading span {
	color: #2A569F;
}

.values-subtitle {
	max-width: 600px;
	margin: 10px auto 0;
	color: #7b8798;
	font-size: 15px;
}

.value-card {
	height: 100%;
	padding: 30px 25px;
	text-align: center;

	background: #fff;
	border: 1px solid #e8eef5;
	border-radius: 16px;

	transition: .3s;
}

.value-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 20px 45px rgba(42,86,159,.10);
}

.value-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 15px;
	background: rgba(39,172,227,.10);
	color: #27ACE3;
	font-size: 23px;
}

.value-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #17233c;
}

.value-card p {
	font-size: 13px;
	line-height: 1.7;
	color: #7b8798;
	margin: 0;
}


/* =========================================
WHY CHOOSE US
========================================= */

.why-section {
	background: #f5f9fc;
}

.why-heading {
	font-size: 38px;
	font-weight: 800;
	color: #17233c;
	line-height: 1.2;
	margin-bottom: 18px;
}

.why-heading span {
	color: #2A569F;
}

.why-section > .container > .row > .col-lg-5 > p {
	color: #718096;
	line-height: 1.8;
	font-size: 15px;
}

.why-box {
	height: 100%;
	padding: 25px;

	background: #fff;
	border-radius: 15px;
	border: 1px solid #e8eef5;

	transition: .3s;
}

.why-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(42,86,159,.08);
}

.why-box i {
	font-size: 25px;
	color: #27ACE3;
}

.why-box h5 {
	font-size: 16px;
	font-weight: 700;
	color: #17233c;
	margin: 15px 0 8px;
}

.why-box p {
	font-size: 13px;
	color: #7b8798;
	line-height: 1.6;
	margin: 0;
}


/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {

	.about-heading {
		font-size: 40px;
	}

	.about-visual img {
		height: 450px;
	}

	.about-floating-card {
		left: 5px;
	}

}

@media (max-width: 767px) {

	.about-heading {
		font-size: 34px;
	}

	.about-stat {
		border-right: none;
		border-bottom: 1px solid #e8eef5;
	}

	.about-stat h3 {
		font-size: 28px;
	}

	.mission-card {
		padding: 25px;
	}

	.values-heading {
		font-size: 32px;
	}

	.why-heading {
		font-size: 32px;
	}

}

@media (max-width: 575px) {

	.about-heading {
		font-size: 30px;
	}

	.about-intro {
		font-size: 16px;
	}

	.about-visual {
		padding: 5px;
	}

	.about-visual img {
		height: 350px;
		border-radius: 18px;
	}

	.about-floating-card {
		bottom: 25px;
		padding: 13px 15px;
	}

	.floating-icon {
		width: 42px;
		height: 42px;
	}

	.mission-card {
		display: block;
	}

	.mission-icon {
		margin-bottom: 18px;
	}

}

/* =========================
FEATURES SECTION
========================== */

.features-section {
	padding: 65px 0 75px;
	background: #f8f8ef;
}

.section-label { 
	font-weight: 700;
	margin-bottom: 12px;
	color: #123f3b;
}

.section-label::before {
	content: "✦";
	margin-right: 5px;
	color: #123f3b;
}

.section-title {
	font-size: clamp(30px, 3.2vw, 44px);
	line-height: 1.05;
	font-weight: 700;
	color: #123f3b;
	letter-spacing: -1.5px;
	max-width: 480px;
	margin-bottom: 0;
}

.section-description { 
	line-height: 1.7;
	color: #607572;
	max-width: 310px;
	margin-top: 42px;
}


.scroll-down {
	position: absolute;
	bottom: 120px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 65px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	text-decoration: none;
	z-index: 10;
}

.scroll-down span {
	display: block;
	width: 26px;
	height: 26px;
	border-right: 3px solid #27ACE3;
	border-bottom: 3px solid #27ACE3;
	transform: rotate(45deg);
	animation: arrowDance 1.8s infinite;
	opacity: 0;
}

.scroll-down span:nth-child(1) {
	animation-delay: 0s;
}

.scroll-down span:nth-child(2) {
	margin-top: -7px;
	animation-delay: 0.25s;
}

@keyframes arrowDance {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-5px, -5px);
	}

	40% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: rotate(45deg) translate(8px, 8px);
	}
}

.scroll-down:hover span {
	border-color: #2A569F;
}

/* =========================
MOBILE
========================== */

@media (max-width: 991px) {
	.scroll-down span {
		display: block;
		width: 16px;
		height: 16px; 
	}
	.scroll-down {
		bottom: 30px;
	}
	.navbar-nav .nav-link {
		color: rgba(255,255,255,.9) !important; 
	}

	.main-nav {
		top: 0px;
	}

	.navbar-collapse {
		margin-top: 15px;
		padding: 15px;
		background: rgba(5, 58, 54, .97);
		border-radius: 10px;
	}

	.nav-book-btn {
		margin-top: 10px;
	}

	.hero {
		min-height: 650px;
		background-position: 65% center;
	}

	.hero-content {
		padding-top: 150px;
	}

	.hero-title {
		max-width: 550px;
	}

	.section-description {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {

	.top-bar {
		font-size: 10px;
		text-align: center;
	}

	.top-social {
		display: none;
	}

	.hero {
		min-height: 680px;
		background: linear-gradient(
		90deg,
		rgba(5, 58, 54, .96),
		rgba(5, 58, 54, .75)
		),
		url("../img/bg-2.PNG") center / cover no-repeat;
	}

	.hero-content {
		padding-top: 145px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.hero-title {
		font-size: 43px;
		letter-spacing: -1px;
	}

	.hero-text {
		font-size: 10px;
		max-width: 330px;
	}

	.call-box {
		margin-left: 5px;
	}

	.features-section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 34px;
	}

	.section-description {
		margin-top: 15px;
		margin-bottom: 30px;
	}

	.feature-card {
		min-height: 240px;
	}
}

@media (max-width: 420px) {

	.hero-title {
		font-size: 37px;
	}

	.call-box {
		margin-top: 15px;
		margin-left: 0;
	}

	.hero-actions {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.top-bar .container {
		justify-content: center !important;
	}
}



:root {
	--section-bg: #e8f7ff;       /* Soft light blue section background */
	--accent-blue: #29b2ef;      /* Vibrant cyan/light blue accent */
	--dark-blue: #0f3d6c;        /* Deep navy blue for headings & main elements */
	--btn-hover: #1e9cd9;
	--card-bg: #ffffff;          /* White background for stats card */
	--text-dark: #0f3d6c;
	--text-muted: #4a607a;
}


/* Main Section Styling */
.about-section {
	background-color: var(--section-bg);
	padding: 5rem 0;
}

/* Left Image Styling with Border Overlay */
.main-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(15, 61, 108, 0.12);
}

.main-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 24px;
}

/* Overlay Inner Border Effect */
.main-image-wrapper::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 16px;
	pointer-events: none;
}

/* Typography */
.subtitle-badge {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-blue);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.about-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.5px;
	color: var(--dark-blue);
}

.about-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Projects Stat Card */
.projects-card {
	background-color: var(--card-bg);
	border-radius: 20px;
	padding: 1.25rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 25px rgba(15, 61, 108, 0.05);
}

.projects-badge-header {
	background-color: var(--accent-blue);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.85rem;
	text-align: center;
	padding: 0.5rem;
	border-radius: 10px;
	margin-bottom: 1rem;
}

.project-img-container {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.project-img-container img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}

.project-img-container::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	pointer-events: none;
}

.stat-number {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.35rem;
	color: var(--dark-blue);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 600;
	line-height: 1.3;
}

/* Feature List */
.feature-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 2rem;
}

.feature-list li {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
}

.check-icon {
	background-color: var(--accent-blue);
	color: #ffffff;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* Custom Button */
.btn-consultation {
	background-color: var(--accent-blue);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: 12px;
	padding: 0.65rem 1.4rem;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-consultation:hover {
	background-color: var(--btn-hover);
	color: #ffffff;
	box-shadow: 0 5px 15px rgba(41, 178, 239, 0.4);
}

.btn-consultation .icon-circle {
	background-color: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}
 

/* Section Wrapper */
.why-choose-us-section {
	background-color: #2A569F;
	padding: 5rem 0;
}

/* Section Title */
.section-title {
	color: #fff;
	font-weight: 700;
	font-size: 2.25rem;
	margin-bottom: 3.5rem;
}

/* Feature Cards */
.feature-card {
	background-color: #ffffff;
	border-radius: 6px;
	padding: 2.25rem 1.75rem;
	height: 100%;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Icon Styling */
.card-icon {
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 1.25rem;
	display: inline-block;
}

.icon-blue {
	color: var(--icon-blue);
}
.icon-teal {
	color: var(--icon-teal);
}
.icon-cyan {
	color: var(--icon-cyan);
}
.icon-yellow {
	color: var(--icon-yellow);
}

/* Card Typography */
.card-title {
	color: var(--text-dark);
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.card-text {
	color: var(--text-body);
	font-size: 0.925rem;
	line-height: 1.6;
	margin-bottom: 0;
}

  
.training-section {
	background: #ffffff;
}

.training-card {
	position: relative;
	min-height: 325px;
	padding: 28px 30px;
	border-radius: 10px;
	overflow: hidden;

	background: linear-gradient(
	135deg,
	#27ACE3 0%,
	#2A569F 100%
	);

	color: #ffffff;
	text-align: center;

	display: flex;
	flex-direction: column;
	align-items: center;

	transition: all 0.3s ease;
}

/* Decorative curved shape */
.training-card::after {
	content: "";
	position: absolute;
	width: 430px;
	height: 200px;
	right: -180px;
	bottom: -100px;

	background: rgba(255, 255, 255, 0.08);

	border-radius: 50%;
}

/* Heading */
.training-card h3 {
	position: relative;
	z-index: 2;

	margin: 0;
	min-height: 62px;

	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* Icon */
.training-icon {
	position: relative;
	z-index: 2;

	width: 85px;
	height: 85px;

	margin: 18px 0 16px;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 58px;
	color: #ffffff;
}

/* Description */
.training-card p {
	position: relative;
	z-index: 2;

	max-width: 390px;
	margin: 0;

	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
}

/* Hover */
.training-card:hover {
	transform: translateY(-6px);

	box-shadow: 0 15px 35px rgba(42, 86, 159, 0.25);
}


/* ==============================
Responsive
================================= */

@media (max-width: 767.98px) {

	.training-card {
		min-height: 310px;
		padding: 25px 20px;
	}

	.training-card h3 {
		font-size: 20px;
	}

	.training-icon {
		font-size: 52px;
		margin: 14px 0;
	}

	.training-card p {
		font-size: 15px;
	}
}

@media (max-width: 575.98px) {

	.training-card {
		min-height: 300px;
	}

	.training-card h3 {
		font-size: 19px;
	}
} 

/* =========================================
COURSES SECTION
========================================= */

.courses-section {
	background: #f7fbfe;
	overflow: hidden;
}

.courses-label {
	display: inline-block;
	color: #27ACE3;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.courses-title {
	font-size: 40px;
	line-height: 1.15;
	font-weight: 800;
	color: #17233c;
	margin: 0;
}

.courses-title span {
	color: #2A569F;
}


/* VIEW ALL */

.view-all-courses {
	display: inline-flex;
	align-items: center;
	color: #2A569F;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
}

.view-all-courses:hover {
	color: #27ACE3;
}


/* =========================================
COURSE CARD
========================================= */

.course-card {
	height: 100%;
	min-height: 390px;
	padding: 28px;

	background: #fff;
	border: 1px solid #e2e9ef;
	border-radius: 18px;

	position: relative;
	overflow: hidden;

	transition: all .35s ease;
}

.course-card:hover {
	transform: translateY(-7px);
	border-color: rgba(39,172,227,.35);

	box-shadow: 0 20px 45px rgba(42,86,159,.10);
}


/* TOP */

.course-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.course-code {
	display: inline-flex;
	align-items: center;

	padding: 6px 12px;

	border-radius: 50px;

	background: rgba(39,172,227,.10);
	color: #2A569F;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
}

.course-icon {
	width: 52px;
	height: 52px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 14px;

	background: linear-gradient(
	135deg,
	#27ACE3,
	#2A569F
	);

	color: #fff;

	font-size: 22px;

	box-shadow: 0 8px 20px rgba(42,86,159,.20);
}


/* TITLE */

.course-card h3 {
	font-size: 21px;
	line-height: 1.35;
	font-weight: 800;
	color: #17233c;
	margin-bottom: 16px;
}

.course-card h3 span {
	color: #2A569F;
}


/* DESCRIPTION */

.course-card p {
	font-size: 14px;
	line-height: 1.75;
	color: #748092;
	margin: 0;
}


/* DIVIDER */

.course-divider {
	height: 1px;
	background: #e8edf2;
	margin: 25px 0 18px;
}


/* FOOTER */

.course-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.course-footer span {
	color: #7b8798;
	font-size: 11px;
	font-weight: 600;
}


/* ARROW */

.course-arrow {
	width: 43px;
	height: 43px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: #27ACE3;
	color: #fff;

	text-decoration: none;

	transition: .3s;
}

.course-arrow:hover {
	background: #2A569F;
	color: #fff;
	transform: translateX(4px);
}


/* =========================================
CTA CARD
========================================= */

.course-cta-card {
	height: 100%;
	min-height: 390px;

	padding: 35px;

	display: flex;
	flex-direction: column;
	justify-content: center;

	border-radius: 18px;

	background: linear-gradient(
	135deg,
	#2A569F,
	#163f82
	);

	position: relative;
	overflow: hidden;

	box-shadow: 0 20px 45px rgba(42,86,159,.15);
}

.course-cta-card:after {
	content: "";

	position: absolute;

	width: 220px;
	height: 220px;

	border-radius: 50%;

	background: rgba(39,172,227,.20);

	right: -80px;
	bottom: -80px;
}

.course-cta-icon {
	width: 58px;
	height: 58px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(255,255,255,.12);

	border: 1px solid rgba(255,255,255,.20);

	border-radius: 15px;

	color: #8edcff;

	font-size: 25px;

	margin-bottom: 22px;
}

.course-cta-card h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.3;
}

.course-cta-card h3 span {
	color: #8edcff;
}

.course-cta-card p {
	color: rgba(255,255,255,.72);
	font-size: 14px;
	line-height: 1.7;
	margin: 12px 0 25px;
}

.course-cta-btn {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;

	padding: 12px 20px;

	background: #fff;
	color: #2A569F;

	border-radius: 7px;

	font-size: 13px;
	font-weight: 700;

	text-decoration: none;

	transition: .3s;
}

.course-cta-btn:hover {
	background: #27ACE3;
	color: #fff;
}


/* =========================================
CONTROLS
========================================= */

.course-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.course-control {
	width: 45px;
	height: 45px;

	border: 1px solid #dce5ed;
	border-radius: 50%;

	background: #fff;
	color: #2A569F;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 16px;

	transition: .3s;
}

.course-control:hover {
	background: #2A569F;
	color: #fff;
	border-color: #2A569F;
}


/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {

	.courses-title {
		font-size: 34px;
	}

	.course-card {
		min-height: 370px;
	}

}

@media (max-width: 575px) {

	.courses-title {
		font-size: 29px;
	}

	.course-card {
		min-height: auto;
		padding: 23px;
	}

	.course-card h3 {
		font-size: 19px;
	}

	.course-cta-card {
		min-height: 330px;
	}

}



























/* ==============================
PAGE HEADER
============================== */

.page-header {
	position: relative;
	overflow: hidden;
	padding: 85px 0 80px;
	background: linear-gradient(
	120deg,
	#2A569F 0%,
	#245fa9 45%,
	#27ACE3 100%
	);
	color: #fff;
}

/* Decorative shapes */
.page-header-shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.shape-1 {
	width: 350px;
	height: 350px;
	right: -120px;
	top: -170px;
	background: rgba(255,255,255,0.08);
}

.shape-2 {
	width: 250px;
	height: 250px;
	left: -120px;
	bottom: -150px;
	background: rgba(255,255,255,0.06);
}

/* Content */
.page-header-content {
	position: relative;
	z-index: 2;
}

/* Breadcrumb */
.page-breadcrumb {
	margin-bottom: 25px;
	padding: 0;
	background: transparent;
}

.page-breadcrumb .breadcrumb-item {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
}

.page-breadcrumb .breadcrumb-item a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.page-breadcrumb .breadcrumb-item a:hover {
	color: #dff6ff;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,0.55);
}

/* Small label */
.page-header-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.85);
}

.page-header-label span {
	width: 28px;
	height: 2px;
	background: #fff;
	display: inline-block;
}

/* Title */
.page-title {
	margin: 0 0 18px;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1px;
	color: #fff;
}

/* Description */
.page-description {
	max-width: 650px;
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
	color: rgba(255,255,255,0.88);
}

/* Icon */
.page-header-icon {
	position: relative;
	z-index: 2;
	width: 150px;
	height: 150px;
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.20);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	transform: rotate(5deg);
}

.page-header-icon i {
	font-size: 70px;
	color: #fff;
	transform: rotate(-5deg);
}

/* Mobile */
@media (max-width: 767px) {

	.page-header {
		padding: 60px 0 55px;
	}

	.page-breadcrumb {
		margin-bottom: 20px;
	}

	.page-title {
		font-size: 40px;
	}

	.page-description {
		font-size: 15px;
		line-height: 1.7;
	}
}



/* =========================
CONTACT HERO
========================= */

.contact-hero {
	position: relative;
	overflow: hidden;
	padding: 85px 0;
	color: #fff;

	background: linear-gradient(
	120deg,
	#2A569F,
	#27ACE3
	);
}

.contact-hero::after {
	content: "";
	position: absolute;

	width: 450px;
	height: 450px;

	right: -180px;
	top: -250px;

	border-radius: 50%;

	background: rgba(255,255,255,.10);
}

.contact-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;

	margin-bottom: 15px;
}

.contact-eyebrow span {
	width: 30px;
	height: 2px;
	background: #fff;
}

.contact-hero h1 {
	font-size: clamp(40px, 5vw, 62px);
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-hero h1 strong {
	font-weight: 800;
}

.contact-hero p {
	max-width: 650px;
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 0;
	color: rgba(255,255,255,.9);
}


/* =========================
CONTACT SECTION
========================= */

.contact-section {
	padding: 90px 0;
	background: #f7faff;
}


/* Intro */

.section-label {
	color: #27ACE3;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
}

.contact-intro h2 {
	margin: 12px 0 18px;

	font-size: 42px;
	line-height: 1.15;

	font-weight: 800;
	color: #172b4d;
}

.contact-intro h2 span {
	color: #27ACE3;
}

.contact-intro p {
	max-width: 450px;

	color: #697586;
	line-height: 1.8;
	font-size: 15px;

	margin-bottom: 35px;
}


/* =========================
INFO CARDS
========================= */

.contact-info-card {
	display: flex;
	align-items: center;

	gap: 18px;

	padding: 20px;

	margin-bottom: 15px;

	background: #fff;

	border: 1px solid #e8eef5;

	border-radius: 14px;

	transition: .3s ease;
}

.contact-info-card:hover {
	transform: translateY(-3px);

	border-color: rgba(39,172,227,.3);

	box-shadow: 0 12px 30px rgba(42,86,159,.08);
}

.contact-icon {
	flex-shrink: 0;

	width: 50px;
	height: 50px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 12px;

	color: #fff;

	background: linear-gradient(
	135deg,
	#27ACE3,
	#2A569F
	);

	font-size: 20px;
}

.contact-info-card small {
	display: block;

	margin-bottom: 5px;

	color: #8996a8;

	font-size: 10px;
	font-weight: 700;

	letter-spacing: 1.5px;
}

.contact-info-card a,
.contact-info-card p {
	display: block;

	color: #253858;

	font-size: 14px;
	line-height: 1.7;

	text-decoration: none;

	margin: 0;
}

.contact-info-card a:hover {
	color: #27ACE3;
}


/* =========================
SOCIAL
========================= */

.contact-social {
	display: flex;
	align-items: center;
	gap: 10px;

	margin-top: 30px;
}

.contact-social span {
	margin-right: 8px;

	color: #8996a8;

	font-size: 11px;
	font-weight: 700;

	letter-spacing: 1px;
}

.contact-social a {
	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: #fff;

	color: #2A569F;

	border: 1px solid #e4ebf3;

	text-decoration: none;

	transition: .3s;
}

.contact-social a:hover {
	color: #fff;

	background: #2A569F;

	transform: translateY(-3px);
}


/* =========================
FORM
========================= */

.contact-form-box {
	padding: 40px;

	background: #fff;

	border-radius: 20px;

	border: 1px solid #e7edf5;

	box-shadow: 0 15px 50px rgba(42,86,159,.08);
}

.form-heading span {
	color: #27ACE3;

	font-size: 11px;
	font-weight: 700;

	letter-spacing: 2px;
}

.form-heading h3 {
	margin: 8px 0;

	color: #172b4d;

	font-size: 30px;
	font-weight: 800;
}

.form-heading p {
	color: #7a8798;

	font-size: 14px;
	line-height: 1.7;

	margin-bottom: 25px;
}

.contact-form-box label {
	display: block;

	margin-bottom: 8px;

	color: #253858;

	font-size: 13px;
	font-weight: 600;
}

.input-group-custom {
	display: flex;
	align-items: center;

	border: 1px solid #dce4ed;

	border-radius: 10px;

	background: #fff;

	transition: .3s;
}

.input-group-custom:focus-within {
	border-color: #27ACE3;

	box-shadow: 0 0 0 3px rgba(39,172,227,.10);
}

.input-group-custom i {
	width: 45px;

	text-align: center;

	color: #27ACE3;
}

.input-group-custom input,
.input-group-custom textarea {
	width: 100%;

	border: 0;
	outline: 0;

	padding: 13px 12px 13px 0;

	font-size: 14px;

	color: #253858;

	background: transparent;
}

.input-group-custom textarea {
	padding-top: 15px;

	resize: vertical;
}

.input-group-custom.textarea {
	align-items: flex-start;
}


/* Button */

.contact-submit {
	display: inline-flex;
	align-items: center;
	gap: 18px;

	border: 0;

	padding: 14px 18px 14px 25px;

	border-radius: 50px;

	background: linear-gradient(
	135deg,
	#27ACE3,
	#2A569F
	);

	color: #fff;

	font-size: 14px;
	font-weight: 700;

	cursor: pointer;

	transition: .3s;
}

.contact-submit span {
	width: 34px;
	height: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: rgba(255,255,255,.18);
}

.contact-submit:hover {
	transform: translateY(-3px);

	box-shadow: 0 10px 25px rgba(42,86,159,.25);
}


/* =========================
MAP
========================= */

.contact-map {
	min-height: 280px;

	position: relative;

	overflow: hidden;

	border-radius: 20px;

	background: linear-gradient(
	rgba(42,86,159,.90),
	rgba(39,172,227,.90)
	);

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
}

.map-content {
	color: #fff;
}

.map-icon {
	width: 55px;
	height: 55px;

	margin: 0 auto 15px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: rgba(255,255,255,.15);

	font-size: 22px;
}

.map-content h4 {
	font-size: 24px;
	font-weight: 700;
}

.map-content p {
	line-height: 1.7;
	color: rgba(255,255,255,.85);
}

.map-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 10px 18px;

	border-radius: 50px;

	background: #fff;

	color: #2A569F;

	text-decoration: none;

	font-size: 13px;
	font-weight: 700;

	transition: .3s;
}

.map-button:hover {
	color: #2A569F;

	transform: translateY(-2px);
}


/* =========================
MOBILE
========================= */

@media (max-width: 767px) {

	.contact-hero {
		padding: 60px 0;
	}

	.contact-section {
		padding: 60px 0;
	}

	.contact-intro h2 {
		font-size: 34px;
	}

	.contact-form-box {
		padding: 25px 20px;
	}

	.form-heading h3 {
		font-size: 25px;
	}

	.contact-info-card {
		padding: 15px;
	}

}



.scroll-to-top {
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #27ACE3, #2A569F);
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(42, 86, 159, 0.30);
}

.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: linear-gradient(135deg, #2A569F, #27ACE3);
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(42, 86, 159, 0.40);
}

.scroll-to-top:active {
	transform: translateY(-1px);
}

@media (max-width: 576px) {
	.scroll-to-top {
		width: 42px;
		height: 42px;
		right: 15px;
		bottom: 15px;
		font-size: 18px;
	}
}



/* =========================================
MAIN FOOTER
========================================= */

.main-footer {
	position: relative;
	background: #081d3d;
	color: #fff;
	overflow: hidden;
}


/* =========================================
CTA
========================================= */

.footer-cta {
	padding: 70px 0 0;
}

.footer-cta-inner {
	position: relative;
	padding: 45px 50px;

	background: linear-gradient(
	135deg,
	#123b78,
	#1d5a9c
	);

	border-radius: 22px;

	border: 1px solid rgba(255,255,255,.15);

	box-shadow: 0 20px 60px rgba(0,0,0,.18);

	overflow: hidden;
}

.footer-cta-inner:after {
	content: "";

	position: absolute;

	width: 300px;
	height: 300px;

	border-radius: 50%;

	background: rgba(39,172,227,.15);

	right: -120px;
	top: -160px;
}

.footer-cta-label {
	display: inline-block;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;

	color: #8edcff;

	margin-bottom: 12px;
}

.footer-cta h2 {
	position: relative;
	z-index: 1;

	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;

	margin: 0 0 12px;
}

.footer-cta h2 span {
	color: #8edcff;
}

.footer-cta p {
	position: relative;
	z-index: 1;

	max-width: 650px;

	color: rgba(255,255,255,.72);

	font-size: 14px;
	line-height: 1.7;

	margin: 0;
}

.footer-cta-btn {
	position: relative;
	z-index: 2;

	display: inline-flex;
	align-items: center;

	padding: 14px 24px;

	background: #fff;
	color: #2A569F;

	border-radius: 8px;

	font-size: 13px;
	font-weight: 700;

	text-decoration: none;

	transition: .3s;
}

.footer-cta-btn:hover {
	background: #27ACE3;
	color: #fff;

	transform: translateY(-3px);

	box-shadow: 0 10px 25px rgba(0,0,0,.15);
}


/* =========================================
FOOTER MAIN
========================================= */

.footer-main {
	padding: 70px 0 0;
}


/* LOGO */

.footer-logo {
	display: inline-block;

	color: #fff;

	font-size: 25px;
	font-weight: 900;

	letter-spacing: 1px;

	text-decoration: none;

	margin-bottom: 18px;
}

.footer-logo span {
	display: block;

	color: #27ACE3;

	font-size: 12px;

	font-weight: 600;

	letter-spacing: 2px;

	margin-top: 2px;
}


/* ABOUT */

.footer-about {
	max-width: 390px;

	color: rgba(255,255,255,.58);

	font-size: 13px;

	line-height: 1.8;

	margin-bottom: 25px;
}


/* SOCIAL */

.footer-social {
	display: flex;
	gap: 9px;
}

.footer-social a {
	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background: rgba(255,255,255,.07);

	border: 1px solid rgba(255,255,255,.09);

	color: rgba(255,255,255,.75);

	font-size: 15px;

	text-decoration: none;

	transition: .3s;
}

.footer-social a:hover {
	background: #27ACE3;

	border-color: #27ACE3;

	color: #fff;

	transform: translateY(-3px);
}


/* =========================================
HEADINGS
========================================= */

.footer-heading {
	font-size: 14px;
	font-weight: 700;

	color: #fff;

	margin-bottom: 22px;

	position: relative;
}

.footer-heading:after {
	content: "";

	display: block;

	width: 25px;
	height: 2px;

	background: #27ACE3;

	margin-top: 9px;
}


/* =========================================
LINKS
========================================= */

.footer-links {
	padding: 0;
	margin: 0;

	list-style: none;
}

.footer-links li {
	margin-bottom: 11px;
}

.footer-links a {
	color: rgba(255,255,255,.58);

	font-size: 13px;

	text-decoration: none;

	transition: .3s;
}

.footer-links a:hover {
	color: #27ACE3;

	padding-left: 5px;
}


/* =========================================
CONTACT
========================================= */

.footer-contact-item {
	display: flex;

	align-items: flex-start;

	gap: 12px;

	margin-bottom: 18px;
}

.contact-icon {
	width: 36px;
	height: 36px;

	min-width: 36px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background: rgba(39,172,227,.10);

	color: #27ACE3;

	font-size: 14px;
}

.footer-contact-item span {
	display: block;

	color: rgba(255,255,255,.40);

	font-size: 10px;

	text-transform: uppercase;

	letter-spacing: 1px;

	margin-bottom: 3px;
}

.footer-contact-item p {
	margin: 0;

	color: rgba(255,255,255,.65);

	font-size: 12px;

	line-height: 1.6;
}

.footer-contact-item a {
	color: rgba(255,255,255,.65);

	text-decoration: none;

	transition: .3s;
}

.footer-contact-item a:hover {
	color: #27ACE3;
}


/* =========================================
BOTTOM
========================================= */

.footer-bottom {
	margin-top: 55px;

	padding: 22px 0;

	border-top: 1px solid rgba(255,255,255,.08);
}

.copyright {
	margin: 0;

	color: rgba(255,255,255,.40);

	font-size: 11px;
}

.footer-bottom-links {
	display: flex;

	justify-content: flex-end;

	align-items: center;

	gap: 12px;
}

.footer-bottom-links a {
	color: rgba(255,255,255,.45);

	font-size: 11px;

	text-decoration: none;

	transition: .3s;
}

.footer-bottom-links a:hover {
	color: #27ACE3;
}

.footer-bottom-links span {
	width: 3px;
	height: 3px;

	border-radius: 50%;

	background: rgba(255,255,255,.25);
}


/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {

	.footer-cta-inner {
		padding: 35px;
	}

	.footer-cta h2 {
		font-size: 29px;
	}

	.footer-main {
		padding-top: 55px;
	}

}

@media (max-width: 767px) {

	.footer-cta {
		padding-top: 45px;
	}

	.footer-cta-inner {
		padding: 30px 25px;
	}

	.footer-cta h2 {
		font-size: 27px;
	}

	.footer-main {
		padding-top: 45px;
	}

	.footer-bottom-links {
		justify-content: flex-start;
	}

}

@media (max-width: 575px) {

	.footer-cta-inner {
		border-radius: 16px;
	}

	.footer-cta h2 {
		font-size: 25px;
	}

	.footer-about {
		font-size: 12px;
	}

	.footer-bottom {
		margin-top: 35px;
	}

}

