html,
body {
	height: 100%;
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Lato", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Lato", sans-serif;
	color: #5c5c5c;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 60px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 800;
	color: #1a3048;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.section-title h2 span {
	color: #e9a40b;
}

.section-title p {
	font-size: 17px;
	line-height: 1.7;
	color: #5c5c5c;
	max-width: 700px;
	margin: 0 auto;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 15px;
	padding: 14px 40px 12px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #e9a40b;
	border-radius: 4px;
	/* Increased from 2px */
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.primary-btn:hover {
	background: #182143;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Global Premium Form System */
.premium-glass-form {
	background: #ffffff;
	padding: 50px;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-glass-form label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1a3048;
	margin-bottom: 10px;
}

.premium-glass-form .form-control {
	height: 56px;
	background: #f8f9fa;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 10px 20px;
	color: #1a3048;
	font-size: 15px;
	transition: all 0.3s ease;
}

.premium-glass-form .form-control:focus {
	background: #ffffff;
	border-color: #e9a40b;
	box-shadow: 0 0 0 4px rgba(233, 164, 11, 0.1);
	outline: none;
}

.premium-glass-form textarea.form-control {
	height: auto;
	padding-top: 15px;
}

.premium-glass-form select.form-control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	padding-right: 40px;
}

.gradient-text {
	background: linear-gradient(135deg, #182143 0%, #e9a40b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.site-btn {
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 30px 12px;
	background: #e9a40b;
	border: none;
	letter-spacing: 1px;
	border-radius: 2px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: transparent !important;
	box-shadow: none !important;
}

.header__top {
	background: #182143;
	padding: 5px 0;
}

body.offcanvas-open .header {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.header__top__widget {
	padding: 11px 0 14px;
}

.header__top__widget li {
	font-size: 15px;
	color: #ffffff;
	display: inline-block;
	margin-right: 50px;
	position: relative;
	list-style: none;
}

.header__top__widget li::after {
	position: absolute;
	right: -32px;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	content: "";
}

.header__top__widget li:last-child {
	margin-right: 0;
}

@media only screen and (max-width: 767px) {
	.header__top__widget li {
		margin-right: 15px;
		font-size: 13px;
	}

	.header__top__widget li:after {
		right: -10px;
	}
}

@media only screen and (max-width: 479px) {
	.header__top__widget li {
		display: block;
		margin-right: 0;
		margin-bottom: 5px;
	}

	.header__top__widget li:after {
		display: none;
	}
}

.header__top__widget li:last-child:after {
	display: none;
}

.header__top__widget li i {
	font-size: 18px;
	color: #e9a40b;
	margin-right: 8px;
}

.header__top__language {
	background: transparent;
	padding: 0;
	float: right;
	position: relative;
}

/* Get Started button in header */
.header__top__language .primary-btn {
	background: #e9a40b;
	color: #ffffff;
	padding: 12px 25px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	display: inline-block;
}

.header__top__language .primary-btn:hover {
	background: #d1940a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
}

.header__nav_wrapper {
	margin-top: 15px;
	transition: all 0.3s ease;
}

.header.scrolled .header__nav_wrapper {
	margin-top: 0;
	position: fixed;
	top: 15px;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header__nav_pill {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 100px;
	padding: 0 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header.scrolled .header__nav_pill {
	padding: 0 30px;
	background: rgba(255, 255, 255, 0.85);
	transform: scale(0.98);
}

.header__logo {
	padding: 15px 0;
}

.header__logo img {
	max-height: 45px;
	transition: all 0.3s ease;
}

.header.scrolled .header__logo img {
	max-height: 40px;
}

.header__nav {
	text-align: right;
	padding: 15px 0;
}

.header__menu {
	display: inline-block;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li a:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 3px;
	width: 0%;
	background: #e9a40b;
	content: "";
	opacity: 0;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	border-radius: 10px;
}

.header__menu ul li.active a:after,
.header__menu ul li:hover a:after {
	width: 20px;
	opacity: 1;
}

.header__menu ul li:hover .dropdown {
	top: 36px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	width: 220px;
	background: #ffffff;
	text-align: left;
	padding: 15px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin-top: 10px;
}

.header__menu ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #323232;
	font-weight: 500;
	padding: 10px 25px;
	transition: all 0.3s ease;
}

.header__menu ul li .dropdown li a:hover {
	color: #e9a40b;
	background: #f8f9fa;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 16px;
	color: #323232;
	font-weight: 600;
	display: block;
	padding: 10px 0;
	position: relative;
	transition: all 0.3s ease;
}

.header__menu ul li.active a {
	color: #e9a40b;
}

.header__menu ul li a:hover {
	color: #e9a40b;
}

.header__menu ul li a:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 3px;
	width: 0%;
	background: #e9a40b;
	content: "";
	opacity: 0;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	border-radius: 10px;
}

.header__search {
	display: inline-block;
}

.pill-btn {
	background: #e9a40b;
	color: #ffffff !important;
	padding: 10px 25px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	display: inline-block;
}

.pill-btn:hover {
	background: #182143;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(24, 33, 67, 0.2);
}

.canvas__open_legacy {
	display: none;
}

@media only screen and (max-width: 991px) {
	.header__nav {
		display: none;
	}

	.canvas__open_legacy {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		color: #111111;
		cursor: pointer;
		height: 35px;
		width: 35px;
		transition: all 0.3s ease;
		background: transparent;
		border: none;
		outline: none;
		margin-left: auto;
	}

	.canvas__open_legacy:hover {
		color: #e9a40b;
		transform: scale(1.1);
	}

	.header__nav_pill {
		padding: 0 20px;
		height: 60px;
	}

	.header__logo {
		padding: 10px 0;
	}

	.header__logo img {
		max-height: 35px;
	}
}

.offcanvas-menu-wrapper {
	position: fixed;
	left: -300px;
	width: 300px;
	height: 100%;
	background: #ffffff;
	padding: 50px 30px;
	z-index: 10000;
	overflow-y: auto;
	transition: all 0.5s;
	box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.offcanvas-menu-wrapper.active {
	left: 0;
}

.offcanvas-menu-overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

.offcanvas-menu-overlay.active {
	visibility: visible;
	opacity: 1;
}

.offcanvas__close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 20px;
	color: #111111;
	cursor: pointer;
	width: 35px;
	height: 35px;
	border: 1px solid #f2f2f2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 1;
}

.offcanvas__close:hover {
	background: #e9a40b;
	color: #ffffff;
	border-color: #e9a40b;
	transform: rotate(90deg);
}

.offcanvas__logo {
	margin-bottom: 30px;
	text-align: center;
}

.offcanvas__logo img {
	max-height: 40px;
}

.offcanvas__widget {
	margin-bottom: 30px;
	padding-left: 0;
}

.offcanvas__widget li {
	list-style: none;
	font-size: 14px;
	color: #323232;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.offcanvas__widget li i {
	color: #e9a40b;
	font-size: 16px;
	width: 20px;
	text-align: center;
}

.offcanvas__language {
	text-align: center;
}

/* Fix mobile menu items from Navigation.tsx */
.offcanvas__menu ul {
	padding-left: 0;
	margin-bottom: 30px;
}

.offcanvas__menu ul li {
	list-style: none;
	border-bottom: 1px solid #f2f2f2;
}

.offcanvas__menu ul li:last-child {
	border-bottom: none;
}

.offcanvas__menu ul li a {
	display: block;
	font-size: 16px;
	color: #111111;
	padding: 12px 0;
	font-weight: 500;
	transition: all 0.3s;
}

.offcanvas__menu ul li a:hover {
	color: #e9a40b;
	padding-left: 5px;
}

/*---------------------
  Modern Hero
-----------------------*/

.modern-hero {
	padding: 150px 0 100px;
	/* Reduced from 200px/150px */
	background: linear-gradient(135deg, #182143 0%, #0d142b 100%);
	position: relative;
	overflow: hidden;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero__badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(233, 164, 11, 0.15);
	color: #e9a40b;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 25px;
	border: 1px solid rgba(233, 164, 11, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero__title {
	font-size: 64px;
	font-weight: 900;
	line-height: 1.1;
	color: #ffffff;
	margin-bottom: 30px;
	font-family: 'Lato', sans-serif;
}

.text-highlight {
	color: #e9a40b;
	position: relative;
}

.hero__subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 45px;
	max-width: 90%;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 25px;
}

.hero-main-btn {
	padding: 16px 40px;
	font-size: 16px;
}

.hero__contact-link {
	color: #ffffff !important;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.hero__contact-link:hover {
	color: #e9a40b !important;
}

.hero__visual {
	position: relative;
	z-index: 2;
}

.glass-panel {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero__video-card {
	overflow: hidden;
	position: relative;
	aspect-ratio: 16/10;
	background: rgba(0, 0, 0, 0.4);
	/* Darker backdrop to make video pop */
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-viewport {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-inline-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* CRITICAL: This ensures video logo is NOT cut off */
	display: block;
}

.video-close-overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 35px;
	height: 35px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 10;
}

.video-preview {
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preview-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s;
}

.video-preview:hover .preview-img {
	transform: scale(1.05);
}

.play-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: #e9a40b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	z-index: 2;
}

.pulse-ring {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 4px solid #e9a40b;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

.preview-label {
	position: absolute;
	bottom: 25px;
	left: 25px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero__stat-card {
	position: absolute;
	bottom: -40px;
	left: -40px;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 3;
}

.stat-icon {
	width: 45px;
	height: 45px;
	background: #e9a40b;
	color: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.stat-info h6 {
	color: #fff;
	margin: 0;
	font-weight: 700;
}

.stat-info p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	font-size: 13px;
}

.floating-1 {
	animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

	50% {
		transform: translateY(-15px);
	}
}

/* Background Decoration */
.hero__bg-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
}

.blob-1 {
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: #e9a40b;
}

.blob-2 {
	bottom: -150px;
	left: -50px;
	width: 600px;
	height: 600px;
	background: #4a6fff;
}

@media only screen and (max-width: 991px) {
	.modern-hero {
		padding: 120px 0 80px;
	}

	.hero__content {
		text-align: center;
	}

	.hero__title {
		font-size: 42px;
		margin-bottom: 20px;
	}

	.hero__subtitle {
		font-size: 16px;
		margin-bottom: 30px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__visual {
		margin-top: 60px;
	}

	.hero__stat-card {
		bottom: -20px;
		left: 10px;
		padding: 15px 25px;
	}
}

@media only screen and (max-width: 575px) {
	.hero__actions {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}

/*---------------------
  Home About
-----------------------*/

/*---------------------
  Modern Home About
-----------------------*/

.home-about.modern-bg {
	background: radial-gradient(circle at 80% 50%, rgba(233, 164, 11, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
	padding: 80px 0 20px;
	/* Reduced bottom padding */
	position: relative;
	overflow: hidden;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: #ffffff;
	border: 1px solid rgba(233, 164, 11, 0.2);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: #1a3048;
	margin-bottom: 15px;
	/* Reduced from 20px */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.trust-badge span {
	color: #e9a40b;
	font-size: 14px;
}

.about-title {
	font-size: 64px;
	/* Increased from 56px */
	font-weight: 800;
	line-height: 1.05;
	color: #1a3048;
	margin-bottom: 25px;
	letter-spacing: -1.5px;
}

.emphasis-text.bold-emphasis {
	font-weight: 900;
	background: linear-gradient(90deg, #e9a40b 0%, #d1940a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.about-desc {
	font-size: 17px;
	line-height: 1.8;
	color: #5c5c5c;
	max-width: 580px;
	margin-bottom: 30px !important;
	/* Reduced from 45px */
}

.premium-card.elevated {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 40px 30px;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	margin-bottom: 30px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: calc(100% - 30px);
	text-align: center;
	/* Center all text content */
}

.premium-card.elevated:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	background: #ffffff;
	border-color: rgba(233, 164, 11, 0.3);
}

.card-icon {
	width: 54px;
	height: 54px;
	background: linear-gradient(135deg, rgba(233, 164, 11, 0.15) 0%, rgba(233, 164, 11, 0.05) 100%);
	color: #e9a40b;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin: 0 auto 25px;
	/* Center the icon box horizontally */
}

.home__about__item h4 {
	font-size: 22px;
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 15px;
}


.home__about__item p {
	font-size: 15px;
	line-height: 1.7;
	color: #6c757d;
	margin-bottom: 0;
}

.about-btn.hover-lift {
	padding: 16px 50px;
	font-size: 16px;
	border-radius: 100px;
	box-shadow: 0 15px 30px rgba(233, 164, 11, 0.15);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.about-btn.hover-lift:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(233, 164, 11, 0.25);
	background: #d1940a;
}

.about-img-wrapper {
	position: relative;
	width: 100%;
}

.about-img-wrapper {
	position: relative;
	width: 100%;
}

.premium-img {
	border-radius: 32px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	width: 100%;
	display: block;
}

.premium-img:hover {
	transform: scale(1.03);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

@media only screen and (max-width: 991px) {
	.home-about.modern-bg {
		padding: 100px 0;
	}

	.about-title {
		font-size: 42px;
	}

	.home__about__img {
		margin-top: 80px;
		max-width: 100%;
	}

	.floating-stat {
		left: 10px;
		bottom: 10px;
		padding: 15px 20px;
	}

	.stat-value {
		font-size: 24px;
	}
}

/*---------------------
  Video Testimonial Redesign
-----------------------*/

.video-testimonial {
	background: #f8f9fa;
	padding: 20px 0 80px;
	/* Further reduced top padding */
}

.featured-video-wrapper {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
}

.main-player-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.video-info-bar {
	padding: 25px 35px;
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.video-info-bar h4 {
	font-size: 24px;
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 5px;
}

.video-info-bar span {
	font-size: 15px;
	color: #e9a40b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Thumbnail Sidebar */
.video-thumbnail-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sidebar-label {
	font-size: 18px;
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 10px;
	padding-left: 5px;
}

.video-thumb-item {
	display: flex;
	gap: 15px;
	padding: 12px;
	background: #ffffff;
	border-radius: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.video-thumb-item:hover {
	transform: translateX(5px);
	background: #ffffff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border-color: rgba(233, 164, 11, 0.1);
}

.video-thumb-item.active {
	background: #ffffff;
	border-color: #e9a40b;
	box-shadow: 0 10px 30px rgba(233, 164, 11, 0.08);
}

.thumb-img-wrapper {
	position: relative;
	width: 120px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
}

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

.thumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(24, 33, 67, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.video-thumb-item:hover .thumb-overlay {
	background: rgba(233, 164, 11, 0.4);
	opacity: 1;
}

.thumb-overlay i {
	color: #ffffff;
	font-size: 20px;
}

.thumb-info h6 {
	font-size: 16px;
	font-weight: 700;
	color: #1a3048;
	margin-bottom: 4px;
}

.thumb-info p {
	font-size: 13px;
	color: #6c757d;
	margin: 0;
	line-height: 1.2;
}

/* Mobile Adjustments */
@media only screen and (max-width: 991px) {
	.video-thumbnail-list {
		margin-top: 40px;
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 15px;
	}

	.video-thumb-item {
		flex: 0 0 280px;
	}

	.video-thumb-item:hover {
		transform: none;
	}
}

.testimonial-title {
	font-size: 52px;
	font-weight: 800;
	color: #1a3048;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.testimonial-sub {
	font-size: 17px;
	color: #6c757d;
	max-width: 650px;
	margin: 0 auto;
	line-height: 1.7;
}

/*---------------------
  Modern Choose Us
-----------------------*/

/*---------------------
  Modern Timeline - Choose Us
-----------------------*/

.choose.choose-modern-bg {
	background: radial-gradient(circle at 20% 50%, rgba(233, 164, 11, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
	padding: 70px 0;
	/* Reduced from 80px */
	position: relative;
	overflow: hidden;
}

.sub-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	background: rgba(233, 164, 11, 0.1);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: #e9a40b;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.choose-title {
	font-size: 52px;
	font-weight: 900;
	line-height: 1.1;
	color: #1a3048;
	margin-bottom: 25px;
}

.choose-sub {
	font-size: 17px;
	line-height: 1.7;
	color: #6c757d;
	max-width: 700px;
	margin: 0 auto 50px;
}

.timeline-wrapper {
	position: relative;
	max-width: 1100px;
	margin: 30px auto 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, rgba(233, 164, 11, 0) 0%, rgba(233, 164, 11, 0.4) 15%, rgba(233, 164, 11, 0.4) 85%, rgba(233, 164, 11, 0) 100%);
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
	display: flex;
	align-items: center;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

/* Timeline Content & Node Positioning */
.timeline-item.left {
	justify-content: flex-start;
}

.timeline-item.right {
	justify-content: flex-end;
}

.timeline-item.left .timeline-content {
	width: 45%;
	text-align: right;
	padding-right: 30px;
}

.timeline-item.right .timeline-content {
	width: 45%;
	text-align: left;
	padding-left: 30px;
}

.timeline-node {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.node-icon {
	width: 70px;
	height: 70px;
	background: #ffffff;
	border: 3px solid #e9a40b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px rgba(233, 164, 11, 0.05);
	transition: all 0.4s ease;
}

.timeline-item:hover .node-icon {
	transform: scale(1.1);
	box-shadow: 0 0 0 15px rgba(233, 164, 11, 0.1);
}

.timeline-content .feature-card {
	background: #ffffff;
	padding: 25px 30px;
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: all 0.4s ease;
	display: inline-block;
	max-width: 450px;
}

.timeline-item:hover .feature-card {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
	border-color: rgba(233, 164, 11, 0.15);
}

.feature-card h5 {
	font-size: 22px;
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 12px;
}

.feature-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #6c757d;
}

/* Animations - Reveal on Scroll */
.timeline-reveal {
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline-reveal.left {
	transform: translateX(-40px);
}

.timeline-reveal.right {
	transform: translateX(40px);
}

.timeline-reveal.reveal-active {
	opacity: 1;
	transform: translateX(0);
}

/* Mobile Responsiveness */
@media only screen and (max-width: 991px) {
	.timeline-line {
		left: 30px;
	}

	.timeline-node {
		left: 30px;
		transform: none;
	}

	.timeline-item.left,
	.timeline-item.right {
		justify-content: flex-start;
		padding-left: 80px;
	}

	.timeline-item.left .timeline-content,
	.timeline-item.right .timeline-content {
		width: 100%;
		text-align: left;
		padding: 0;
	}

	.timeline-reveal.left,
	.timeline-reveal.right {
		transform: translateY(30px);
	}

	.node-icon {
		width: 50px;
		height: 50px;
	}

	.node-icon img {
		width: 28px !important;
		height: 28px !important;
	}

	.timeline-item {
		margin-bottom: 50px;
	}
}

/*---------------------
  Modern Testimonial Redesign
-----------------------*/

.testimonial-modern {
	background: #ffffff;
	padding-top: 80px;
	padding-bottom: 50px;
	overflow: hidden;
}

.testimonial-modern-title {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	color: #1a3048;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}

.testimonial-modern-sub {
	font-size: 17px;
	line-height: 1.7;
	color: #6c757d;
	max-width: 650px;
	margin-bottom: 0;
}

/* Marquee Container */
.testimonial-marquee-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 40px 0;
}

/* Edge Fading for Premium Feel */
.testimonial-marquee-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 15%;
	z-index: 2;
	pointer-events: none;
}

.testimonial-marquee-fade.left {
	left: 0;
	background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.testimonial-marquee-fade.right {
	right: 0;
	background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.testimonial-track-wrapper {
	display: flex;
	overflow: hidden;
	width: 100%;
}

.testimonial-track {
	display: flex;
	gap: 30px;
	animation: marquee 40s linear infinite;
	padding: 10px 0;
}

.testimonial-track:hover {
	animation-play-state: paused;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-33.33%);
	}
}

.testimonial-track-item {
	flex: 0 0 400px;
	width: 400px;
}

.modern-testimonial-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
}

.modern-testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	border-color: rgba(233, 164, 11, 0.3);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.user-info {
	display: flex;
	gap: 15px;
	align-items: center;
}

.user-img-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	overflow: hidden;
	background: #f8f9fa;
	border: 1px solid #eee;
}

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

.user-name {
	font-size: 17px;
	font-weight: 800;
	color: #1a3048;
	margin: 0;
}

.user-pos {
	font-size: 13px;
	color: #6c757d;
	display: block;
}

.quote-icon {
	color: rgba(233, 164, 11, 0.2);
	font-size: 24px;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.6;
	color: #5c5c5c;
	font-style: italic;
	margin-bottom: 20px;
	flex-grow: 1;
}

.card-footer .stars {
	color: #e9a40b;
	font-size: 13px;
	display: flex;
	gap: 4px;
}

/* Mobile Adjustments */
@media only screen and (max-width: 767px) {
	.testimonial-modern-title {
		font-size: 36px;
	}

	.testimonial-track-item {
		flex: 0 0 300px;
		width: 300px;
	}

	.testimonial-track {
		animation-duration: 25s;
	}
}

/*---------------------
  Counter
-----------------------*/

.counter {
	padding-top: 80px;
	padding-bottom: 60px;
}

.counter__item {
	text-align: center;
	margin-bottom: 30px;
}

.counter__item .counter__number {
	margin-top: 10px;
}

.counter__item .counter__number h2 {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	display: inline-block;
}

.counter__item .counter__number span {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	display: inline-block;
}

/*---------------------
  Call
-----------------------*/

/*---------------------
  Modern Call Section Redesign
-----------------------*/
.modern-call {
	background: linear-gradient(135deg, #1a3048 0%, #0a1525 100%);
	padding: 100px 0;
	position: relative;
	/* Removed overflow: hidden from section to allow dropdown overflow */
}

/* Move overflow: hidden to a decoration-only layer if needed, 
   but for now we'll just constrain the blob specifically */
.modern-call::before {
	content: '';
	position: absolute;
	top: -20%;
	right: 0;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(233, 164, 11, 0.08) 0%, transparent 70%);
	filter: blur(50px);
	z-index: 0;
	pointer-events: none;
}

.modern-call .container {
	position: relative;
	z-index: 1;
}

.modern-call-text-side h2 {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 25px;
	line-height: 1.1;
}

.modern-call-text-side p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 90%;
}

.modern-call-cta {
	display: inline-flex;
	align-items: center;
	padding: 12px 0;
	color: #e9a40b;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
}

.modern-call-cta:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #e9a40b;
	transform: scaleX(0.3);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.modern-call-cta:hover {
	color: #ffffff;
}

.modern-call-cta:hover:after {
	transform: scaleX(1);
}

.call-glass-form {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 32px;
	padding: 45px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.modern-form-input,
.modern-form-select {
	width: 100%;
	height: 60px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	padding: 0 24px !important;
	color: #ffffff !important;
	font-size: 16px !important;
	margin-bottom: 20px !important;
	transition: all 0.3s ease !important;
}

/* Specific styling for nice-select when applied to our modern select */
.modern-call .nice-select.modern-form-select {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	height: 60px !important;
	line-height: 58px !important;
	color: #ffffff !important;
	float: none !important;
	width: 100% !important;
	padding-left: 24px !important;
	margin-bottom: 20px !important;
	z-index: 20 !important;
	/* Ensure the select container is above others when interacting */
}

.modern-call .nice-select.modern-form-select .current {
	color: #ffffff !important;
	font-size: 16px !important;
}

.modern-call .nice-select.modern-form-select:after {
	border-bottom: 2px solid #e9a40b !important;
	border-right: 2px solid #e9a40b !important;
	right: 24px !important;
	width: 8px !important;
	height: 8px !important;
	margin-top: -6px !important;
}

.modern-call .nice-select.modern-form-select .list {
	background: #1a3048 !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
	width: 100% !important;
	margin-top: 8px !important;
	padding: 8px 0 !important;
	z-index: 9999 !important;
	/* Extremely high z-index to stay on top */
	position: absolute !important;
}

.modern-call .nice-select.modern-form-select .option {
	color: #ffffff !important;
	line-height: 50px !important;
	min-height: 50px !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	transition: all 0.2s ease !important;
	font-size: 15px !important;
}

.modern-call .nice-select.modern-form-select .option:hover,
.modern-call .nice-select.modern-form-select .option.focus,
.modern-call .nice-select.modern-form-select .option.selected.focus {
	background: rgba(233, 164, 11, 0.15) !important;
	color: #e9a40b !important;
}

.modern-form-input:focus,
.modern-form-select:focus,
.modern-call .nice-select.modern-form-select.open {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #e9a40b !important;
	outline: none !important;
	box-shadow: 0 0 0 5px rgba(233, 164, 11, 0.1) !important;
	z-index: 30 !important;
	/* Bring to front when open */
}

.modern-form-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.modern-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 18px;
}

.modern-form-select option {
	background: #1a3048;
	color: #ffffff;
}

.modern-submit-btn {
	width: 100%;
	padding: 15px 20px;
	min-height: 60px;
	background: #e9a40b;
	color: #ffffff;
	border: none;
	border-radius: 16px;
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 25px rgba(233, 164, 11, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
}

.modern-submit-btn:hover {
	background: #ffffff;
	color: #e9a40b;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.modern-submit-btn:active {
	transform: translateY(-2px);
}

.modern-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Response Alerts */
.modern-alert {
	border-radius: 16px;
	padding: 15px 20px;
	margin-bottom: 25px;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
}

.modern-alert-success {
	background: rgba(46, 204, 113, 0.1);
	border: 1px solid rgba(46, 204, 113, 0.2);
	color: #2ecc71;
}

.modern-alert-error {
	background: rgba(231, 76, 60, 0.1);
	border: 1px solid rgba(231, 76, 60, 0.2);
	color: #e74c3c;
}

@media (max-width: 991px) {
	.modern-call {
		padding: 70px 0;
	}

	.modern-call-text-side {
		text-align: center;
		margin-bottom: 50px;
	}

	.modern-call-text-side p {
		margin-left: auto;
		margin-right: auto;
	}

	.call-glass-form {
		padding: 30px;
	}

	.modern-submit-btn {
		font-size: 15px;
		letter-spacing: 1px;
	}
}

/*---------------------
  Modern Blog Redesign
-----------------------*/
.blog-modern {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.blog-modern .section-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #1a3048;
}

.blog-modern .section-title h2 span {
	color: #e9a40b;
}

.blog-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: rgba(233, 164, 11, 0.2);
}

.blog-thumb-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.featured-thumb {
	height: 360px;
	/* Increased to fill space better */
}

.small-thumb {
	height: 150px;
	/* Slightly reduced */
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.03);
}

.blog-card-content {
	padding: 22px;
	/* Tightened */
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.small-post .blog-card-content {
	padding: 15px 20px;
	/* Tightened */
}

.blog-category {
	display: inline-block;
	font-size: 10px;
	/* Smaller */
	font-weight: 700;
	text-transform: uppercase;
	color: #e9a40b;
	margin-bottom: 6px;
	letter-spacing: 1px;
}

.blog-title {
	font-size: 20px;
	/* Slightly smaller */
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 8px;
	line-height: 1.3;
}

.featured-post .blog-title {
	font-size: 22px;
}

.blog-title a {
	color: inherit;
	text-decoration: none;
}

.blog-title a:hover {
	color: #e9a40b;
}

.blog-desc {
	font-size: 14px;
	line-height: 1.5;
	color: #64748b;
	margin-bottom: 15px;
	/* Reduced gap */
}

.blog-author-box {
	margin-top: 15px;
	/* Removed auto to prevent stretching until necessary */
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 12px;
}

.featured-post .blog-author-box {
	margin-top: auto;
	/* Keep auto only for featured to maintain bottom alignment if needed */
}

.author-img-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	border: 1.5px solid #ffffff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.author-info h6 {
	font-size: 13px;
	font-weight: 700;
	color: #1a3048;
	margin: 0;
}

.author-info span {
	font-size: 11px;
	color: #94a3b8;
}

.view-all-wrapper {
	margin-top: 50px;
}


.modern-outline-btn {
	display: inline-block;
	padding: 14px 35px;
	border: 2px solid #e9a40b;
	color: #e9a40b;
	border-radius: 50px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.modern-outline-btn:hover {
	background: #e9a40b;
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(233, 164, 11, 0.2);
}

@media (max-width: 991px) {
	.featured-post {
		margin-bottom: 30px;
	}

	.small-post {
		margin-bottom: 30px;
	}

	.small-thumb {
		aspect-ratio: 16/9;
	}
}

@media (max-width: 767px) {
	.blog-title {
		font-size: 20px;
	}

	.featured-post .blog-title {
		font-size: 22px;
	}
}

/*---------------------
  Modern CTA Section
-----------------------*/
.cta-modern {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a3048 0%, #0a1525 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cta-modern::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(233, 164, 11, 0.06) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	filter: blur(40px);
}

.cta-modern .cta-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	color: #e9a40b;
	letter-spacing: 3px;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.cta-modern .cta-heading {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.1;
	position: relative;
	z-index: 1;
}

.cta-modern .cta-desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto 45px;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.cta-modern .cta-phone-number {
	display: block;
	font-size: 64px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 40px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-shadow: 0 0 30px rgba(233, 164, 11, 0.2);
	position: relative;
	z-index: 1;
}

.cta-modern .cta-phone-number:hover {
	color: #e9a40b;
	transform: scale(1.02);
}

.cta-modern .cta-btn-wrapper {
	position: relative;
	z-index: 1;
}

.cta-modern .cta-call-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 45px;
	background: #e9a40b;
	color: #ffffff;
	border-radius: 50px;
	font-weight: 800;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	box-shadow: 0 12px 25px rgba(233, 164, 11, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
}

.cta-modern .cta-call-btn:hover {
	background: #ffffff;
	color: #e9a40b;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-modern .cta-call-btn i {
	font-size: 20px;
}

@media (max-width: 991px) {
	.cta-modern .cta-heading {
		font-size: 40px;
	}

	.cta-modern .cta-phone-number {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.cta-modern {
		padding: 70px 0;
	}

	.cta-modern .cta-heading {
		font-size: 32px;
	}

	.cta-modern .cta-phone-number {
		font-size: 36px;
	}

	.cta-modern .cta-call-btn {
		padding: 15px 35px;
		font-size: 16px;
	}
}

/*---------------------
  Footer
-----------------------*/

/*---------------------
  Footer
-----------------------*/

.footer {
	background: linear-gradient(180deg, #111a35 0%, #0a1125 100%);
	padding: 100px 0 40px;
	color: #ffffff;
}

.footer__about {
	margin-bottom: 40px;
}

.footer__brand-summary {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 25px;
	max-width: 320px;
}

.footer__legal-small p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.5;
	margin-bottom: 0;
}

.footer__logo {
	margin-bottom: 30px;
}

.footer__logo img {
	max-height: 45px;
}

.footer__widget {
	margin-bottom: 40px;
}

.footer__widget h5 {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.footer__widget ul li {
	list-style: none;
	margin-bottom: 12px;
}

.footer__widget ul li a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.footer__widget ul li a:hover {
	color: #e9a40b;
	transform: translateX(5px);
}

.footer__support-text {
	font-size: 14px;
	color: rgba(168, 168, 168, 0.829);
	margin-bottom: 15px;
	line-height: 1.6;
}

.footer__support-list li {
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 15px;
	margin-bottom: 10px;
}

.footer__support-list li i {
	color: #e9a40b;
	margin-right: 10px;
}

.footer__bottom {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-links {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__bottom-links li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer__bottom-links li a:hover {
	color: #e9a40b;
}

.footer__copyright__text {
	text-align: right;
}

.footer__copyright__text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.footer__brand-summary {
		max-width: 100%;
	}

	.footer__copyright__text {
		text-align: left;
		margin-top: 15px;
	}

	.footer__bottom-links {
		gap: 20px;
	}
}

@media (max-width: 575px) {
	.footer {
		padding: 70px 0 30px;
	}

	.footer__bottom-links {
		flex-wrap: wrap;
		gap: 15px 25px;
	}
}


/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
	padding: 180px 0 100px;
	background: linear-gradient(135deg, #182143 0%, #111a35 100%);
	position: relative;
	overflow: hidden;
}

.breadcrumb-option:after {
	position: absolute;
	content: "";
	width: 300px;
	height: 300px;
	background: rgba(233, 164, 11, 0.05);
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
	z-index: 0;
}

.breadcrumb-option.contact-breadcrumb {
	padding: 180px 0 200px;
}

.breadcrumb__text {
	position: relative;
	z-index: 1;
}

.breadcrumb__text h2 {
	color: #ffffff;
	font-weight: 800;
	font-size: 56px;
	margin-bottom: 25px;
	letter-spacing: -1.5px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb__links {
	display: flex;
	align-items: center;
	gap: 15px;
}

.breadcrumb__links a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	text-decoration: none;
}

.breadcrumb__links a:hover {
	color: #e9a40b;
}

.breadcrumb__links span {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 767px) {
	.breadcrumb-option {
		padding: 150px 0 80px;
	}

	.breadcrumb__text {
		text-align: center;
	}

	.breadcrumb__text h2 {
		font-size: 26px !important;
		margin-bottom: 15px;
		line-height: 1.3;
	}

	.breadcrumb__links {
		justify-content: center;
		flex-wrap: wrap;
		white-space: normal;
		font-size: 13px;
		gap: 8px 15px;
	}

	.breadcrumb__links a,
	.breadcrumb__links span {
		font-size: 13px;
	}

}

/*---------------------
  About
-----------------------*/

.about {
	padding-bottom: 70px;
}

.about__content {
	margin-bottom: 70px;
}

.about__img {
	position: relative;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.about__img img {
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about__img:hover img {
	transform: scale(1.05);
}

.about__img .play-btn {
	display: inline-block;
	position: absolute;
	right: -30px;
	top: 50%;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.about__img .play-btn img {
	min-width: auto;
}

.about__text {
	padding-top: 35px;
}

.about__text h2 {
	color: #1a3048;
	font-weight: 800;
	font-size: 38px;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.about__text h4 {
	color: #e9a40b;
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.4;
}

.about__text p.first_para {
	margin-bottom: 30px;
}

.about__text p.last_para {
	margin-bottom: 45px;
}

.about__item {
	margin-bottom: 40px;
	background: #f8f9fa;
	padding: 30px;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.about__item:hover {
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.about__item h4 {
	color: #1a3048;
	font-weight: 800;
	margin-bottom: 12px;
}

.about__item p {
	color: #666;
	margin-bottom: 0;
}

/*---------------------
    History
-----------------------*/

.history .section-title h2 {
	color: #ffffff;
}

.history .section-title p {
	color: #ffffff;
}

.history__img img {
	border-radius: 2px;
	min-width: 100%;
}

.history__text {
	position: relative;
	height: 460px;
	padding-left: 44px;
	padding-right: 15px;
	overflow-y: auto;
}

.history__text:before {
	position: absolute;
	left: 9px;
	top: 0;
	height: 100%;
	width: 2px;
	background: rgba(255, 255, 255, 0.1);
	content: "";
}

.history__item {
	position: relative;
	margin-bottom: 55px;
}

.history__item .history__indicator {
	position: absolute;
	left: -44px;
	top: 2px;
	height: 20px;
	width: 20px;
	background: rgba(255, 255, 255, 0.1);
	content: "";
	border-radius: 50%;
}

.history__item .history__indicator:after {
	position: absolute;
	left: 5px;
	top: 5px;
	height: 10px;
	width: 10px;
	background: #e9a40b;
	content: "";
	border-radius: 50%;
}

.history__item span {
	font-size: 14px;
	color: #e9a40b;
}

.history__item h4 {
	color: #ffffff;
	font-weight: 700;
	margin-top: 4px;
	margin-bottom: 10px;
}

.history__item p {
	color: #ffffff;
	margin-bottom: 0;
}

/*---------------------
   Team
-----------------------*/

.team {
	padding-bottom: 70px;
}

.team .section-title {
	text-align: left;
	margin-bottom: 50px;
}

.team__item {
	height: 480px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team__item:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(34, 48, 96, 0.8);
	content: "";
	z-index: -1;
	opacity: 0;
	-webkit-transition: all, 0.5s, ease-out, 0.5s;
	-o-transition: all, 0.5s, ease-out, 0.5s;
	transition: all, 0.5s, ease-out, 0.5s;
}

.team__item:hover:after {
	opacity: 1;
}

.team__item:hover .team__text {
	top: 0;
}

.team__item:hover .team__text .team__title {
	border-bottom: 1px solid rgba(183, 183, 183, 0.2);
	padding: 0 0 26px;
	margin-bottom: 26px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	bottom: initial;
	opacity: 1;
	visibility: visible;
}

.team__item:hover .team__text p {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}

.team__item:hover .team__text .team__social {
	opacity: 1;
	visibility: visible;
	bottom: 34px;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}

.team__text {
	height: 100%;
	top: 361px;
	position: relative;
	padding: 35px 30px 30px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.team__text .team__title {
	border-bottom: 1px solid rgba(183, 183, 183, 0.2);
	padding: 0 0 26px;
	margin-bottom: 26px;
	position: relative;
}

.team__text .team__title h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 6px;
}

.team__text .team__title span {
	font-size: 15px;
	color: #e9a40b;
}

.team__text p {
	color: #e4e4e4;
	line-height: 26px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.team__text .team__social {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 30px;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
}

.team__text .team__social a {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	margin-right: 34px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__text .team__social a:last-child {
	margin-right: 0;
}

.team__text .team__social a:hover {
	color: #e9a40b;
}

/*---------------------
  Services
-----------------------*/

.services {
	padding-bottom: 30px;
}

.services__item {
	margin-bottom: 70px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.services__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	border-color: rgba(233, 164, 11, 0.3);
}

.services__item--uniform {
	height: 400px;
	display: flex;
	flex-direction: column;
}

.services__item__img {
	height: 200px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services__item:hover {
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.services__item:hover .services__item__text {
	border: 1px solid transparent;
}

.services__item:hover .services__item__text a:after {
	opacity: 1;
}

.services__item__img img {
	border-radius: 5px 5px 0 0;
	min-width: 100%;
}

.services__image {
	width: 100% !important;
	height: 200px !important;
	object-fit: cover;
	object-position: center;
}

.step-count-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background: #e9a40b;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 2;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.services__item--uniform {
		height: 350px;
	}

	.services__item__img {
		height: 150px;
	}

	.services__image {
		height: 150px !important;
	}

	.services__item__text {
		min-height: 120px;
		padding-top: 25px;
		padding-bottom: 20px;
	}
}

.services__item__text {
	padding-top: 35px;
	padding-bottom: 30px;
	text-align: center;
	border: 1px solid rgba(112, 112, 112, 0.1);
	border-radius: 0 0 5px 5px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 150px;
}

.services__item__text h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.services__item__text h4 span {
	color: #e9a40b;
}

.services__item__text p {
	margin-bottom: 34px;
}

.services__item__text a {
	font-size: 12px;
	color: #323232;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 0;
	position: relative;
}

.services__item__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #e9a40b;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
}

/*---------------------
  Services Details
-----------------------*/

.services__details__text {
	margin-bottom: 80px;
}

.services__details__title h2 {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 22px;
}

.services__details__title p {
	font-size: 24px;
	line-height: 38px;
	margin-bottom: 50px;
}

.services__details__more {
	margin-bottom: 30px;
}

.services__details__img {
	margin-bottom: 42px;
}

.services__details__img img {
	min-width: 100%;
	border-radius: 5px;
	margin-bottom: 30px;
}

.services__details__product h2 {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 20px;
}

.services__details__product__item {
	margin-bottom: 55px;
}

.services__details__product__item h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 6px;
}

.services__details__product__item h4 span {
	color: #e9a40b;
}

.services__details__product__item p {
	margin-bottom: 0;
}

.services__details__faq {
	margin-bottom: 75px;
}

.services__details__faq .card {
	border: none;
	border-radius: 0;
	margin-bottom: 20px;
}

.services__details__faq .card .card-heading {
	border-radius: 2px;
}

.services__details__faq .card .card-heading a {
	font-size: 18px;
	color: #323232;
	font-weight: 700;
	padding: 12px 10px 10px 65px;
	display: block;
	background: #f6f6f6;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.services__details__faq .card .card-heading.active a {
	background: #223060;
	color: #ffffff;
}

.services__details__faq .card .card-body {
	padding-left: 0;
}

.services__details__faq .card .card-body p {
	color: #323232;
}

.services__details__faq .card-heading a:after,
.services__details__faq .card-heading>a.active[aria-expanded=false]:after {
	content: "K";
	font-size: 24px;
	font-family: "ElegantIcons";
	color: #323232;
	position: absolute;
	left: 30px;
	top: 14px;
	line-height: 20px;
}

.services__details__faq .card-heading.active a:after {
	content: "L";
	font-size: 24px;
	font-family: "ElegantIcons";
	color: #e9a40b;
	position: absolute;
	left: 30px;
	top: 14px;
	line-height: 20px;
}

.services__details__faq .card-heading a[aria-expanded=true]:after,
.services__details__faq .card-heading>a.active:after {
	content: "L";
	font-size: 24px;
	font-family: "ElegantIcons";
	color: #e9a40b;
	position: absolute;
	left: 30px;
	top: 14px;
	line-height: 20px;
}

.services__details__calculator h2 {
	color: #323232;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 35px;
}

.services__details__calculator__item {
	position: relative;
	margin-bottom: 60px;
}

.services__details__calculator__item:last-child {
	margin-bottom: 0;
}

.services__details__calculator__item p {
	font-size: 18px;
	color: #323232;
	margin-bottom: 20px;
}

.services__details__calculator__item .ui-widget.ui-widget-content {
	border: none;
	height: 8px;
	background: #e4e4e4;
	border-radius: 50px;
}

.services__details__calculator__item .ui-slider .ui-slider-range {
	background: #e9a40b;
}

.services__details__calculator__item .ui-slider .ui-slider-handle {
	height: 16px;
	width: 16px;
	display: inline-block;
	background: #e9a40b;
	cursor: pointer;
	border: 2px solid #fff;
	border-radius: 50px;
	z-index: 9;
}

.services__details__calculator__item .ui-slider-horizontal .ui-slider-handle {
	top: -4px;
	margin-left: -8px;
}

.services__details__calculator__item .price-input {
	position: absolute;
	right: 0;
	top: -20px;
	z-index: 1;
}

.services__details__calculator__item .price-input.month input {
	text-align: right;
	padding: 0 10px;
}

.services__details__calculator__item .price-input input {
	color: #323232;
	font-weight: 700;
	font-size: 15px;
	height: 50px;
	width: 120px;
	background: transparent;
	border: none;
	text-align: center;
	border: 1px solid #e4e4e4;
	margin-right: -5px;
}

.services__details__calculator__item .price-input span {
	font-size: 15px;
	width: 100px;
	height: 50px;
	text-align: center;
	background: #f6f6f6;
	color: #323232;
	display: inline-block;
	line-height: 50px;
	border: 1px solid #f6f6f6;
	position: relative;
	top: 1px;
}

.services__details__calculator__total {
	margin-top: -19px;
}

.services__details__calculator__total__item {
	background: #f6f6f6;
	padding: 16px 26px 20px 26px;
	margin-bottom: 15px;
}

.services__details__calculator__total__item:last-child {
	margin-bottom: 0;
}

.services__details__calculator__total__item p {
	color: #707070;
	margin-bottom: 5px;
}

.services__details__calculator__total__item h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 60px;
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.blog__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	border-color: rgba(233, 164, 11, 0.3);
}

.blog__item__img img {
	width: 100%;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog__item:hover .blog__item__img img {
	transform: scale(1.05);
}

.blog__item__text {
	padding: 35px 30px;
}

.blog__item__text h3 {
	font-weight: 700;
	margin-bottom: 5px;
}

.blog__item__text h3 a {
	color: #323232;
}

.blog__item__text ul {
	margin-bottom: 22px;
}

.blog__item__text ul li {
	font-size: 15px;
	color: #a8a8a8;
	list-style: none;
	margin-right: 30px;
	display: inline-block;
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text ul li i {
	color: #e9a40b;
}

.blog__item__text p {
	color: #707070;
	margin-bottom: 40px;
}

.blog__item__text .read__more {
	display: inline-block;
	color: #707070;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.blog__pagination a {
	font-size: 15px;
	color: #707070;
	display: inline-block;
	padding: 12px 20px 10px;
	border: 1px solid #e4e4e4;
	border-left: none;
	margin-right: -5px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__pagination a:first-child {
	border-left: 1px solid #e4e4e4;
}

.blog__pagination a:hover {
	background: #e9a40b;
	color: #ffffff;
	border-color: #e9a40b;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 40px 30px;
	border-radius: 24px;
	background: #f8f9fa;
	position: sticky;
	top: 120px;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 43px;
	border-radius: 2px;
	font-size: 15px;
	color: #5c5c5c;
	padding-left: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog__sidebar__search form input::-webkit-input-placeholder {
	color: #5c5c5c;
}

.blog__sidebar__search form input::-moz-placeholder {
	color: #5c5c5c;
}

.blog__sidebar__search form input:-ms-input-placeholder {
	color: #5c5c5c;
}

.blog__sidebar__search form input::-ms-input-placeholder {
	color: #5c5c5c;
}

.blog__sidebar__search form input::placeholder {
	color: #5c5c5c;
}

.blog__sidebar__search form button {
	font-size: 15px;
	color: #323232;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 15px;
}

.blog__sidebar__categories {
	margin-bottom: 35px;
}

.blog__sidebar__categories h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog__sidebar__categories ul li {
	list-style: none;
}

.blog__sidebar__categories ul li a {
	font-size: 15px;
	color: #323232;
	line-height: 36px;
}

.blog__sidebar__categories ul li a span {
	font-weight: 700;
	float: right;
}

.blog__sidebar__recent {
	margin-bottom: 45px;
}

.blog__sidebar__recent h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item {
	display: block;
	overflow: hidden;
	margin-bottom: 15px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 15px;
}

.blog__sidebar__recent__item__pic img {
	border-radius: 2px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
	padding-top: 10px;
}

.blog__sidebar__recent__item__text h6 {
	font-size: 15px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 4px;
}

.blog__sidebar__recent__item__text p {
	font-size: 13px;
	color: #a8a8a8;
	margin-bottom: 0;
}

.blog__sidebar__recent__item__text p i {
	margin-right: 2px;
	color: #e9a40b;
}

.blog__sidebar__tags {
	margin-bottom: 40px;
}

.blog__sidebar__tags h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog__sidebar__tags a {
	font-size: 11px;
	color: #5c5c5c;
	text-transform: uppercase;
	display: inline-block;
	padding: 6px 15px 4px;
	background: #f2f2f2;
	border-radius: 2px;
	margin-right: 6px;
	margin-bottom: 10px;
}

.blog__sidebar__social h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog__sidebar__social .blog__sidebar__social__links a {
	display: inline-block;
	color: #ffffff;
	font-size: 15px;
	height: 38px;
	width: 38px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	margin-right: 6px;
}

.blog__sidebar__social .blog__sidebar__social__links a:last-child {
	margin-right: 0;
}

.blog__sidebar__social .blog__sidebar__social__links a.facebook {
	background: #344973;
}

.blog__sidebar__social .blog__sidebar__social__links a.twitter {
	background: #000000;
}

.blog__sidebar__social .blog__sidebar__social__links a.instagram {
	background: #E4405F;
}

.blog__sidebar__social .blog__sidebar__social__links a.linkedin {
	background: #0077B5;
}

/*---------------------
  Blog Hero
-----------------------*/

.blog-hero {
	padding: 150px 0 140px;
}

.blog__hero__text .label {
	font-size: 12px;
	display: inline-block;
	font-weight: 700;
	color: #ffffff;
	background: #e9a40b;
	padding: 4px 18px 3px;
	border-radius: 2px;
	text-transform: uppercase;
}

.blog__hero__text h2 {
	font-size: 44px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 24px;
	margin-bottom: 65px;
}

.blog__hero__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	margin-right: 65px;
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li i {
	color: #e9a40b;
	margin-right: 5px;
}

/*---------------------
  Blog Details
-----------------------*/

.blog__details__title {
	margin-bottom: 45px;
}

.blog__details__title p {
	font-size: 18px;
	color: #707070;
	line-height: 30px;
}

.blog__details__title p.first-para {
	margin-bottom: 45px;
}

.blog__details__title p .letter-cap:first-child {
	font-size: 64px;
	font-weight: 700;
	color: #323232;
	padding-right: 30px;
	float: left;
	line-height: 52px;
}

.blog__details__quote {
	text-align: center;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	padding: 35px 35px 30px;
	margin-bottom: 40px;
}

.blog__details__quote p {
	font-size: 20px;
	color: #323232;
	line-height: 32px;
	font-style: italic;
	margin-bottom: 38px;
}

.blog__details__quote h6 {
	color: #e9a40b;
	font-weight: 700;
}

.blog__details__text {
	margin-bottom: 65px;
}

.blog__details__text h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog__details__text p {
	font-size: 18px;
	color: #707070;
	line-height: 30px;
}

.blog__details__text p.first-para {
	margin-bottom: 35px;
}

.blog__details__slider {
	margin-bottom: 45px;
}

.blog__details__slider.owl-carousel .owl-nav button {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: #ffffff;
	color: #323232;
	line-height: 40px;
	text-align: center;
	border-radius: 2px;
	position: absolute;
	left: 75px;
	top: 50%;
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
}

.blog__details__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 75px;
}

.blog__details__slider.owl-carousel .owl-nav button:hover {
	background: #e9a40b;
	color: #ffffff;
}

.blog__details__slider__img {
	height: 700px;
}

.blog__details__tag__share {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 10px;
	margin-bottom: 40px;
}

.blog__details__tag span {
	font-size: 18px;
	color: #323232;
	font-weight: 700;
	margin-right: 10px;
}

.blog__details__tag a {
	font-size: 11px;
	color: #5c5c5c;
	text-transform: uppercase;
	display: inline-block;
	background: #f2f2f2;
	padding: 5px 20px 3px 15px;
	border-radius: 2px;
	margin-right: 6px;
	margin-bottom: 10px;
}

.blog__details__tag a:last-child {
	margin-right: 0;
}

.blog__details__share {
	text-align: right;
}

.blog__details__share span {
	font-size: 18px;
	color: #323232;
	font-weight: 700;
	margin-right: 15px;
}

.blog__details__share a {
	display: inline-block;
	color: #707070;
	margin-right: 18px;
}

.blog__details__share a:last-child {
	margin-right: 0;
}

.blog__details__control__btn {
	padding: 0 15px;
	margin-bottom: 80px;
}

.blog__details__control__btn .blog__previous__btn {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #323232;
	line-height: 25px;
	position: relative;
	padding: 30px 40px 25px 65px;
	background: #fbfafa;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.blog__details__control__btn .blog__previous__btn span {
	font-size: 30px;
	position: absolute;
	left: 25px;
	top: 41px;
}

.blog__details__control__btn .blog__next__btn {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #323232;
	line-height: 25px;
	position: relative;
	padding: 30px 65px 25px 40px;
	background: #fbfafa;
	text-align: right;
}

.blog__details__control__btn .blog__next__btn span {
	font-size: 30px;
	position: absolute;
	right: 25px;
	top: 41px;
}

.blog__details__comment h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 45px;
}

.blog__details__comment__item {
	margin-bottom: 40px;
}

.blog__details__comment__item.reply__large .blog__details__comment__item__text:after {
	height: 265px;
}

.blog__details__comment__item.reply__item {
	padding-left: 140px;
}

.blog__details__comment__item.reply__item .blog__details__comment__item__text {
	padding-left: 0;
}

.blog__details__comment__item.reply__item .blog__details__comment__item__text:after {
	display: none;
}

.blog__details__comment__item__img {
	float: left;
	margin-right: 30px;
}

.blog__details__comment__item__img img {
	border-radius: 2px;
}

.blog__details__comment__item__text {
	display: table;
	padding-left: 30px;
	position: relative;
}

.blog__details__comment__item__text:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background: rgba(0, 0, 0, 0.1);
	content: "";
}

.blog__details__comment__item__text span {
	font-size: 13px;
	color: #e9a40b;
}

.blog__details__comment__item__text h6 {
	color: #323232;
	font-weight: 700;
	margin-top: 5px;
	margin-bottom: 6px;
}

.blog__details__comment__item__text p {
	color: #828282;
	margin-bottom: 35px;
}

.blog__details__comment__item__text a {
	font-size: 12px;
	color: #828282;
	font-weight: 700;
	display: inline-block;
	padding: 4px 25px 2px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-right: 8px;
	background: transparent;
}

.blog__details__comment__item__text a.reply {
	background: #e9a40b;
	border-color: #e9a40b;
	color: #ffffff;
}

.blog__details__comment__form h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 45px;
}

.blog__details__comment__form form input {
	width: 100%;
	height: 50px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 1px;
	font-size: 15px;
	padding-left: 20px;
	color: #707070;
	margin-bottom: 20px;
}

.blog__details__comment__form form input::-webkit-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form input::-moz-placeholder {
	color: #707070;
}

.blog__details__comment__form form input:-ms-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form input::-ms-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form input::placeholder {
	color: #707070;
}

.blog__details__comment__form form .input-list {
	margin-right: -20px;
}

.blog__details__comment__form form .input-list input {
	width: calc(50% - 20px);
	float: left;
	margin-right: 20px;
}

.blog__details__comment__form form textarea {
	width: 100%;
	height: 120px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 1px;
	font-size: 15px;
	padding-left: 20px;
	padding-top: 12px;
	color: #707070;
	margin-bottom: 34px;
	resize: none;
}

.blog__details__comment__form form textarea::-webkit-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form textarea::-moz-placeholder {
	color: #707070;
}

.blog__details__comment__form form textarea:-ms-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form textarea::-ms-input-placeholder {
	color: #707070;
}

.blog__details__comment__form form textarea::placeholder {
	color: #707070;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-top: 0;
	padding-bottom: 70px;
}

.contact__form {
	margin-top: -180px;
	margin-bottom: 80px;
}

.contact__form__text {
	padding: 70px;
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	background: #ffffff;
}

.contact__form__text .contact__form__title {
	margin-bottom: 34px;
}

.contact__form__text .contact__form__title h2 {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact__form__text form input {
	width: 100%;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 13px;
	padding-left: 20px;
	color: #707070;
	margin-bottom: 20px;
}

.contact__form__text form input::-webkit-input-placeholder {
	color: #707070;
}

.contact__form__text form input::-moz-placeholder {
	color: #707070;
}

.contact__form__text form input:-ms-input-placeholder {
	color: #707070;
}

.contact__form__text form input::-ms-input-placeholder {
	color: #707070;
}

.contact__form__text form input::placeholder {
	color: #707070;
}

.contact__form__text form .input-list {
	margin-right: -20px;
}

.contact__form__text form .input-list input {
	width: calc(50% - 20px);
	float: left;
	margin-right: 20px;
}

.contact__form__text form textarea {
	width: 100%;
	height: 120px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 13px;
	padding-left: 20px;
	padding-top: 12px;
	color: #707070;
	margin-bottom: 24px;
	resize: none;
}

.contact__form__text form textarea::-webkit-input-placeholder {
	color: #707070;
}

.contact__form__text form textarea::-moz-placeholder {
	color: #707070;
}

.contact__form__text form textarea:-ms-input-placeholder {
	color: #707070;
}

.contact__form__text form textarea::-ms-input-placeholder {
	color: #707070;
}

.contact__form__text form textarea::placeholder {
	color: #707070;
}

.contact__address__item {
	margin-bottom: 30px;
	text-align: center;
}

.contact__address__item h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 25px;
}

.contact__address__item ul {
	display: inline-block;
}

.contact__address__item ul li {
	list-style: none;
	line-height: 25px;
	font-size: 15px;
	color: #5c5c5c;
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px;
	text-align: left;
}

.contact__address__item ul li:last-child {
	margin-bottom: 0;
}

.contact__address__item ul li i {
	color: #e9a40b;
	font-size: 18px;
	position: absolute;
	left: 0;
	top: 4px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero__text .primary-btn {
		margin-right: 15px;
		padding: 14px 30px 12px;
	}

	.header__menu ul li {
		margin-right: 40px;
	}

	.loan__services__item__text {
		bottom: -175px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero__text {
		padding-top: 0;
		padding-bottom: 50px;
	}

	.home__about__text {
		padding-top: 0;
		margin-bottom: 40px;
	}

	.loan__services__item {
		width: 33.33%;
	}

	.call__text {
		margin-bottom: 40px;
	}

	.about__img .play-btn {
		left: 50%;
		-webkit-transform: translate(-50px, -50px);
		-ms-transform: translate(-50px, -50px);
		transform: translate(-50px, -50px);
	}

	.history__img {
		margin-bottom: 40px;
	}

	.footer__copyright__links li {
		margin-right: 30px;
	}

	.footer__copyright__links li:after {
		right: -20px;
	}

	.header .container {
		position: relative;
	}

	.canvas__open_legacy {
		display: block;
		font-size: 22px;
		color: #323232;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #323232;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 35px;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.6);
		z-index: 98;
		content: "";
		visibility: hidden;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		width: 300px;
		background: #ffffff;
		padding: 40px 40px 30px 30px;
		z-index: 99;
		overflow-y: auto;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}

	.offcanvas-menu-wrapper.active {
		left: 0;
		opacity: 1;
	}

	.offcanvas__logo {
		margin-bottom: 20px;
	}

	.offcanvas__logo a {
		display: inline-block;
	}

	.offcanvas__menu {
		display: none;
	}

	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}

	.slicknav_btn {
		display: none;
	}

	.slicknav_nav {
		display: block !important;
	}

	.slicknav_nav ul {
		margin: 0;
		padding: 5px 0;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #323232;
		font-weight: 600;
		border-bottom: 1px solid #323232;
	}

	.slicknav_nav .slicknav_item a,
	.slicknav_nav .slicknav_parent-link a {
		border-bottom: none;
	}

	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #323232;
	}

	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #323232;
	}

	.offcanvas__search {
		margin-bottom: 25px;
		text-align: center;
	}

	.offcanvas__search i {
		font-size: 18px;
		color: #323232;
		cursor: pointer;
	}

	.offcanvas__widget {
		margin-bottom: 30px;
	}

	.offcanvas__widget li {
		font-size: 15px;
		color: #323232;
		list-style: none;
		line-height: 30px;
		font-weight: 600;
	}

	.offcanvas__widget li i {
		font-size: 18px;
		color: #e9a40b;
		margin-right: 8px;
	}

	.offcanvas__language {
		background: transparent;
		padding: 0;
		display: inline-block;
		float: none;
		position: relative;
	}

	.offcanvas__language:hover ul {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}

	.offcanvas__language img {
		display: inline-block;
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 6px;
	}

	.offcanvas__language span {
		font-size: 15px;
		font-weight: 700;
		color: #ffffff;
		text-transform: uppercase;
		display: inline-block;
		margin-right: 12px;
	}

	.offcanvas__language i {
		font-size: 20px;
		display: inline-block;
		color: #ffffff;
	}

	.offcanvas__language ul {
		position: absolute;
		left: 50px;
		top: 60px;
		width: 100px;
		background: #ffffff;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all, 0.3s;
		-o-transition: all, 0.3s;
		transition: all, 0.3s;
		z-index: 9;
	}

	.offcanvas__language ul li {
		list-style: none;
	}

	.offcanvas__language ul li a {
		font-size: 14px;
		color: #252525;
		padding: 5px 5px 5px 15px;
		display: block;
	}

	.header__top {
		display: none;
	}

	.header__nav {
		display: none;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.hero__text {
		padding-top: 0;
		padding-bottom: 50px;
	}

	.home__about__text {
		padding-top: 0;
		margin-bottom: 40px;
	}

	.call__text {
		margin-bottom: 40px;
	}

	.about__img .play-btn {
		left: 50%;
		-webkit-transform: translate(-50px, -50px);
		-ms-transform: translate(-50px, -50px);
		transform: translate(-50px, -50px);
	}

	.history__img {
		margin-bottom: 40px;
	}

	.loan__services__item {
		width: 50%;
	}

	.contact__widget__phone {
		text-align: left;
	}

	.contact__widget__item {
		margin-bottom: 30px;
	}

	.footer__copyright__links {
		text-align: center;
		margin-bottom: 20px;
	}

	.footer__copyright__text {
		text-align: center;
	}

	.team .text-right {
		text-align: left !important;
	}

	.team .section-title {
		margin-bottom: 30px;
	}

	.team .primary-btn {
		margin-bottom: 30px;
	}

	.services__details__calculator__total {
		margin-top: 0;
		padding-top: 40px;
	}

	.services__details__calculator h2 {
		margin-bottom: 50px;
	}

	.blog__sidebar {
		margin-top: 40px;
	}

	.blog__details__share {
		text-align: left;
		margin-top: 15px;
	}

	.blog__details__comment__form form .input-list {
		margin-right: 0;
	}

	.blog__details__comment__form form .input-list input {
		width: 100%;
		float: n;
		margin-right: 0;
	}

	.contact__form__text form .input-list {
		margin-right: 0;
	}

	.contact__form__text form .input-list input {
		width: 100%;
		float: none;
		margin-right: 0;
	}

	.header .container {
		position: relative;
	}

	.canvas__open_legacy {
		display: block;
		font-size: 22px;
		color: #323232;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #323232;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 35px;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.6);
		z-index: 98;
		content: "";
		visibility: hidden;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		width: 300px;
		background: #ffffff;
		padding: 40px 40px 30px 30px;
		z-index: 99;
		overflow-y: auto;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}

	.offcanvas-menu-wrapper.active {
		left: 0;
		opacity: 1;
	}

	.offcanvas__logo {
		margin-bottom: 20px;
	}

	.offcanvas__logo a {
		display: inline-block;
	}

	.offcanvas__menu {
		display: none;
	}

	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}

	.slicknav_btn {
		display: none;
	}

	.slicknav_nav {
		display: block !important;
	}

	.slicknav_nav ul {
		margin: 0;
		padding: 5px 0;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #323232;
		font-weight: 600;
		border-bottom: 1px solid #323232;
	}

	.slicknav_nav .slicknav_item a,
	.slicknav_nav .slicknav_parent-link a {
		border-bottom: none;
	}

	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #323232;
	}

	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #323232;
	}

	.offcanvas__search {
		margin-bottom: 25px;
		text-align: center;
	}

	.offcanvas__search i {
		font-size: 18px;
		color: #323232;
		cursor: pointer;
	}

	.offcanvas__widget {
		margin-bottom: 30px;
	}

	.offcanvas__widget li {
		font-size: 15px;
		color: #323232;
		list-style: none;
		line-height: 30px;
		font-weight: 600;
	}

	.offcanvas__widget li i {
		font-size: 18px;
		color: #e9a40b;
		margin-right: 8px;
	}

	.offcanvas__language {
		background: transparent;
		padding: 0;
		display: inline-block;
		float: none;
		position: relative;
	}

	.offcanvas__language:hover ul {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}

	.offcanvas__language img {
		display: inline-block;
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 6px;
	}

	.offcanvas__language span {
		font-size: 15px;
		font-weight: 700;
		color: #ffffff;
		text-transform: uppercase;
		display: inline-block;
		margin-right: 12px;
	}

	.offcanvas__language i {
		font-size: 20px;
		display: inline-block;
		color: #ffffff;
	}

	.offcanvas__language ul {
		position: absolute;
		left: 50px;
		top: 60px;
		width: 100px;
		background: #ffffff;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all, 0.3s;
		-o-transition: all, 0.3s;
		transition: all, 0.3s;
		z-index: 9;
	}

	.offcanvas__language ul li {
		list-style: none;
	}

	.offcanvas__language ul li a {
		font-size: 14px;
		color: #252525;
		padding: 5px 5px 5px 15px;
		display: block;
	}

	.header__top {
		display: none;
	}

	.header__nav {
		display: none;
	}

	.search-model-form input {
		width: 100%;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__form form .input-list {
		margin-right: 0;
	}

	.hero__form form .input-list .input-list-item {
		width: 100%;
		float: none;
		margin-right: 0;
	}

	.hero__form .site-btn {
		padding: 14px 20px 12px;
	}

	.loan__services__item {
		width: 100%;
	}

	.footer__copyright__links li {
		margin-right: 12px;
	}

	.footer__copyright__links li:after {
		right: -10px;
	}

	.services__details__calculator__item .price-input {
		position: relative;
		top: 0;
		margin-top: 25px;
	}

	.services__details__calculator__item {
		margin-bottom: 30px;
	}

	.blog__hero__text h2 {
		font-size: 30px;
	}

	.blog__hero__text ul li {
		margin-right: 10px;
	}

	.blog__details__slider.owl-carousel .owl-nav button {
		left: 30px;
	}

	.blog__details__slider.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: 30px;
	}

	.blog__details__comment__item.reply__item {
		padding-left: 10%;
	}

	.blog__details__comment__item__img {
		float: none;
		margin-bottom: 15px;
	}

	.blog__details__comment__item__text {
		padding-left: 0;
	}

	.blog__details__comment__item.reply__large .blog__details__comment__item__text:after,
	.blog__details__comment__item__text:after {
		display: none;
	}

	.blog__details__comment__item__text a {
		margin-bottom: 10px;
	}

	.contact__form__text {
		padding: 30px;
	}

	.search-model-form input {
		font-size: 24px;
	}
}

/* PayAssured Custom Play Button Styles - High Priority */
.loan__services__item .loan__services__item__text .play__button,
.loan__services__item__text .play__button,
.play__button {
	background: rgba(233, 164, 11, 0.9) !important;
	background-color: rgba(233, 164, 11, 0.9) !important;
	border: none !important;
	border-radius: 50% !important;
	width: 60px !important;
	height: 60px !important;
	min-width: 60px !important;
	min-height: 60px !important;
	max-width: 60px !important;
	max-height: 60px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	color: white !important;
	font-size: 20px !important;
	margin-top: 15px !important;
	padding: 0 !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
	text-decoration: none !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
}

.loan__services__item .loan__services__item__text .play__button:hover,
.loan__services__item__text .play__button:hover,
.play__button:hover {
	background: rgba(233, 164, 11, 1) !important;
	background-color: rgba(233, 164, 11, 1) !important;
	transform: scale(1.1) !important;
}

.loan__services__item .loan__services__item__text .play__button span,
.loan__services__item__text .play__button span,
.play__button span {
	margin-left: 3px !important;
	font-size: 20px !important;
	color: white !important;
}

/* Hero Image Container Styles - High Priority for Desktop */
.hero__image__container {
	background: white !important;
	border-radius: 20px !important;
	padding: 8px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
	margin-top: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.hero__image__wrapper {
	position: relative !important;
	border-radius: 15px !important;
	overflow: hidden !important;
	background: white !important;
	max-width: 100% !important;
	width: 100% !important;
	min-height: 400px !important;
	height: 400px !important;
	aspect-ratio: 16/9 !important;
}

.hero__image {
	width: 100% !important;
	height: 100% !important;
	border-radius: 15px !important;
	display: block !important;
	object-fit: cover !important;
}

.hero__play__button {
	position: absolute !important;
	top: 20px !important;
	right: 20px !important;
	background: rgba(233, 164, 11, 0.9) !important;
	background-color: rgba(233, 164, 11, 0.9) !important;
	border: none !important;
	border-radius: 50% !important;
	width: 70px !important;
	height: 70px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	color: white !important;
	font-size: 24px !important;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
	z-index: 10 !important;
}

.hero__play__button:hover {
	background: rgba(233, 164, 11, 1) !important;
	background-color: rgba(233, 164, 11, 1) !important;
	transform: scale(1.1) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

.hero__play__button span {
	margin-left: 4px !important;
	font-size: 24px !important;
	color: white !important;
}

/* Tablet responsive styles for hero image */
@media (max-width: 991px) and (min-width: 768px) {
	.hero__image__container {
		margin-top: 50px !important;
		padding: 10px !important;
	}

	.hero__image__wrapper {
		min-height: 450px !important;
		height: 450px !important;
		aspect-ratio: 16/9 !important;
	}
}

/* Mobile responsive styles for hero image */
@media (max-width: 767px) {
	.hero__image__container {
		padding: 5px !important;
		margin-top: 30px !important;
	}

	.hero__image__wrapper {
		border-radius: 12px !important;
		min-height: 300px !important;
		height: 300px !important;
		aspect-ratio: 16/9 !important;
	}

	.hero__image {
		border-radius: 12px !important;
	}

	.hero__play__button {
		width: 60px !important;
		height: 60px !important;
		top: 15px !important;
		right: 15px !important;
		font-size: 20px !important;
	}

	.hero__play__button span {
		font-size: 20px !important;
	}
}

/* Get Started button styles for offcanvas */
.offcanvas__language .primary-btn {
	background: #e9a40b !important;
	color: #ffffff !important;
	padding: 12px 25px !important;
	border-radius: 4px !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: all 0.3s ease !important;
	display: inline-block !important;
}

.offcanvas__language .primary-btn:hover {
	background: #d1940a !important;
	color: #ffffff !important;
	text-decoration: none !important;
	transform: translateY(-2px) !important;
}

/* Advanced Analytics Dashboard Styles - External CSS */
.hero-analytics {
	padding: 60px 0 !important;
	background: #f6f7f9 !important;
}

.hero-analytics__title {
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	margin-bottom: 20px !important;
	color: #323232 !important;
}

.gradient-text {
	background: linear-gradient(135deg, #e9a40b 0%, #d1940a 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.hero-analytics__subtitle {
	font-size: 1.3rem !important;
	color: #323232 !important;
	margin-bottom: 20px !important;
	font-weight: 600 !important;
}

.hero-analytics__description {
	font-size: 1rem !important;
	color: #666 !important;
	line-height: 1.6 !important;
	margin-bottom: 30px !important;
}

.hero-analytics__content {
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	margin: 0 auto !important;
}

.key-results {
	padding: 60px 0 !important;
	background: #fff !important;
}

.key-results__item {
	text-align: center !important;
	padding: 20px !important;
}

.key-results__number {
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	color: #e9a40b !important;
	margin-bottom: 10px !important;
}

.key-results__text {
	font-size: 1rem !important;
	color: #323232 !important;
	font-weight: 600 !important;
}

.dashboard-features {
	padding: 60px 0 !important;
	background: #f6f7f9 !important;
}

.dashboard-features__item {
	text-align: center !important;
	padding: 30px 20px !important;
	background: #fff !important;
	border-radius: 5px !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
	margin-bottom: 30px !important;
	transition: all 0.3s ease !important;
	min-height: 280px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
}

.dashboard-features__item:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

.dashboard-features__icon {
	margin-bottom: 20px !important;
}

.dashboard-features__item h4 {
	font-size: 1.2rem !important;
	font-weight: 600 !important;
	color: #323232 !important;
	margin-bottom: 15px !important;
}

.dashboard-features__item p {
	color: #666 !important;
	line-height: 1.6 !important;
	font-size: 0.9rem !important;
}

.dashboard-preview {
	padding: 60px 0 !important;
	background: #2c3e50 !important;
	color: #fff !important;
}

.dashboard-preview__content h2 {
	font-size: 2rem !important;
	font-weight: 700 !important;
	margin-bottom: 20px !important;
	color: #fff !important;
}

.dashboard-preview__content p {
	font-size: 1rem !important;
	margin-bottom: 30px !important;
	color: #fff !important;
}

.dashboard-preview__image {
	margin: 30px 0 !important;
	border-radius: 5px !important;
	overflow: hidden !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.business-benefits {
	padding: 60px 0 !important;
	background: #fff !important;
}

.business-benefits__item {
	padding: 30px 20px !important;
	background: #f6f7f9 !important;
	border-radius: 5px !important;
	margin-bottom: 30px !important;
	min-height: 280px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
}

.business-benefits__item h4 {
	font-size: 1.3rem !important;
	font-weight: 600 !important;
	color: #323232 !important;
	margin-bottom: 15px !important;
}

.business-benefits__item ul {
	list-style: none !important;
	padding: 0 !important;
}

.business-benefits__item li {
	padding: 5px 0 !important;
	color: #666 !important;
	position: relative !important;
	padding-left: 20px !important;
	font-size: 0.9rem !important;
}

.business-benefits__item li:before {
	content: "✓" !important;
	position: absolute !important;
	left: 0 !important;
	color: #e9a40b !important;
	font-weight: bold !important;
}

.process-section {
	padding: 60px 0 !important;
	background: #f6f7f9 !important;
	color: #323232 !important;
}

.process-section .container {
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

.process-section .section-title {
	text-align: center !important;
	margin-bottom: 20px !important;
	width: 100% !important;
}

.process-section .section-title h2 {
	text-align: center !important;
	margin: 0 auto !important;
}

.process-section .section-title p {
	text-align: center !important;
	margin: 0 auto !important;
}

.process-section .row {
	display: flex !important;
	justify-content: center !important;
	align-items: flex-start !important;
	width: 100% !important;
	margin: 0 !important;
}

.process__item {
	text-align: center !important;
	padding: 20px 15px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: 100% !important;
	margin: 0 !important;
}

.process__number {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	color: #e9a40b !important;
	margin-bottom: 10px !important;
}

.process__icon {
	margin-bottom: 15px !important;
}

.process__item h5 {
	font-size: 1rem !important;
	font-weight: 600 !important;
	margin-bottom: 10px !important;
	color: #323232 !important;
}

.process__item p {
	font-size: 0.85rem !important;
	color: #666 !important;
}

.faq-section {
	padding: 60px 0 !important;
	background: #fff !important;
}

.faq__accordion .card {
	margin-bottom: 15px !important;
	border: 1px solid #e0e0e0 !important;
	box-shadow: none !important;
}

.faq__accordion .card-heading {
	background: #f6f7f9 !important;
	padding: 15px 20px !important;
	border-radius: 0 !important;
}

.faq__accordion .card-heading a {
	color: #323232 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
}

.faq__accordion .card-body {
	padding: 20px !important;
	background: #fff !important;
	color: #666 !important;
	line-height: 1.6 !important;
}

/* FAQ Question Styling - Desktop */
.faq-section .card-heading a {
	position: relative !important;
	padding-left: 30px !important;
	transition: all 0.3s ease !important;
}

.faq-section .card-heading a:before {
	content: "+" !important;
	position: absolute !important;
	left: 15px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	font-size: 18px !important;
	font-weight: bold !important;
	color: #e9a40b !important;
	transition: all 0.3s ease !important;
}

.faq-section .card-heading a[aria-expanded="true"]:before {
	content: "-" !important;
}

.faq-section .card-heading a:hover,
.faq-section .card-heading a:focus {
	color: #e9a40b !important;
	text-decoration: none !important;
}

.faq-section .card-heading a[aria-expanded="true"] {
	color: #ffffff !important;
	background-color: #2c3e50 !important;
}

.faq-section .card[aria-expanded="true"] .card-heading,
.faq-section .card:has(a[aria-expanded="true"]) .card-heading {
	background-color: #2c3e50 !important;
}

.faq-section .card:has(a[aria-expanded="true"]) .card-heading a {
	color: #ffffff !important;
	background-color: transparent !important;
}

.faq-section .card:has(a[aria-expanded="true"]) .card-heading a:before {
	color: #e9a40b !important;
}

/* Responsive styles for Advanced Analytics Dashboard */
@media (max-width: 991px) and (min-width: 768px) {
	.hero-analytics__title {
		font-size: 2.2rem !important;
	}

	.hero-analytics__subtitle {
		font-size: 1.2rem !important;
	}

	.key-results__number {
		font-size: 2.2rem !important;
	}

	.dashboard-preview__content h2 {
		font-size: 1.8rem !important;
	}

	.dashboard-features__item {
		margin-bottom: 25px !important;
	}

	.process-section .container {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.process-section .section-title {
		text-align: center !important;
		width: 100% !important;
	}

	.process-section .section-title h2 {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.process-section .section-title p {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.process-section .row {
		display: flex !important;
		justify-content: center !important;
		align-items: flex-start !important;
		width: 100% !important;
		margin: 0 !important;
	}

	.process__item {
		margin-bottom: 25px !important;
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		width: 100% !important;
		margin: 0 !important;
	}
}

@media (max-width: 767px) {
	.hero-analytics {
		padding: 40px 0 !important;
		text-align: center !important;
	}

	.hero-analytics .container {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.hero-analytics__title {
		font-size: 2rem !important;
		text-align: center !important;
		margin: 0 auto 20px auto !important;
		width: 100% !important;
	}

	.hero-analytics__subtitle {
		font-size: 1.1rem !important;
		text-align: center !important;
		margin: 0 auto 25px auto !important;
		width: 100% !important;
	}

	.hero-analytics__description {
		font-size: 0.9rem !important;
		text-align: center !important;
		margin: 0 auto 30px auto !important;
		width: 100% !important;
		max-width: 90% !important;
		line-height: 1.6 !important;
	}

	.hero-analytics .primary-btn {
		margin: 0 auto !important;
		text-align: center !important;
		display: inline-block !important;
		margin-top: 10px !important;
	}

	/* Additional mobile container fixes */
	.hero-analytics .row {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 15px !important;
	}

	.hero-analytics .col-12 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		text-align: center !important;
	}

	.hero-analytics__content {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 auto !important;
		padding: 20px 15px !important;
		gap: 15px !important;
	}

	/* Force centering for Bootstrap columns */
	.hero-analytics .col-lg-8 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	.hero-analytics .offset-lg-2 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-analytics .text-center {
		text-align: center !important;
	}

	/* Additional centering fixes */
	.hero-analytics .row {
		justify-content: center !important;
		align-items: center !important;
		margin: 0 !important;
	}

	.hero-analytics .container {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
	}

	/* Dashboard Preview Section Mobile Centering */
	.dashboard-preview {
		text-align: center !important;
	}

	.dashboard-preview .container {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.dashboard-preview .row {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 15px !important;
	}

	.dashboard-preview .col-12 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		text-align: center !important;
	}

	.dashboard-preview__content {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 auto !important;
		padding: 20px 15px !important;
		gap: 15px !important;
	}

	.dashboard-preview__content h2 {
		text-align: center !important;
		margin: 0 auto 20px auto !important;
		width: 100% !important;
	}

	.dashboard-preview__content p {
		text-align: center !important;
		margin: 0 auto 25px auto !important;
		width: 100% !important;
		max-width: 90% !important;
		line-height: 1.6 !important;
	}

	.dashboard-preview .primary-btn {
		margin: 0 auto !important;
		text-align: center !important;
		display: inline-block !important;
		margin-top: 10px !important;
	}

	/* Force centering for Bootstrap columns in dashboard preview */
	.dashboard-preview .col-lg-8 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	.dashboard-preview .offset-lg-2 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.dashboard-preview .col-lg-6 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	.dashboard-preview .offset-lg-3 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Additional centering fixes for dashboard preview */
	.dashboard-preview .row {
		justify-content: center !important;
		align-items: center !important;
		margin: 0 !important;
	}

	.dashboard-preview .container {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
	}

	/* FAQ Section Mobile Centering */
	.faq-section {
		text-align: center !important;
	}

	.faq-section .container {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.faq-section .row {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 15px !important;
	}

	.faq-section .col-12 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		text-align: center !important;
	}

	.faq-section .section-title {
		text-align: center !important;
		margin: 0 auto 30px auto !important;
		width: 100% !important;
	}

	.faq-section .section-title h2 {
		text-align: center !important;
		margin: 0 auto 15px auto !important;
		width: 100% !important;
	}

	.faq-section .section-title p {
		text-align: center !important;
		margin: 0 auto !important;
		width: 100% !important;
		max-width: 90% !important;
	}

	.faq__accordion {
		text-align: center !important;
		width: 100% !important;
		margin: 0 auto !important;
	}

	.faq__accordion .card {
		text-align: center !important;
		margin: 0 auto 15px auto !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.faq__accordion .card-heading {
		text-align: center !important;
	}

	.faq__accordion .card-heading a {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
	}

	.faq__accordion .card-body {
		text-align: center !important;
	}

	/* Force centering for Bootstrap columns in FAQ section */
	.faq-section .col-lg-8 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	.faq-section .offset-lg-2 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Additional centering fixes for FAQ section */
	.faq-section .row {
		justify-content: center !important;
		align-items: center !important;
		margin: 0 !important;
	}

	.faq-section .container {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
	}

	/* Additional FAQ centering overrides */
	.faq-section .accordion {
		text-align: center !important;
		width: 100% !important;
		margin: 0 auto !important;
	}

	.faq-section .card-heading a span {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
	}

	/* FAQ Question Styling */
	.faq-section .card-heading a {
		position: relative !important;
		padding-left: 30px !important;
		transition: all 0.3s ease !important;
	}

	.faq-section .card-heading a:before {
		content: "+" !important;
		position: absolute !important;
		left: 15px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		font-size: 18px !important;
		font-weight: bold !important;
		color: #e9a40b !important;
		transition: all 0.3s ease !important;
	}

	.faq-section .card-heading a[aria-expanded="true"]:before {
		content: "-" !important;
	}

	.faq-section .card-heading a:hover,
	.faq-section .card-heading a:focus {
		color: #e9a40b !important;
		text-decoration: none !important;
	}

	.faq-section .card-heading a[aria-expanded="true"] {
		color: #ffffff !important;
		background-color: #2c3e50 !important;
	}

	.faq-section .card[aria-expanded="true"] .card-heading,
	.faq-section .card:has(a[aria-expanded="true"]) .card-heading {
		background-color: #2c3e50 !important;
	}

	.faq-section .card:has(a[aria-expanded="true"]) .card-heading a {
		color: #ffffff !important;
		background-color: transparent !important;
	}

	.faq-section .card:has(a[aria-expanded="true"]) .card-heading a:before {
		color: #e9a40b !important;
	}

	.key-results {
		padding: 40px 0 !important;
	}

	.key-results__number {
		font-size: 2rem !important;
	}

	.key-results__text {
		font-size: 0.9rem !important;
	}

	.dashboard-features {
		padding: 40px 0 !important;
	}

	.dashboard-features__item {
		margin-bottom: 20px !important;
		padding: 25px 15px !important;
	}

	.dashboard-features__item h4 {
		font-size: 1.1rem !important;
	}

	.dashboard-features__item p {
		font-size: 0.85rem !important;
	}

	.dashboard-preview {
		padding: 40px 0 !important;
	}

	.dashboard-preview__content h2 {
		font-size: 1.5rem !important;
	}

	.dashboard-preview__content p {
		font-size: 0.9rem !important;
	}

	.business-benefits {
		padding: 40px 0 !important;
	}

	.business-benefits__item {
		padding: 25px 15px !important;
		margin-bottom: 15px !important;
	}

	.business-benefits__item h4 {
		font-size: 1.2rem !important;
	}

	.business-benefits__item li {
		font-size: 0.85rem !important;
	}

	.process-section {
		padding: 40px 0 !important;
	}

	.process-section .container {
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.process-section .section-title {
		text-align: center !important;
		width: 100% !important;
		margin-bottom: 30px !important;
	}

	.process-section .section-title h2 {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.process-section .section-title p {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.process-section .row {
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		margin: 0 !important;
	}

	.process__item {
		margin-bottom: 20px !important;
		padding: 15px 10px !important;
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		width: 100% !important;
		margin: 0 auto 20px auto !important;
	}

	.process__number {
		font-size: 1.3rem !important;
	}

	.process__item h5 {
		font-size: 0.9rem !important;
	}

	.process__item p {
		font-size: 0.8rem !important;
	}

	.faq-section {
		padding: 40px 0 !important;
	}

	.faq__accordion .card-heading {
		padding: 12px 15px !important;
	}

	.faq__accordion .card-heading a {
		font-size: 0.9rem !important;
	}

	.faq__accordion .card-body {
		padding: 15px !important;
		font-size: 0.85rem !important;
	}
}

/* Inline Video Container Styles */
.video-container {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16/9;
	min-height: 400px;
}

.inline-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 5px;
}

/* Hide the 3 dots options menu from video controls */
.inline-video::-webkit-media-controls-overflow-button {
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
	-webkit-appearance: none !important;
}

/* Hide the 3 dots menu for Firefox */
.inline-video::-moz-media-controls {
	overflow: hidden;
}

/* Additional webkit controls hiding */
.inline-video::-webkit-media-controls-panel {
	-webkit-appearance: none;
}

/* Hide overflow menu for all webkit browsers */
.inline-video::-webkit-media-controls-overflow-button {
	-webkit-appearance: none !important;
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

/* Fix dropdown z-index issues in recovery form */
.recovery-form__form .form-group {
	position: relative;
	z-index: 1;
}

.recovery-form__form .form-group:has(select) {
	z-index: 1000;
}

.recovery-form__form select {
	position: relative;
	z-index: 1000;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: 42px !important;
	width: 100% !important;
	background-color: #fff !important;
	border: 1px solid #e8e8e8 !important;
	border-radius: 5px !important;
	padding: 8px 12px !important;
	font-size: 14px !important;
	line-height: 1.4 !important;
	cursor: pointer !important;
	-webkit-appearance: menulist !important;
	-moz-appearance: menulist !important;
	appearance: menulist !important;
}

.recovery-form__form select:focus {
	z-index: 1001;
}

.recovery-form__form textarea {
	position: relative;
	z-index: 1;
}

/* Ensure dropdown options appear above all other elements */
.recovery-form__form select option {
	z-index: 1002;
	position: relative;
}

/* Prevent nice-select from being applied to recovery form */
.recovery-form__form .form-group select {
	position: static !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Override any nice-select styles that might be applied */
.recovery-form__form .form-group select:not(.nice-select) {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.close-video-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	font-size: 20px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.close-video-button:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Ensure the loan services item maintains its height when video is playing */
.loan__services__item {
	position: relative;
	overflow: hidden;
}

@media (max-width: 768px) {
	.close-video-button {
		top: 5px;
		right: 5px;
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

	.video-container {
		min-height: 300px;
		aspect-ratio: 16/9;
	}

	/* Position play button at bottom left on mobile for loan services items */
	.loan__services__item .loan__services__item__text {
		position: absolute;
		bottom: 20px;
		left: 20px;
		width: auto;
		padding: 0;
		text-align: left;
	}

	.loan__services__item .loan__services__item__text h4,
	.loan__services__item .loan__services__item__text p {
		display: none;
	}

	.loan__services__item .loan__services__item__text .play__button {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		margin: 0;
	}
}

/* Tablet responsive styles for video container */
@media (max-width: 991px) and (min-width: 769px) {
	.video-container {
		min-height: 450px;
		aspect-ratio: 16/9;
	}
}

.canvas__open {
	display: none !important;
}

@media only screen and (max-width: 991px) {
	.canvas__open {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 24px !important;
		color: #111111 !important;
		cursor: pointer;
		height: 35px !important;
		width: 35px !important;
		background: transparent !important;
		border: none !important;
		outline: none !important;
		margin-left: auto !important;
		position: static !important;
	}

	.header__logo {
		padding: 0 !important;
	}

	.header__logo img {
		max-height: 40px !important;
	}
}

/* Hide the 3 dots options menu from video controls */
.inline-video::-webkit-media-controls-overflow-button {
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
	-webkit-appearance: none !important;
}

/* Hide the 3 dots menu for Firefox */
.inline-video::-moz-media-controls {
	overflow: hidden;
}

/* Additional webkit controls hiding */
.inline-video::-webkit-media-controls-panel {
	-webkit-appearance: none;
}

/* Hide overflow menu for all webkit browsers */
.inline-video::-webkit-media-controls-overflow-button {
	-webkit-appearance: none !important;
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

/* Fix dropdown z-index issues in recovery form */
.recovery-form__form .form-group {
	position: relative;
	z-index: 1;
}

.recovery-form__form .form-group:has(select) {
	z-index: 1000;
}

.recovery-form__form select {
	position: relative;
	z-index: 1000;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: 42px !important;
	width: 100% !important;
	background-color: #fff !important;
	border: 1px solid #e8e8e8 !important;
	border-radius: 5px !important;
	padding: 8px 12px !important;
	font-size: 14px !important;
	line-height: 1.4 !important;
	cursor: pointer !important;
	-webkit-appearance: menulist !important;
	-moz-appearance: menulist !important;
	appearance: menulist !important;
}

.recovery-form__form select:focus {
	z-index: 1001;
}

.recovery-form__form textarea {
	position: relative;
	z-index: 1;
}

/* Ensure dropdown options appear above all other elements */
.recovery-form__form select option {
	z-index: 1002;
	position: relative;
}

/* Prevent nice-select from being applied to recovery form */
.recovery-form__form .form-group select {
	position: static !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Override any nice-select styles that might be applied */
.recovery-form__form .form-group select:not(.nice-select) {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.close-video-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	font-size: 20px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.close-video-button:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Ensure the loan services item maintains its height when video is playing */
.loan__services__item {
	position: relative;
	overflow: hidden;
}

@media (max-width: 768px) {
	.close-video-button {
		top: 5px;
		right: 5px;
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

	.video-container {
		min-height: 300px;
		aspect-ratio: 16/9;
	}

	/* Position play button at bottom left on mobile for loan services items */
	.loan__services__item .loan__services__item__text {
		position: absolute;
		bottom: 20px;
		left: 20px;
		width: auto;
		padding: 0;
		text-align: left;
	}

	.loan__services__item .loan__services__item__text h4,
	.loan__services__item .loan__services__item__text p {
		display: none;
	}

	.loan__services__item .loan__services__item__text .play__button {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		margin: 0;
	}
}

/* Tablet responsive styles for video container */
@media (max-width: 991px) and (min-width: 769px) {
	.video-container {
		min-height: 450px;
		aspect-ratio: 16/9;
	}
}

.canvas__open {
	display: none !important;
}

@media only screen and (max-width: 991px) {
	.canvas__open {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 24px !important;
		color: #111111 !important;
		cursor: pointer;
		height: 35px !important;
		width: 35px !important;
		background: transparent !important;
		border: none !important;
		outline: none !important;
		margin-left: auto !important;
		position: static !important;
	}

	.header__logo {
		padding: 0 !important;
	}

	.header__logo img {
		max-height: 40px !important;
	}
}

.header__nav_pill {
	height: 60px !important;
	display: flex !important;
	align-items: center !important;
}

/*---------------------
  Premium Regional Page Styles
-----------------------*/

.hero-debt-recovery {
	padding: 180px 0 100px;
	background: linear-gradient(135deg, #0a1125 0%, #1a3048 100%);
	position: relative;
	overflow: hidden;
}

.hero-debt-recovery:before {
	position: absolute;
	content: "";
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(233, 164, 11, 0.08) 0%, rgba(233, 164, 11, 0) 70%);
	top: -300px;
	right: -300px;
	border-radius: 50%;
	z-index: 0;
}

.hero-debt-recovery__content {
	position: relative;
	z-index: 1;
}

.hero-debt-recovery__title .gradient-text {
	font-size: 64px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #e9a40b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-debt-recovery__subtitle {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.hero-debt-recovery__description {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	max-width: 800px;
	margin: 0 auto 45px;
}

.hero-debt-recovery__buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.hero-debt-recovery__buttons .secondary-btn {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 12px 35px;
	border-radius: 100px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.hero-debt-recovery__buttons .secondary-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #e9a40b;
	color: #e9a40b;
}

/* Feature Grid / Why Choose Section */
.why-payassured-regional {
	padding: 120px 0;
	background: #ffffff;
}

.side-feature-card {
	background: #ffffff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.03);
	margin-bottom: 25px;
	transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
	display: flex;
	gap: 25px;
}

.side-feature-card:hover {
	transform: translateX(10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-color: rgba(233, 164, 11, 0.2);
}

.side-feature-card__icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: rgba(233, 164, 11, 0.08);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.side-feature-card:hover .side-feature-card__icon {
	background: #e9a40b;
	transform: rotate(-5deg) scale(1.1);
}

.side-feature-card:hover .side-feature-card__icon img {
	filter: brightness(0) invert(1);
}

.side-feature-card__text h4 {
	font-size: 20px;
	font-weight: 800;
	color: #1a3048;
	margin-bottom: 10px;
}

.side-feature-card__text p {
	font-size: 15px;
	line-height: 1.6;
	color: #6c757d;
	margin-bottom: 0;
}

/* Industry Section Modernization */
.industries-premium {
	padding: 100px 0;
	background: #0a1125;
	position: relative;
	overflow: hidden;
}

.industries-premium .section-title h2,
.industries-premium .section-title p {
	color: #ffffff;
}

.industry-center-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 60px 40px;
	text-align: center;
	max-width: 900px;
	margin: 50px auto 0;
	transition: all 0.4s ease;
}

.industry-center-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(233, 164, 11, 0.3);
	transform: translateY(-5px);
}

.industry-center-card__icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #e9a40b 0%, #b3841d 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	box-shadow: 0 15px 35px rgba(233, 164, 11, 0.3);
}

.industry-center-card h4 {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
}

.industry-center-card p {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

/* Mobile Adjustments for Premium Regional */
@media only screen and (max-width: 767px) {
	.hero-debt-recovery__content {
		text-align: center;
	}

	.hero-debt-recovery__title .gradient-text {
		font-size: 30px;
		text-align: center;
		line-height: 1.2;
	}

	.hero-debt-recovery__subtitle {
		text-align: center;
	}

	.hero-debt-recovery__description {
		text-align: center;
	}

	.hero-debt-recovery__buttons {
		flex-direction: column;
		gap: 15px;
	}

	.hero-debt-recovery__buttons .primary-btn,
	.hero-debt-recovery__buttons .secondary-btn {
		width: 100%;
		text-align: center;
		margin-right: 0;
	}

	.side-feature-card {
		flex-direction: column;
		text-align: center;
		padding: 40px 25px;
	}

	.side-feature-card__icon {
		margin: 0 auto 20px;
	}

	.side-feature-card__text p {
		text-align: justify;
	}

	.why-payassured-regional .section-title p {
		text-align: justify;
	}

	.breadcrumb__links {
		justify-content: center;
		flex-wrap: wrap;
		/* Changed to wrap */
		white-space: normal;
		/* Changed to normal */
		font-size: 13px;
		gap: 8px 15px;
	}

	.breadcrumb__links a,
	.breadcrumb__links span {
		font-size: 13px;
	}

	.responsive-h2 {
		font-size: 24px !important;
		line-height: 1.3 !important;
	}

	.responsive-p {
		font-size: 16px !important;
		line-height: 1.6 !important;
	}

	.responsive-phone {
		font-size: 2.5rem !important;
	}

	.outcome-execution__item h4 {
		font-size: 22px !important;
	}

	.feature-card p {
		text-align: justify;
	}

	.industry-center-card p {
		text-align: justify;
	}

	.outcome-execution__item p {
		text-align: justify;
	}

	.recovery-process .section-title p {
		text-align: justify;
	}

	.recovery-process__item p {
		text-align: justify;
	}
}

/* Base Responsive Utilities */
.responsive-h2 {
	font-size: 40px;
}

.responsive-p {
	font-size: 18px;
}

.responsive-phone {
	font-size: 4rem;
}

/* Global overflow fixes */
body {
	overflow-x: hidden;
}