/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Fintech - Business Consulting HTML Template
* File          : Css File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General Css
03. Header Css
04. Hero Css
05. About Us Css
06. Our Services Css
07. Why Choose Us Css
08. Our Feature Css
09. Fact Counter Css
10. What We Do Css
11. How It Work Css
12. Our Pricing Css
13. Our FAQs Css
14. Our Testimonial Css
15. Our Blog Css
16. Footer Css
17. About Us Page Css
18. Services Page Css
19. Service Single Css
20. Blog Archive Css
21. Blog Single Css
22. Team Page Css
23. Team Single Css
24. Pricing Page Css
25. Client Page Css
26. Testimonial Page Css
27. Image Gallery Css
28. Video Gallery Css
29. FAQs Page Css
30. Contact Page Css
31. 404 Error Page Css
32. Responsive Css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

/* :root{
	--primary-color			: #0E2433;
	--secondary-color		: #F1F7F8;
	--text-color			: #5E6E78;
	--accent-color			: #15C97A;
	--dark-color			: #0A4E63;
	--white-color			: #FFFFFF;
	--divider-color			: #E3ECEF;
	--dark-divider-color	: #FFFFFF24;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "DM Sans", sans-serif;
} */

:root {
    --primary-color: #040303;
    --secondary-color: #F4F4F4;
    --text-color: #808080;
    --accent-color: #00CC61;
    --dark-color: #004050;
    --white-color: #FFFFFF;
    --divider-color: #F3F3F3;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "DM Sans", sans-serif;
}


/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 18px 70px 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    left: 0;
	right: auto;
}

.btn-default::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translate(-30px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted{
	padding: 18px 30px;
}

.btn-default.btn-highlighted::after{
	display: none;
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title-content p{
	margin: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	/* padding-left: 34px; */
    margin-bottom: 15px;
}

/* .section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
} */

.section-title h1{
	font-size: 70px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: auto;
}

.section-title h2{
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: auto;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}

.section-title.dark-section h3::before{
	filter: brightness(0) invert(1);
}

.section-title.dark-section p{
	color: var(--white-color);
	opacity: 80%;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header Css		 ****/
/************************************/

header.main-header{
	position: relative;
	background: #FFFFFF;
	border-bottom: 1px solid #D6E8EE;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: #FFFFFF;
	border-bottom: 1px solid #D6E8EE;
	box-shadow: 0 2px 12px rgba(0, 64, 80, 0.10);
}

.navbar{
	padding: 15px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand .header-logo-img{
	width: auto;
	max-width: 350px;
	max-height: 170px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 10px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3em;
	padding: 15px 10px !important;
	color: #004050;
	opacity: 90%;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus,
.main-menu ul li.active > a{
	color: var(--accent-color);
	opacity: 100%;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	opacity: 100%;
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero{
	position: relative;
	background-color: var(--dark-color);
	background-image: url('../images/hero-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 50px 0 0;
}

.hero.hero-bg-image{
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 240px 0;
}

@media(max-width: 1500px){
	.hero.hero-bg-image{
		padding: 140px 0;
	}
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 240px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	margin-right: 30px;
	z-index: 2;
}

.hero.hero-bg-image .hero-content{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.hero-content-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.hero.hero-bg-image .hero-content .hero-content-body{
	justify-content: center;
}

.hero-btn{
	display: flex;
	margin-right: 40px;
}

.video-play-button{
	display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: auto;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--primary-color);
}

.video-play-button img{
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a img{
	filter: brightness(0) invert(0);
}

.video-play-button p{
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.hero-content-footer{
	margin-top: 40px;
}

.hero-content-footer h2{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.hero-client-slider .client-logo{
	text-align: center;
}

.hero-client-slider .client-logo img{
	width: 100%;
	max-height: 30px;
	opacity: 50%;
	transition: all 0.4s ease-in-out;
}

.hero-client-slider .client-logo img:hover{
	opacity: 100%;
}

.hero-image{
	position: relative;
	padding-left: 80px;
}

.hero-img figure{
	display: block;
}

.hero-img img{
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.352;
}

.company-experience{
	position: absolute;
	bottom: 25%;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	width: 280px;
	animation: experienceobject 3s infinite linear alternate;
	overflow: hidden;
}

@keyframes experienceobject{
	50%{
		left: 40px;
	}
}

.company-experience::before{
	content: '';
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.company-experience:hover::before{
    top: 0;
}

.company-experience h3{
	position: relative;
	width: 35%;
	color: var(--white-color);
	font-size: 46px;
	margin-right: 15px;
	z-index: 1;
}

.company-experience p{
	position: relative;
	width: 65%;
	color: var(--white-color);
	text-align: left;
	margin: 0;
	z-index: 1;
}

/************************************/
/***        05. About Us Css	  ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	padding: 0 250px 210px 0;
}

.about-img-1{
	position: relative;
}

.about-img-1:before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, 70px);
	width: 130px;
	height: 40px;
	background: url('../images/about-img-bg.svg') no-repeat;
	background-position: bottom center;
	background-size: cover;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
	border-radius: 20px;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-img-1 img{
	aspect-ratio: 1 / 1.18;
}

.about-img-2{
	width: 300px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-2 img{
	aspect-ratio: 1 / 1.334;
}

.contact-circle{
	position: absolute;
	top: 30px;
	right: 50px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.contact-circle img{
	max-width: 150px;
}

.about-us-content{
	margin-left: 30px;
}

.about-goal-box{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-goal-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.about-goal-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-goal-box:hover .icon-box:before{
	transform: scale(1);
}

.about-goal-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.about-goal-box-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.about-goal-box-content p{
	margin: 0;
}

.about-contact-box{
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.about-contact-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 100px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-contact-box:hover .icon-box:before{
	transform: scale(1);
}

.about-contact-box .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-contact-box .about-contact-content{
	width: calc(100% - 60px);
}

.about-contact-content p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.about-contact-content p a{
	color: inherit;
}

.about-author-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.about-info-box{
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.about-info-box figure,
.about-info-box img{
	max-width: 50px;
	border-radius: 5px;
	margin-right: 10px;
}

.about-author-content{
	width: calc(100% - 60px);
}

.about-author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.about-author-content p{
	text-transform: capitalize;
	margin: 0;
}

.about-info-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-info-list ul li{
	position: relative;
	text-transform: capitalize;
	margin-bottom: 10px;
	padding-left: 30px;
}

.about-info-list ul li:last-child{
	margin-bottom: 0;
}

.about-info-list ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

/************************************/
/***    06. Our Services Css      ***/
/************************************/

.our-services{
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-service-content{
	position: sticky;
	top: 20px;
}

.our-service-list{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.service-item{
	position: relative;
	width: 50%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px;
	overflow: hidden;
}

.service-item:nth-child(odd){
	border-bottom: none;
}

.service-item:nth-child(even){
	border-left: none;
	border-bottom: none;
}

.service-item:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover::before,
.service-item.active::before{
	top: auto;
    height: 100%;
}

.service-content-box{
	display: flex;
}

.service-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.service-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box:before,
.service-item.active .icon-box::before{
	top: auto;
	height: 100%;
}

.service-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 30px;
}

.service-item-content{
	position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.service-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content p{
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item.active .service-item-content h3,
.service-item:hover .service-item-content p,
.service-item.active .service-item-content p{
	color: var(--white-color);
}

.service-btn{
	position: relative;
	width: 56px;
	height: 32px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-btn::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn::before,
.service-item.active .service-btn::before{
	top: auto;
	bottom: 0;
    height: 100%;
}

.service-btn img{
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.service-no{
	position: absolute;
	right: 40px;
	bottom: -40px;
	z-index: 1;
}

.service-no h2{
	font-size: 100px;
	letter-spacing: 0.03em;
	color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 10px;
    -webkit-text-stroke-color: var(--divider-color);
    stroke: var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-no h2,
.service-item.active .service-no h2{
	-webkit-text-stroke-color: var(--white-color);
    stroke: var(--white-color);
}

.service-footer{
	margin-top: 40px;
}

.service-footer p{
	margin-bottom: 0;
}

.service-footer p a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.service-footer p a:hover{
	color: var(--primary-color);
}

/************************************/
/***      07. Why Choose Us Css   ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-content{
	margin-right: 30px;
}

.why-choose-box-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-box{
	width: calc(50% - 15px);
}

.why-choose-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.why-choose-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-box:hover .icon-box:before{
	transform: scale(1);
}

.why-choose-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.why-choose-box-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-box-content p{
	margin: 0;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.why-choose-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);	
}

.why-choose-image{
	position: relative;
	padding: 0 0 165px 235px;
}

.why-choose-img-2{
	max-width: 375px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure{
	display: block;
	border-radius: 20px;
}

.why-choose-img-1 img,
.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-contact-circle{
	position: absolute;
	right: 50px;
	bottom: 0;
	animation: infiniterotate 30s infinite linear;
}

.why-choose-contact-circle img{
	max-width: 130px;
}

/************************************/
/***      08. Our Feature Css     ***/
/************************************/

.our-feature{
	padding: 100px 0;
	background-color: var(--dark-color);
	background-image: url('../images/our-feature-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-feature-list{
	display: flex;
	flex-wrap: wrap;
}

.our-feature-item{
	width: 33.33%;
	padding: 40px;
	border-radius: 20px;
}

.our-feature-item:nth-child(odd){
	background: var(--dark-divider-color);
}

.our-feature-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.our-feature-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.our-feature-item:hover .icon-box:before,
.our-feature-item.active .icon-box::before{
	transform: scale(1);	
}

.our-feature-item:nth-child(odd) .icon-box{
	background: var(--dark-color);
}

.our-feature-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.feature-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.feature-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.our-feature-footer{
	text-align: center;
	margin-top: 60px;
}

.our-feature-footer p{
	color: var(--white-color);
	margin: 0;
}

.our-feature-footer p span{
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	line-height: 1.1em;
	padding: 2px 10px;
	margin-right: 5px;
}

.our-feature-footer a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.our-feature-footer a:hover{
	color: var(--primary-color);
}

/************************************/
/***     09. Fact Counter Css     ***/
/************************************/

.fact-counter{
	padding: 100px 0;
}

.fact-counter-image{
	position: relative;
	padding: 0 45px 55px 0;
}

.fact-counter-img figure{
	display: block;
	border-radius: 20px;
}

.fact-counter-img img{
	width: 100%;
	aspect-ratio: 1 / 0.945;
	object-fit: cover;
	border-radius: 20px;
}

.fact-counter-skillbar{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 350px;
	border-radius: 20px;
	animation: moveskillbar 3s infinite linear alternate;
}

@keyframes moveskillbar{
	50%{
		right: 40px;
	}
}

.fact-counter-skillbar img{
	border-radius: 20px;
}

.fact-counter-content{
	margin-left: 20px;
}

.fact-counter-box-list{
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.fact-counter-box{
	width: calc(33.33% - 20px);
}

.fact-counter-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color: var(--accent-color);
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

.fact-counter-box .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
	border-radius: 5px;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.fact-counter-box:hover .icon-box::before{
	transform: scale(1);
}

.fact-counter-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.fact-counter-box-content h2{
	font-size: 46px;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.fact-counter-box-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.fact-counter-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.fact-counter-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.fact-counter-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

/************************************/
/***      10. What We Do Css      ***/
/************************************/

.what-we-do{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.what-we-do-content{
	margin-right: 30px;
}

.what-we-do-list{
	margin-bottom: 40px;
}

.what-we-do-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.what-we-do-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.what-we-do-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.what-we-do-images{
	position: relative;
	padding: 0 80px 100px 15px;
}

.what-do-we-img-1 figure,
.what-do-we-img-2 figure{
	display: block;
	border-radius: 20px;
}

.what-do-we-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.831;
	object-fit: cover;
	border-radius: 20px;
}

.what-do-we-img-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 280px;
}

.what-do-we-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 0.723;
	object-fit: cover;
	border: 9px solid var(--secondary-color);
	border-radius: 20px;
}

.experience-counter-box{
	position: absolute;
	bottom: 45px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 275px;
	background-color: var(--white-color);
	border-left: 2px solid var(--accent-color);
	border-radius: 5px;
	padding: 15px;
	overflow: hidden;
	animation: yearbox 3s infinite linear alternate;
}

@keyframes yearbox{
	50%{
		left: 30px;
	}
}

.experience-counter-box::before{
	content: '';
    position: absolute;
    top: 0;
	left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.experience-counter-box:hover::before{
    width: 100%;
}

.experience-counter-no{
	margin-right: 15px;
}

.experience-counter-no h2{
	position: relative;
	font-size: 46px;
	line-height: normal;
	letter-spacing: -0.02em;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.experience-counter-content{
	width: 60%;
}

.experience-counter-content p{
	position: relative;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.experience-counter-box:hover .experience-counter-no h2,
.experience-counter-box:hover .experience-counter-content p{
	color: var(--white-color);
}

/************************************/
/***      11. How It Work Css     ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.how-it-work-content{
	position: sticky;
	top: 30px;
}

.work-step-item{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px 40px 0 40px;
	margin-bottom: 40px;
	overflow: hidden;
}

.work-step-item:last-child{
	margin-bottom: 0;
}

.work-step-item::before{
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.work-step-item:hover::before{
    height: 100%;
    top: 0;
    bottom: auto;
}

.work-step-item-content{
	position: relative;
	margin-bottom: 15px;
	z-index: 1;
}

.work-step-item-content h3{
	font-size: 16px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item-content h2{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content h3,
.work-step-item:hover .work-step-item-content h2{
	color: var(--white-color);
}

.work-step-item-content p{
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content p{
	color: var(--white-color);
	opacity: 80%;
}

.work-step-item-no{
	position: relative;
	margin-bottom: -35px;
	z-index: 1;
}

.work-step-item-no h2{
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: transparent;
    stroke-width: 10px;
    -webkit-text-stroke-width: 1px;
	stroke: var(--text-color);
    -webkit-text-stroke-color: var(--text-color);
	opacity: 15%;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-item-no h2{
	stroke: var(--white-color);
	-webkit-text-stroke-color: var(--white-color);
}

/************************************/
/***      12. Our Pricing Css     ***/
/************************************/

.our-pricing{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.pricing-box{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.pricing-header{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pricing-header h2{
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sup{
	font-size: 30px;
	top: -6px;
}

.pricing-header sub{
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body{
	margin-bottom: 30px;
}

.pricing-list-title{
	margin-bottom: 20px;
}

.pricing-list-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.pricing-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-list ul li{
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 10px;
}

.pricing-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

.pricing-btn .btn-default{
	width: 100%;
	text-align: center;
}

.pricing-box.highlighted-box{
	position: relative;
	background-color: var(--dark-color);
	overflow: hidden;
}

.highlighted-box::before{
	content: 'featured';
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dark-color);
	top: 35px;
    right: -45px;
	width: 190px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	transform: rotate(45deg);
}

.pricing-box.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
    padding: 0 60px 30px 0;
}

.pricing-box.highlighted-box .pricing-header h3,
.pricing-box.highlighted-box .pricing-header h2,
.pricing-box.highlighted-box .pricing-header h2 sub,
.pricing-box.highlighted-box .pricing-list-title h3,
.pricing-box.highlighted-box .pricing-list ul li,
.pricing-box.highlighted-box .pricing-list ul li::before{
	color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default{
	background: var(--white-color);
	color: var(--dark-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover{
	color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover::before{
	background: var(--accent-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.our-faqs-image{
	position: relative;
	padding-right: 70px;
}

.our-faqs-img figure{
	display: block;
	border-radius: 20px;
}

.our-faqs-img img{
	width: 100%;
	aspect-ratio: 1 / 1.065;
	object-fit: cover;
	border-radius: 20px;
}

.client-review-box{
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 100%;
	max-width: 210px;
	text-align: center;
	background-color: var(--dark-color);
	border-radius: 10px;
	padding: 20px;
	animation: reviewbox 3s infinite linear alternate;
}

@keyframes reviewbox{
	50%{
		right: 50px;
	}
}

.client-review-box-content{
	margin-bottom: 15px;
}

.client-review-box-content p{
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
}

.client-review-box-content p span{
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.client-review-images{
	display: inline-flex;
}

.client-review-images .client-image{
	position: relative;
    display: inline-block;
    margin-left: -10px;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.client-review-images .client-image:first-child{
    margin: 0;
}

.client-review-images .client-image figure{
	display: block;
}

.client-review-images .client-image img{
    max-width: 50px;
}

.client-image.add-more{
	width: 32px;
	height: 32px;
	background-color: var(--white-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover{
	background-color: var(--accent-color);
}

.client-image.add-more p{
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover p{
	color: var(--white-color);
}

.faq-accordion .accordion-item{
    border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 16px 45px 16px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
   background-color: var(--dark-color);
   color: var(--white-color);
   border-bottom: 1px solid var(--dark-divider-color);
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
	position: absolute;
	right: 16px;
	top: 50%;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	transform: translate(0px, -10px);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f067';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	background-color: var(--dark-color);
	padding: 16px 45px 16px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

/************************************/
/***   14. Our Testimonial Css    ***/
/************************************/

.our-testimonial{
	padding: 100px 0;
	/* background: url(../images/testimonial-bg-img.svg) no-repeat; */
	background-color: var(--dark-color);
	background-position: center center;
	background-size: auto;
}

.testimonial-content{
	margin-right: 40px;
}

.testimonial-slider-box{
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	padding: 50px 40px;
	border-radius: 20px;
}

.testimonial-slider{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.testimonial-slider .swiper-wrapper{
	cursor: auto;
}

.testimonial-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.customer-logo img{
	width: 100%;
	max-width: 170px;
}
.customer-logo i{
	font-size: 24px;
	color: var(--accent-color);
	background: rgba(22, 163, 74, 0.15);
	border: 1px solid rgba(22, 163, 74, 0.35);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quotes{
	margin-left: 20px;
}

.testimonial-quotes img{
	width: 100%;
	max-width: 40px;
}

.testimonial-body{
	margin-bottom: 40px;
}

.testimonial-body p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.testimonial-author{
	width: 75%;
	display: flex;
	align-items: center;
}

.testimonial-author .author-image{
	margin-right: 20px;
}

.testimonial-author .author-image figure{
	display: block;
	border-radius: 5px;
}

.testimonial-author .author-image img{
	max-width: 40px;
	border-radius: 5px;
}

.testimonial-author .author-content{
	width: calc(100% - 60px);
}

.testimonial-author .author-content h3{
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: capitalize;
	color: var(--white-color);
	padding-right: 20px;
}

.testimonial-author .author-content h3 span{
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}
.testimonial-author .author-content h3 span i{
	color: #f5a623;
	font-size: 12px;
	margin-right: 2px;
	opacity: 1;
}

.testimonial-slider .testimonial-pagination{
	position: absolute;
	bottom: 0;
	right: 0;
    text-align: right;
	z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: var(--white-color);
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	height: 24px;
	width: 24px;
	border: 1px solid var(--accent-color);
}

.customer-rating-boxes{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.customer-rating-box{
	flex: 1;
	min-width: 140px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 10px;
}

.customer-rating-image{
	margin-right: 10px;
}

.customer-rating-image img{
	width: 100%;
	max-width: 40px;
}

.customer-rating-content p{
	color: var(--white-color);
	text-transform: capitalize;
	display: block;
	margin-bottom: 5px;
}

.customer-rating-counter{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.customer-rating-counter h3{
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
}

.customer-rating-star-box{
	text-align: center;
}

.customer-rating-star i{
	font-size: 12px;
	color: var(--white-color);
}

.customer-rating-counter p{
	text-transform: capitalize;
	text-align: center;
	color: var(--white-color);
	margin-right: 10px;
	margin-bottom: 0;
}

.customer-rating-counter p span{
	display: block;
	font-size: 20px;
	font-weight: 500;
}

.star-rating-img img{
	width: 100%;
	max-width: 85px;
}

.customer-rating-box.customer-rating-content p{
	margin: 0;
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image,
.post-item-body{
	width: calc(50% - 15px);
}

.post-featured-image a{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
	border-radius: 20px;
}

.post-featured-image img{
    width: 100%;
	aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-meta{
    margin-bottom: 20px;
}

.post-item-meta ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-item-meta ul li{
    color: var(--text-color);
    text-transform: capitalize;
    display: inline-block;
    margin-right: 15px;
}

.post-item-meta ul li:last-child{
    margin-right: 0;
}

.post-item-meta ul li i{
	color: var(--text-color);
	font-size: 16px;
	margin-right: 5px;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.readmore-btn{
	position: relative;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before{
	filter: brightness(0) invert(0);
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

footer.main-footer{
	background: url('../images/footer-bg.svg'), var(--dark-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 100px 0 0 0;
	border-top: 1px solid rgba(255,255,255,0.14);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-newsletter-box{
    margin-right: 120px;
}

.footer-newsletter-title{
	margin-bottom: 40px;
}

.footer-newsletter-title h3{
	font-size: 34px;
	color: var(--white-color);
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: 85%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 15px;
	opacity: 80%;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 80%;
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 15%;
	border: none;
	border-radius: 0 10px 10px 0;
	padding: 15px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn img{
	max-width: 28px;
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
}

.footer-compliance-col{
	display: flex;
	flex-direction: column;
}

.footer-cta-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	margin-top: 60px;
	padding: 40px;
}

.footer-logo{
	width: calc(20% - 10px);
}

.footer-logo img{
	width: 100%;
	max-width: 210px;
}

.footer-logo .footer-logo-img{
	width: auto;
	max-width: 180px;
	height: auto;
}

.footer-contact-box{
	width: calc(80% - 10px);
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 30px 80px;
}

.footer-contact-item{
	position: relative;
}

.footer-contact-item::before{
	content: '';
	position: absolute;
	right: -40px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.footer-contact-item:last-child::before{
	display: none;
}

.footer-contact-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}

.footer-contact-item h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);	
}

.footer-copyright{
	padding: 60px 0;	
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
	opacity: 80%;
}

.footer-social-links{
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.footer-social-links a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--accent-color) !important;
	background: rgba(21, 201, 122, 0.1);
	transition: all 0.3s ease-in-out;
}

.footer-social-links a:hover{
	color: var(--primary-color) !important;
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links i{
	display: block;
	font-size: 18px;
	line-height: 1;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-menu ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-right: 40px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child{
	margin-right: 0;
}

.footer-menu ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	height: 6px;
	width: 6px;
	transform: translateY(-50%);
}

.footer-menu ul li:last-child:before{
	display: none;
}

.footer-menu ul li:hover{
	color: var(--accent-color);
}

.footer-menu ul li a{
	color: inherit;
}

/************************************/
/***     17. About Us Page Css    ***/
/************************************/

.page-header{
	background-color: var(--dark-color);
	background-image: url('../images/page-header-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: var(--white-color);
	text-align: center;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol{
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	font-size: 18px;
    color: var(--white-color);
}

.our-approach{
	background: var(--secondary-color);
	padding: 100px 0 70px;
}

.mission-vission-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.mission-vission-header{
	position: relative;
	padding: 40px;
	min-height: 310px;
}

.mission-vission-header:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-header::after{
	top: auto;
	bottom: 0;
    height: 100%;
}

.mission-vission-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	z-index: 1;
	overflow: hidden;
}

.mission-vission-item .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .icon-box:before{
	top: auto;
    height: 100%;
}

.mission-vission-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.mission-vission-content{
	position: relative;
	z-index: 1;
}

.mission-vission-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.mission-vission-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-content h3,
.mission-vission-item:hover .mission-vission-content p{
	color: var(--white-color);
}

.mission-vission-image img{
	width: 100%;
	aspect-ratio: 1 / 0.59;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-image img{
	transform: scale(1.1);
}

.our-benefit{
	padding: 100px 0;
}

.our-benefit-content{
	margin-right: 30px;
}

.our-benefit-img{
	margin-top: 30px;
}

.our-benefit-img figure{
	display: block;
	border-radius: 20px;
}

.our-benefit-img img{
	width: 100%;
	aspect-ratio: 1 / 0.543;
	object-fit: cover;
	border-radius: 20px;
}

.our-benefit-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.our-benefit-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.our-benefit-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.our-benefit-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover::after{
	top: auto;
	bottom: 0;
    height: 100%;
}

.our-benefit-item .icon-box{
	margin-bottom: 40px;
}

.our-benefit-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.benefit-item-content{
	position: relative;
	z-index: 1;
}

.benefit-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-item-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p{
	color: var(--white-color);
}

.our-benefit-get-quote{
	text-align: center;
}

.our-benefit-get-quote p{
	margin-bottom: 0;
}

.our-benefit-get-quote p a{
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.our-benefit-get-quote p a:hover{
	color: var(--primary-color);
}

.our-partners{
	padding: 100px 0;
	background-color: var(--dark-color);
	background-image: url('../images/our-partners-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.our-partners-content{
	margin-right: 80px;
}

.our-partners-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	text-align: center;
}

.our-partner-item{
	width: auto;
	display: inline-flex;
	background: var(--dark-divider-color);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
}

.our-partner-item:first-child{
	margin-left: 1px;
}

.our-partner-item img{
	width: 100%;
	max-height: 35px;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	border: 1px solid var(--divider-color);
    border-radius: 20px;
	padding: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-image{
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.team-image a{
	display: block;
	cursor: auto;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.083;
	object-fit: cover;
    border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
	gap: 15px 10px;
}

.team-content h3{
    color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li{
    display: inline-block;
    margin-right: 15px;
}

.team-social-icon ul li:last-child{
    margin-right: 0;
}

.team-social-icon ul li a i{
	color: var(--accent-color);
    font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--primary-color);
}

/************************************/
/***    18. Services Page Css     ***/
/************************************/

.page-services{
	padding: 100px 0;
}

.page-services .service-item{
	width: 100%;
	box-shadow: 0px 0px 50px 2px #04030308;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-services .service-item:before{
	background: var(--dark-color);
}

.page-services .service-item .icon-box{
	margin-right: 0;
	margin-bottom: 40px;
}

.page-services .service-item-content{
	width: 100%;
}

.page-services .service-footer{
	text-align: center;
	margin-top: 10px;
}

/************************************/
/***    19. Service Single Css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.service-catagery-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 30px;
}

.service-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 10px;
    text-transform: capitalize;
    padding: 16px 50px 16px 20px;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--dark-color);
}

.service-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
}

.sidebar-cta-box:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	border-radius: 20px;
	z-index: 0;
}

.cta-box-content{
	margin-bottom: 40px;
}

.cta-box-content,
.cta-contact-info{
	position: relative;
	z-index: 1;
}

.cta-box-content img{
	max-width: 160px;
	margin-bottom: 20px;
}

.cta-box-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.cta-contact-info{
	position: relative;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 10px 0px #04030380;
}

.cta-contact-info:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	opacity: 20%;
	border-radius: 10px;
	z-index: 0;
}

.cta-info-item{
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 1;
}

.cta-info-item:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.cta-info-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 5px;
}

.cta-info-item h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
}

.service-featured-image{
	margin-bottom: 40px;
}

.service-featured-image figure{
	display: block;
	border-radius: 20px;
}

.service-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry{
	margin-bottom: 40px;
}

.service-entry h2{
	font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.service-entry-list ul li{
	width: calc(33.33% - 13.33px);
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
}

.service-entry-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.service-list-video{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 40px 0;
}

.service-list-video .service-entry-list{
	width: calc(52% - 15px);
}

.service-list-video .service-entry-list ul li{
	width: 100%;
}

.service-image-video{
    position: relative;
	width: calc(48% - 15px);
}

.service-image-video .video-image a{
	display: block;
    cursor: none;
}

.service-image-video .video-image figure{
	display: block;
	border-radius: 20px;
}

.service-image-video .video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.service-image-video .video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.647;
	object-fit: cover;
	border-radius: 20px;
}

.service-image-video .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1;
}

.service-image-video .video-play-button a{
	border: none;
	background-color: var(--accent-color);
	width: 50px;
	height: 50px;
	margin: 0;
}

.service-image-video .video-play-button a:before{
	content: '';
	position: absolute;
	top: -50%;
    left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.service-image-video .video-play-button a:after{
	content: '';
	position: absolute;
	top: -50%;
    left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.service-image-video .video-play-button a i{
	font-size: 20px;
	color: var(--white-color);
}

.service-guidance,
.services-steps{
	margin-bottom: 40px;
}

.service-guidance-box{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.service-guidance-item{
	width: calc(33.33% - 20px);
}

.service-guidance-content{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.service-guidance-content .icon-box{
	position: relative;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.service-guidance-content .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-content .icon-box::before{
	top: auto;
	height: 100%;
}

.service-guidance-content .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.service-guidance-title{
	width: calc(100% - 60px);
}

.service-guidance-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-guidance-img figure{
	display: block;
	border-radius: 20px;
}

.service-guidance-img img{
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-img img{
	transform: scale(1.1);
}

.service-steps-box{
	background-color: var(--dark-color);
	border-radius: 20px;
	padding: 60px;
	margin-top: 40px;
}

.service-step-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-step-item{
	width: calc(33.33% - 20px);
}

.service-step-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	overflow: hidden;
}

.service-step-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-step-item:hover .icon-box:before{
	top: auto;
	height: 100%;
}

.service-step-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.service-step-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.service-step-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 30px;
}

.service-steps-box .service-entry-list ul li,
.service-steps-box .service-entry-list ul li:before{
	color: var(--white-color);
}

/************************************/
/***     20. Blog Archive Css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .post-item{
	gap: 20px;
}

.page-blog .post-featured-image,
.page-blog .post-item-body{
	width: 100%;
}

.page-blog .post-featured-image img{
	aspect-ratio: 1 / 0.75;
}

.page-blog .post-item-meta{
	margin-bottom: 15px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single Css      ***/
/************************************/

.page-single-post{
	background-color: var(--white-color);
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	overflow: hidden;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	/* max-width: 1100px; */
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600; 
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 5px;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.blog-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 575px) {
    .blog-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-cta-btns a {
        text-align: center;
    }
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 5px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      22. Team Page Css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***      23. Team Single Css     ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-single-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.team-single-img{
	margin-bottom: 60px;
}

.team-single-img figure{
	display: block;
	border-radius: 20px;
}

.team-single-img img{
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 20px;
}

.team-contact-form{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.team-single-content h3{
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 5px;
}

.team-single-content h2{
	display: inline-block;
	font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
	cursor: auto;
}

.team-single-content p{
	margin-bottom: 20px;
}

.team-single-content p:last-child{
	margin-bottom: 0;
}

.team-member-content,
.team-personal-info,
.team-expertise{
	margin-bottom: 40px;
}

.team-member-header{
	margin-bottom: 40px;
}

.team-member-body{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-contact-box{
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	overflow: hidden;
}

.team-contact-box::before{
	content: '';
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover::before{
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
}

.team-contact-box .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box:before{
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.team-contact-content{
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.team-contact-content p{
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .team-contact-content p{
	color: var(--white-color);
	opacity: 80%;
}

.team-contact-content h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.team-contact-box:hover .team-contact-content h3{
	color: var(--white-color);
}

.team-member-footer{
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-member-footer span{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}

.team-member-footer ul{
	display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-footer ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.team-member-footer ul li:last-child{
	margin: 0;
}

.team-member-footer ul li a{
	color: var(--accent-color);
}

.team-member-footer ul li:hover a{
	color: var(--primary-color);
}

.team-member-footer ul li a i{
    color: inherit;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.team-expertise ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.team-expertise ul li{
	width: calc(50% - 10px);
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
}

.team-expertise ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.skills-progress-bar{
    margin-bottom: 20px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
    font-size: 16px;
    font-weight: 400;
	text-transform: capitalize;
    color: var(--text-color);
}

.skills-progress-bar .skill-data .skill-no{
    font-size: 16px;
    font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/***     24. Pricing Page Css     ***/
/************************************/

.page-pricing{
	padding: 100px 0;
}

/************************************/
/***     25. Client Page Css      ***/
/************************************/

.page-client{
	padding: 100px 0 70px;
}

.company-logo{
	background-color: var(--secondary-color);
    border-radius: 30px;
	text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 70px 60px;
}

.company-logo img{
    width: 100%;
    height: 60px;
}

/************************************/
/***   26. Testimonial Page Css   ***/
/************************************/

.page-testimonial{
	padding: 100px 0 70px;
}

.client-testimonial-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #04030308;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.client-testimonial-header{
	position: relative;
	padding: 30px 30px 60px;
	text-align: center;
	overflow: hidden;
}

.client-testimonial-header:before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header::before{
	top: 0;
}

.client-testimonial-quote{
	margin-bottom: 20px;
}

.client-testimonial-quote img{
	position: relative;
	max-width: 44px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-quote img{
	filter: brightness(0) invert(1);
}

.client-testimonial-header p{
	position: relative;
	margin: 0;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header p{
	color: var(--white-color);
}

.client-testimonial-body{
	background: var(--dark-color);
	text-align: center;
	padding: 0 30px 30px 30px;
}

.client-author-image{
	position: relative;
	top: -30px;
}

.client-author-image figure,
.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 0 auto;
}

.client-author-image img{
	border: 2px solid var(--divider-color);
}

.client-author-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     27. Image Gallery Css    ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: auto;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     28. Video Gallery Css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: auto;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       29. FAQs Page Css      ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--dark-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.page-faq-accordion{
	margin-bottom: 40px;
}

.page-faq-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/***     30. Contact Page Css     ***/
/************************************/

.page-contact-us{
	padding: 100px 0 70px;
}

.contact-info-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.contact-info-img img{
	width: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

.contact-info-body{
	position: relative;
	padding: 0 80px 40px;
	text-align: center;
}

.contact-info-body:after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-body:after{
	top: 0;
}

.contact-info-body .icon-box{
	position: relative;
	top: -30px;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 1;
	overflow: hidden;
}

.contact-info-body .icon-box:after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	border-radius: 5px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after{
	top: 0;
}

.contact-info-body .icon-box img{
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
}

.contact-info-content{
	position: relative;
	z-index: 1;
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p{
	color: var(--white-color);
}

.contact-form-section{
	background: var(--secondary-color);
	padding: 100px 0;
}

.contact-form-img{
	margin-right: 45px;
}

.contact-form-img figure{
	display: block;
	border-radius: 20px;
}

.contact-form-img img{
	width: 100%;
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
	border-radius: 20px;
}

.google-map{
	overflow: hidden;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

/************************************/
/***    31 . 404 Error Page Css   ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

/************************************/
/***      32. Responsive Css      ***/
/************************************/

@media only screen and (max-width: 1024px){

	.main-menu ul li{
		margin: 0;
	}

	.our-appointment-box{
		padding: 50px;
	}

	.about-us .col-lg-6{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.about-us-images{
		max-width: 620px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content{
		margin-left: 0;
	}
}

@media only screen and (max-width: 1024px){

	.navbar-expand-lg .navbar-collapse.main-menu{
		display: none !important;
	}

	.mission-vission-header{
		min-height: 365px;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
		display: block;
	}

	.responsive-menu,
	.navbar-toggle{
		display: block;
	}

	.header-btn{
		display: none;
	}
}

@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.btn-default{
		font-size: 16px;
		padding: 15px 60px 15px 20px;
	}

	.btn-default::after{
		height: 24px;
		width: 24px;
		transform: translate(-20px, -50%);
	}

	.btn-default.btn-highlighted{
		padding: 15px 20px;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
		/* padding-left: 30px; */
	}

	.section-title h3::before{
		width: 20px;
		height: 20px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 30px;
	}

	.hero{
		padding: 50px 0 0;
	}

	.hero.hero-bg-image{
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide{
		padding: 205px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content-footer{
		margin-top: 30px;
	}

	.hero-content-footer h2{
		margin-bottom: 20px;
	}

	.hero-image{
		width: 100%;
		max-width: 60%;
		margin: 0 auto;
		text-align: center;
	}

	.company-experience{
		width: 250px;
		padding: 10px;
	}

	.company-experience h3{
		font-size: 36px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 620px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-goal-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-goal-box .icon-box{
		margin-bottom: 20px;
	}

	.about-info-box{
		margin-bottom: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.our-service-content{
		margin-bottom: 30px;
	}

	.service-item{
		padding: 30px;
	}

	.service-no{
		bottom: -30px;
	}

	.service-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.service-item .icon-box img{
		max-width: 26px;
	}

	.service-item-content{
		width: calc(100% - 60px);
	}

	.service-item-content h3{
		margin-bottom: 10px;
	}

	.service-item-content p{
		margin-bottom: 20px;
	}

	.service-no h2{
		font-size: 80px;
	}

	.service-footer{
		margin-top: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-choose-box .icon-box{
		margin-bottom: 20px;
	}

	.why-choose-box-content h3{
		margin-bottom: 10px;
	}

	.why-choose-image{
		max-width: 620px;
		margin: 0 auto;
	}

	.our-feature{
		padding: 50px 0;
	}

	.our-feature-item{
		padding: 20px;
	}

	.our-feature-item .icon-box{
		margin-bottom: 20px;
	}

	.feature-item-content h3{
		margin-bottom: 10px;
	}

	.our-feature-footer{
		margin-top: 30px;
	}

	.fact-counter{
		padding: 50px 0;
	}

	.fact-counter-image{
		margin-bottom: 30px;
	}

	.fact-counter-img img{
		aspect-ratio: 1 / 0.7;
	}

	.fact-counter-skillbar{
		max-width: 300px;
	}

	.fact-counter-content{
		margin-left: 0;
	}

	.fact-counter-box-list{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.fact-counter-box-content h2{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-do-list{
		margin-bottom: 30px;
	}

	.what-we-do-images{
		padding: 0 60px 80px 15px;
	}

	.what-do-we-img-1 img{
		aspect-ratio: 1 / 0.7;
	}

	.experience-counter-box{
		max-width: 245px;
		padding: 10px;
	}

	.experience-counter-no{
		margin-right: 10px;
	}

	.experience-counter-no h2{
		font-size: 36px;
	}

	.experience-counter-content{
		width: 66%;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-it-work-content{
		position: initial;
		margin-bottom: 30px;
	}

	.work-step-item{
		padding: 30px 30px 0 30px;
		margin-bottom: 30px;
	}

	.work-step-item-content{
		margin-bottom: 10px;
	}

	.work-step-item-no{
		margin-bottom: -30px;
	}

	.work-step-item-no h2{
		font-size: 80px;
	}

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		padding: 20px;
	}

	.pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header h3{
		margin-bottom: 15px;
	}

	.pricing-header h2{
		font-size: 36px;
	}

	.pricing-header sup{
		font-size: 22px;
	}

	.pricing-list-title{
		margin-bottom: 15px;
	}

	.pricing-body{
		margin-bottom: 20px;
	}

	.pricing-box.highlighted-box .pricing-header{
		padding: 0 60px 20px 0;
	}

	.highlighted-box::before{
		font-size: 12px;
		top: 22px;
		right: -65px;
		height: 26px;;
	}

	.pricing-benefit-list{
		margin-top: 10px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-image{
		margin-bottom: 30px;
	}

	.our-faqs-img img{
		aspect-ratio: 1 / 0.8;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button,
	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 12px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-slider{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-slider-box{
		padding: 30px;
	}

	.testimonial-header{
		margin-bottom: 20px;
	}

	.testimonial-body{
		margin-bottom: 20px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
		height: 8px;
		width: 8px;
		margin: 0 6px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
		height: 20px;
		width: 20px;
	}

	.customer-rating-boxes{
		gap: 20px;
	}

	.customer-rating-box{
		flex: 1;
		min-width: 120px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item{
		gap: 20px;
	}

	.post-featured-image,
	.post-item-body{
		width: 100%;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.79;
	}

	.post-item-meta{
		margin-bottom: 10px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}
	
	.readmore-btn{
		font-size: 16px;
		padding-right: 30px;
	}

	.readmore-btn::before{
		height: 20px;
		width: 20px;
	}

	footer.main-footer{
		padding: 50px 0 0 0;
	}

	.footer-newsletter-box{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-title{
		margin-bottom: 20px;
	}

	.footer-newsletter-title h3{
		font-size: 28px;
	}

	.newsletter-form .form-group .form-control,
	.newsletter-form .form-group .newsletter-btn{
		padding: 10px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-cta-box{
		margin-top: 30px;
		padding: 30px;
	}

	.footer-logo{
		width: calc(25% - 10px);
	}

	.footer-contact-box{
		width: calc(75% - 10px);
		gap: 20px 30px;
	}

	.footer-contact-item::before{
		right: -15px;
	}

	.footer-contact-item h3{
		font-size: 18px;
	}

	.footer-copyright{
		padding: 30px 0;
	}

	.footer-menu ul li{
		margin-right: 20px;
	}

	.footer-menu ul li::before{
		right: -14px;
	}
	
	.page-header{
		background-size: contain;
        padding: 80px 0;
    }

	.page-header-box h1{
        font-size: 55px;
    }

	.our-approach{
		padding: 50px 0 20px;
	}

	.mission-vission-header{
		padding: 30px;
	}

	.mission-vission-item .icon-box{
		margin-bottom: 20px;
	}

	.mission-vission-content h3{
		margin-bottom: 10px;
	}

	.our-benefit{
		padding: 50px 0;
	}

	.our-benefit-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-benefit-img{
		margin-top: 30px;
	}
	
	.our-benefit-list{
		margin-bottom: 30px;
	}

	.our-benefit-box{
		padding: 30px;
	}

	.our-benefit-item .icon-box{
		margin-bottom: 30px;
	}

	.benefit-item-content h3{
		margin-bottom: 10px;
	}

	.our-partners{
		padding: 50px 0 ;
	}

	.our-partners-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-partners-list{
		max-width: 620px;
		margin: 0 auto;
	}

	.our-partner-item{
		padding: 20px 25px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-member-item{
		padding: 15px;
	}

	.team-image{
		margin-bottom: 20px;
	}

	.page-services{
		padding: 50px 0;
	}

	.page-services .service-item .icon-box{
		margin-bottom: 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.service-catagery-list ul li a{
		padding: 10px 45px 10px 15px;
	}

	.service-catagery-list ul li a::after{
		right: 15px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.cta-box-content{
		margin-bottom: 30px;
	}

	.cta-info-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.service-featured-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 36px;
	}

	.service-entry-list ul{
		gap: 10px;
	}

	.service-entry-list ul li:before{
		font-size: 18px;
	}

	.service-entry-list ul li{
		width: calc(33.33% - 6.67px);
		padding-left: 30px;
	}

	.service-list-video{
		gap: 20px;
		margin: 30px 0;
	}

	.service-list-video .service-entry-list{
		width: calc(54% - 10px);
	}

	.service-image-video{
		width: calc(46% - 10px);
	}

	.service-guidance,
	.services-steps{
		margin-bottom: 30px;
	}

	.service-guidance-box{
		margin-top: 30px;
		gap: 20px;
	}

	.service-guidance-item{
		width: calc(33.33% - 13.33px);
	}

	.service-guidance-content{
		margin-bottom: 20px;
	}

	.service-steps-box{
		padding: 30px;
		margin-top: 30px;
	}

	.service-step-item-list{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-step-item .icon-box{
		width: 40px;
		height: 40px;
		margin-bottom: 20px;
	}

	.service-step-item .icon-box img{
		max-width: 25px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-blog .post-item-meta{
		margin-bottom: 10px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
		background-size: 45px;
		padding: 25px 25px 25px 85px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.post-entry h1{
		font-size: 42px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-single-img{
		margin-bottom: 30px;
	}

	.team-single-img img{
		aspect-ratio: 1 / 0.65;
		object-position: top center;
	}

	.team-contact-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 14px 16px;
	}

	.team-single-content h2{
		font-size: 36px;
	}

	.team-member-content,
	.team-personal-info,
	.team-expertise{
		margin-bottom: 30px;
	}

	.team-member-header{
		margin-bottom: 30px;
	}

	.page-pricing{
		padding: 50px 0;
	}

	.page-client{
		padding: 50px 0 20px;
	}

	.company-logo{
		border-radius: 20px;
		padding: 20px 30px;
	}

	.company-logo img{
		width: 100%;
		height: 60px;
	}

	.page-testimonial{
		padding: 50px 0 20px;
	}

	.client-testimonial-header{
		padding: 20px 20px 50px;
	}

	.client-testimonial-body{
		padding: 0 20px 20px 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li a{
		padding: 10px 50px 10px 20px;
	}

	.page-faq-accordion{
		margin-bottom: 30px;
	}

	.page-contact-us{
		padding: 50px 0 20px;
	}

	.contact-info-body{
		padding: 0 60px 30px;
	}

	.contact-info-body .icon-box{
		top: -25px;
		width: 50px;
		height: 50px;
	}

	.contact-info-body .icon-box img{
		max-width: 28px;
	}

	.contact-form-section{
		padding: 50px 0;
	}

	.contact-form-img{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form-img img{
		aspect-ratio: 1 / 0.8;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 14px;
		/* padding-left: 25px; */
	}

	.section-title h3:before{
		height: 18px;
		width: 18px;
	}

	.section-title h1{
		font-size: 36px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-btn{
		margin-right: 20px;
	}

	.video-play-button a{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.video-play-button img{
		max-width: 14px;
	}

	.video-play-button p{
		font-size: 16px;
	}

	.hero-content-footer h2{
		font-size: 18px;
		margin-bottom: 20px;
	}

	.hero-image{
        max-width: 100%;
		padding-left: 50px;
    }

	.company-experience{
		width: 230px;
		bottom: 10%;
	}

	.company-experience h3{
		width: 25%;
		font-size: 26px;
	}

	.company-experience p{
		width: 75%;
	}

	.about-us-images{
		padding: 0 130px 100px 0;
	}

	.about-img-1:before{
		transform: translate(-50%, 40px);
		width: 80px;
		height: 25px;
	}

	.about-img-2{
		width: 180px;
	}

	.contact-circle{
        top: 10px;
        right: 20px;
    }

	.contact-circle img{
		max-width: 90px;
	}

	.about-content-info{
		margin-bottom: 30px;
	}

	.about-goal-box-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-contact-content p{
		font-size: 18px;
	}

	.about-author-box{
		padding: 20px;
	}

	.about-author-content h3{
		font-size: 18px;
		margin-bottom: 0;
	}
	
	.about-info-box{
		margin-bottom: 20px;
	}

	.about-info-list ul li{
		padding-left: 25px;
	}

	.about-info-list ul li:before{
		font-size: 18px;
	}

	.service-item{
		width: 100%;
		padding: 20px;
		border-right: none;
		border-left: none;
	}

	.service-item-content h3{
		font-size: 18px;
	}

	.service-no{
        bottom: -25px;
    }

	.service-no h2{
        font-size: 60px;
    }

	.service-footer{
		text-align: center;
	}

	.service-footer p{
		font-size: 12px;
	}

	.why-choose-box{
		width: 100%;
	}

	.why-choose-box-content h3{
		font-size: 18px;
	}

	.why-choose-list ul{
		gap: 10px;
	}

	.why-choose-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.why-choose-list ul li:before{
		font-size: 18px;
	}

	.why-choose-image{
		max-width: 100%;
		padding: 0 0 100px 125px;
	}

	.why-choose-img-2{
		max-width: 220px;
	}

	.why-choose-contact-circle{
		right: 10px;
	}

	.why-choose-contact-circle img{
		max-width: 90px;
	}

	.our-feature-item{
		width: 100%;
	}

	.feature-item-content h3{
		font-size: 18px;
	}

	.fact-counter-image{
		padding: 0 25px 30px 0;
	}

	.fact-counter-img img{
		aspect-ratio: 1 / 0.9;
	}

	.fact-counter-skillbar{
		max-width: 250px;
	}

	.fact-counter-box-list{
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fact-counter-box{
		width: calc(33.33% - 13.33px);
	}

	.fact-counter-box .icon-box{
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
	}

	.fact-counter-box .icon-box img{
		max-width: 25px;
	}

	.fact-counter-box-content h2{
        font-size: 26px;
		margin-bottom: 5px;
    }

	.fact-counter-list ul{
		gap: 10px;
	}

	.fact-counter-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.fact-counter-list ul li:before{
		font-size: 18px;
	}

	.what-we-do-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.what-we-do-list ul li:before{
		font-size: 18px;
	}

	.what-we-do-images{
        padding: 40px 25px 40px 15px;
    }

	.what-do-we-img-1 img{
		aspect-ratio: 1 / 0.75;
	}

	.what-do-we-img-2{
		max-width: 200px;
	}

	.what-do-we-img-2 img{
		border-width: 5px;
		aspect-ratio: 1 / 0.68;
	}

	.experience-counter-box{
		top: 0;
		bottom: auto;
        max-width: 210px;
        padding: 5px;
    }

	.experience-counter-no h2{
        font-size: 26px;
    }

	.experience-counter-content{
        width: 68%;
    }

	.experience-counter-content p{
		font-size: 14px;
	}

	.work-step-item{
        padding: 20px 20px 0 20px;
        margin-bottom: 20px;
    }

	.work-step-item-content h2{
		font-size: 18px;
	}

	.work-step-item-no{
        margin-bottom: -25px;
    }

	.work-step-item-no h2{
        font-size: 60px;
    }

	.pricing-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.pricing-header h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.pricing-header h2{
        font-size: 26px;
    }
	
    .pricing-header sup{
        font-size: 18px;
		top: -3px;
    }

	.pricing-header sub{
		font-size: 14px;
	}

	.pricing-list-title h3{
		font-size: 18px;
	}

	.pricing-list ul li{
		padding-left: 25px;
	}

	.pricing-list ul li:before{
		font-size: 18px;
	}

	.pricing-benefit-list ul{
        gap: 10px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
		line-height: normal;
    }

    .pricing-benefit-list ul li img{
        max-width: 16px;
        margin-right: 5px;
    }

	.our-faqs-image{
		padding-right: 30px;
	}

	.our-faqs-img img{
        aspect-ratio: 1 / 0.98;
    }

	.client-review-box{
		bottom: 20px;
		max-width: 180px;
		padding: 10px;
	}

	.client-review-box-content{
		margin-bottom: 10px;
	}

	.client-review-box-content p{
		font-size: 16px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 18px;
    	width: 18px;
		height: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.testimonial-slider-box{
        padding: 20px;
    }

	.testimonial-header,
	.testimonial-body{
        margin-bottom: 20px;
    }

	.customer-logo img{
		max-width: 150px;
	}

	.testimonial-quotes img{
		max-width: 30px;
	}

	.testimonial-author .author-image{
		margin-right: 10px;
	}

	.testimonial-author .author-content{
		width: calc(100% - 50px);
	}

	.testimonial-author .author-content h3{
		font-size: 16px;
		padding-right: 15px;
	}

	.testimonial-author .author-content h3::before{
		right: 5px;
		font-size: 16px;
	}

	.customer-rating-box{
		justify-content: left;
		width: 100%;
	}

	.customer-rating-counter h3{
		font-size: 18px;
		margin-right: 5px;
	}

	.customer-rating-counter p span{
		font-size: 18px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-newsletter-title h3{
        font-size: 22px;
    }

	.newsletter-form .form-group .newsletter-btn img{
		max-width: 22px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-links ul li{
		margin-bottom: 5px;
	}

	.footer-cta-box{
		margin-top: 0;
		padding: 20px;
	}

	.footer-logo,
	.footer-contact-box{
		width: 100%;
	}

	.footer-logo img{
		max-width: 150px;
	}

	.footer-contact-box{
		justify-content: left;
		gap: 20px;
	}

	.footer-contact-item{
		width: calc(50% - 10px);
	}

	.footer-contact-item::before{
		right: -10px;
	}

	.footer-contact-item:nth-of-type(2n + 2)::before{
		display: none;
	}

	.footer-contact-item p{
		margin-bottom: 5px;
	}

	.footer-contact-item h3{
		font-size: 16px;
	}

	.footer-copyright{
		padding: 15px 0;
	}

	.footer-copyright-text{
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-social-links{
		justify-content: center;
	}

	.footer-menu ul{
		text-align: center;
	}

	.page-header{
		padding: 60px 0;
	}

	.page-header-box h1{
		font-size: 40px;
	}

	.mission-vission-header{
        padding: 20px;
    }

	.mission-vission-content h3{
		font-size: 18px;
	}

	.our-benefit-box{
		padding: 20px;
	}

	.our-benefit-item{
		width: 100%;
	}

	.our-benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.benefit-item-content h3{
		font-size: 18px;
	}

	.our-partners-list{
		width: 100%;
		gap: 15px;
	}

	.our-partner-item{
		padding: 10px;
	}

	.our-partner-item img{
		max-height: 20px;
	}

	.team-content h3{
		font-size: 18px;
	}

	.team-social-icon ul li{
		margin-right: 10px;
	}

	.team-social-icon ul li i{
		font-size: 18px;
	}

	.service-catagery-list h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
        padding: 20px;
    }

	.cta-box-content{
        margin-bottom: 20px;
    }

	.cta-box-content img{
		margin-bottom: 15px;
	}

	.cta-box-content h3{
		font-size: 18px;
	}

	.cta-info-item h3{
		font-size: 18px;
	}

	.service-featured-image{
        margin-bottom: 20px;
    }

	.service-featured-image img{
        aspect-ratio: 1 / 0.7;
    }
	
	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
        font-size: 26px;
    }

	.service-entry-list ul{
        gap: 5px;
    }

	.service-entry-list ul li{
        padding-left: 25px;
		width: 100%;
    }

	.service-entry-list ul li:before{
		font-size: 16px;
		top: 6px;
	}

	.service-list-video .service-entry-list,
	.service-image-video{
		width: 100%;
	}

	.service-list-video{
        margin: 20px 0;
    }

	.service-guidance-item{
		width: 100%;
	}

	.service-guidance-img img{
		aspect-ratio: 1 / 0.6;
	}

	.service-guidance-content{
        margin-bottom: 15px;
    }

	.service-guidance-title h3{
		font-size: 18px;
	}

	.service-steps-box{
        padding: 20px;
    }

	.service-step-item-list{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.service-step-item{
        width: 100%;
    }

	.service-step-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p{
        font-size: 16px;
    }

	.post-entry h1{
		font-size: 28px;
	}

	.post-entry h2{
		font-size: 26px;
	}

	.team-single-img img{
        aspect-ratio: 1 / 1.01;
        object-position: center center;
    }

	.team-contact-form{
        padding: 20px;
    }
	
	.team-single-content h2{
		font-size: 26px;
		margin-bottom: 15px;
    }

	.team-single-content p{
		margin-bottom: 15px;
	}

	.team-member-body{
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.team-contact-box{
		width: 100%;
		padding: 10px 15px;
	}

	.team-contact-box .icon-box{
		width: 40px;
		height: 40px;
	}

	.team-contact-box .icon-box img{
		max-width: 25px;
	}

	.team-contact-content{
		position: relative;
		width: calc(100% - 55px);
		z-index: 1;
	}

	.team-contact-content p{
		margin-bottom: 5px;
	}

	.team-contact-content h3{
		font-size: 18px;
	}

	.team-member-footer span,
	.team-member-footer ul li a i{
		font-size: 18px;
	}

	.team-member-footer ul li{
		margin-right: 10px;
	}

	.team-expertise ul{
		gap: 10px;
	}

	.team-expertise ul li{
		width: 100%;
		padding-left: 25px;
	}

	.team-expertise ul li:before{
		font-size: 18px;
	}

	.skills-progress-bar{
		margin-bottom: 15px;
	}

	.company-logo{
		border-radius: 15px;
		padding: 15px 20px;
	}

	.company-logo img{
		height: 30px;
	}

	.client-testimonial-header{
        padding: 20px 15px 50px;
    }

	.client-testimonial-quote{
		margin-bottom: 15px;
	}

	.client-testimonial-quote img{
		max-width: 36px;
	}

	.client-testimonial-body{
        padding: 0 15px 20px 15px;
    }

	.client-author-content h3{
		font-size: 18px;
	}

	.faq-catagery-list{
		padding: 20px;
	}

	.contact-info-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }
}

/* =============================================
   OCEANS LENDING — CUSTOM HOMEPAGE STYLES
   ============================================= */

/* Hero Trust Line */
.hero-trust-line {
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(0, 204, 97, 0.12);
    border: 1px solid rgba(0, 204, 97, 0.3);
    border-radius: 50px;
    display: inline-block;
}
.hero-trust-line p {
    margin: 0;
    font-size: 15px;
    color: var(--white-color);
    font-weight: 500;
}

/* Secondary Outline Button */
.btn-secondary-outline {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background: transparent;
    color: var(--white-color);
    border-radius: 100px;
    padding: 16px 30px;
    border: 2px solid var(--white-color);
    transition: all 0.3s ease-in-out;
    margin-left: 15px;
}
.btn-secondary-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* ── Loan Type Tiles Section ── */
.loan-type-section {
    padding: 80px 0;
    background: var(--secondary-color);
}
.loan-type-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.loan-tile {
    background: var(--white-color);
    border-radius: 16px;
    padding: 36px 28px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.loan-tile:hover {
    border-color: var(--accent-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 204, 97, 0.15);
}
.loan-tile-icon {
    font-size: 48px;
    margin-bottom: 18px;
    display: block;
    line-height: 1;
}
.loan-tile h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.loan-tile p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}
.loan-tile-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.loan-tile-link:hover {
    color: var(--dark-color);
}

/* ── OCEANS Values Section ── */
.oceans-values-section {
    background: var(--dark-color);
    padding: 80px 0;
}
.ocean-value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--dark-divider-color);
}
.ocean-value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ocean-value-letter {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1;
}
.ocean-value-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 6px;
}
.ocean-value-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

/* ── Sea Turtle / Mission Section ── */
.brand-mission-section {
    padding: 80px 0;
    background: var(--white-color);
}
.brand-mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 204, 97, 0.1);
    border: 1px solid rgba(0, 204, 97, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
}
.brand-mission-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   LOAN PROGRAMS PAGE
   ══════════════════════════════════════════ */

/* ── Loan Programs Grid ── */
.loan-programs-section {
    padding: 60px 0 80px;
    background: var(--secondary-color);
}
.lp-card {
    background: var(--white-color);
    border-radius: 16px;
    border: 1px solid var(--divider-color);
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}
.lp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease-in-out;
}
.lp-card:hover {
    border-color: rgba(0, 204, 97, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.lp-card:hover::before {
    transform: scaleX(1);
}

/* Card header */
.lp-card-header {
    padding: 26px 26px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.lp-card-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0, 204, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.lp-card:hover .lp-card-icon-wrap {
    background: var(--accent-color);
}
.lp-card-icon-wrap i {
    font-size: 20px;
    color: var(--accent-color);
    transition: color 0.3s;
}
.lp-card:hover .lp-card-icon-wrap i {
    color: var(--white-color);
}
.lp-card-title-group h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
    line-height: 1.3;
}
.lp-card-title-group .lp-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card body */
.lp-card-body {
    padding: 0 26px 20px;
    flex: 1;
    min-height: 175px;
    border-top: 1px solid var(--divider-color);
    padding-top: 18px;
}
.lp-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lp-points li {
    font-size: 15px;
    color: var(--text-color);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}
.lp-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

/* Card footer */
.lp-card-footer {
    padding: 16px 26px 22px;
    background: var(--secondary-color);
    border-top: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
	min-height: 110px;
}
.lp-best-for {
    flex: 1;
}
.lp-best-for span {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 3px;
}
.lp-best-for p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.lp-cta-btn:hover {
    background: var(--dark-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* ── Do's & Don'ts Section ── */
.dos-donts-section {
    padding: 80px 0;
}
.checklist-card {
    border-radius: 16px;
    padding: 36px 32px;
    margin-bottom: 30px;
    border: 1px solid transparent;
}
.checklist-card.checklist-do {
    background: rgba(0, 204, 97, 0.07);
    border-color: rgba(0, 204, 97, 0.2);
}
.checklist-card.checklist-dont {
    background: rgba(220, 50, 50, 0.07);
    border-color: rgba(220, 50, 50, 0.18);
}
.checklist-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
}
.checklist-card.checklist-do .checklist-card-header {
    border-bottom: 1px solid rgba(0, 204, 97, 0.18);
}
.checklist-card.checklist-dont .checklist-card-header {
    border-bottom: 1px solid rgba(220, 50, 50, 0.15);
}
.checklist-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checklist-card.checklist-do .checklist-icon-badge {
    background: var(--accent-color);
}
.checklist-card.checklist-dont .checklist-icon-badge {
    background: #dc3232;
}
.checklist-icon-badge i {
    font-size: 18px;
    color: var(--white-color);
}
.checklist-card-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
}
.checklist-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.checklist-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}
.check-mark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.checklist-card.checklist-do .check-mark {
    background: rgba(0, 204, 97, 0.2);
    color: var(--accent-color);
}
.checklist-card.checklist-dont .check-mark {
    background: rgba(220, 50, 50, 0.2);
    color: #ff6b6b;
}
.check-mark i {
    font-size: 11px;
}

@media (max-width: 991px) {
    .loan-programs-section { padding: 40px 0 60px; }
    .dos-donts-section { padding: 50px 0; }
}

@media(max-width: 768px){
	.lp-card-body{
		min-height: 200px;
	}
}

@media (max-width: 767px) {
    .lp-card-header { padding: 20px 20px 16px; }
    .lp-card-body { padding: 16px 20px 16px; }
    .lp-card-footer { padding: 14px 20px 18px; }
    .checklist-card { padding: 26px 22px; }
    .checklist-card-header h3 { font-size: 17px; }
    .checklist-list li { font-size: 14px; }
}

/* ── About Page — Educating quote block ── */
.about-edu-quote {
    margin: 20px 0 24px;
    padding: 18px 22px;
    border-left: 4px solid var(--accent-color);
    background: var(--secondary-color);
    border-radius: 0 8px 8px 0;
}
.about-edu-quote p {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1.7;
    margin: 0;
}

/* ── Licenses & Compliance Section ── */
.licenses-section {
    padding: 90px 0;
    background: var(--secondary-color);
}
.licenses-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.license-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white-color);
    border: 2px solid var(--divider-color);
    border-radius: 14px;
    padding: 18px 22px;
    transition: border-color 0.3s;
}
.license-badge-item:hover {
    border-color: var(--accent-color);
}
.license-badge-icon {
    font-size: 32px;
    line-height: 1;
    min-width: 40px;
    text-align: center;
}
.license-badge-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}
.license-badge-content span {
    font-size: 13px;
    color: var(--text-color);
}
.licenses-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    margin-top: 20px;
}
.licenses-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    font-size: 15px;
}
.licenses-table thead tr {
    background: var(--dark-color);
    color: var(--white-color);
}
.licenses-table thead th {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}
.licenses-table tbody tr {
    border-bottom: 1px solid var(--divider-color);
    transition: background 0.2s;
}
.licenses-table tbody tr:last-child {
    border-bottom: none;
}
.licenses-table tbody tr:hover {
    background: rgba(0, 204, 97, 0.05);
}
.licenses-table tbody td {
    padding: 14px 24px;
    color: var(--text-color);
    vertical-align: middle;
}
.licenses-table .state-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* ── Why Choose / Stats Section ── */
.why-stats-section {
    padding: 90px 0;
    background: var(--dark-color);
}
.why-stats-header {
    margin-bottom: 60px;
}
.why-stats-header h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 14px;
}
.why-stats-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 16px;
    line-height: 1.2;
}
.why-stats-header h2 span {
    color: var(--accent-color);
}
.why-stats-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 44px 28px 36px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

@media(min-width:1200px){
	.why-stat-card {
		min-height: 345px;
}
}

@media(min-width:640px){
	.why-stat-card {
		min-height: 365px;
}

}
.why-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease-in-out;
    transform-origin: left;
}
.why-stat-card:hover {
    background: rgba(0, 204, 97, 0.08);
    border-color: rgba(0, 204, 97, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 204, 97, 0.15);
}
.why-stat-card:hover::before {
    transform: scaleX(1);
}
.why-stat-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.why-stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}
.why-stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.why-stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

/* Responsive for loan tiles & new sections */
@media (max-width: 991px) {
    .loan-type-section { padding: 50px 0; }
    .oceans-values-section { padding: 50px 0; }
    .brand-mission-section { padding: 50px 0; }
    .btn-secondary-outline { margin-left: 0; margin-top: 15px; }
    .why-stats-section { padding: 60px 0; }
    .why-stats-header h2 { font-size: 32px; }
    .why-stat-number { font-size: 52px; }

    /* When the two OCEANS value columns stack, restore the border/spacing
       on the last item of column 1 so there's a clean divider between groups */
    .oceans-values-section .col-lg-6:first-of-type .ocean-value-item:last-child {
        border-bottom: 1px solid var(--dark-divider-color);
        margin-bottom: 28px;
        padding-bottom: 28px;
    }
}
@media (max-width: 767px) {
    .hero-trust-line { padding: 10px 18px; }
    .hero-trust-line p { font-size: 13px; }
    .loan-tile { padding: 26px 20px; }
    .loan-tile-icon { font-size: 38px; }
    .ocean-value-letter { width: 46px; height: 46px; min-width: 46px; font-size: 20px; }
    .ocean-value-content h4 { font-size: 16px; }
    .ocean-value-content p { font-size: 14px; }
    .why-stats-section { padding: 40px 0; }
    .why-stats-header { margin-bottom: 36px; }
    .why-stats-header h2 { font-size: 26px; }
    .why-stat-number { font-size: 44px; }
    .why-stat-card { padding: 32px 20px 28px; }
}

/* =====================================================================
   CLIENT REVIEWS PAGE — v2
   ===================================================================== */

/* --- Ratings Strip --- */
.rv-ratings-strip {
    background: var(--dark-color);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rv-ratings-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 48px;
    flex-wrap: wrap;
    gap: 20px 48px;
}
.rv-platform-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rv-platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.rv-icon-google  { background: #fff; }
.rv-icon-zillow  { background: #006aff; color: #fff; }
.rv-icon-trustpilot { background: #00b67a; color: #fff; }
.rv-icon-overall { background: var(--accent-color); color: #fff; }
.rv-platform-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.rv-platform-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.5);
}
.rv-platform-stars { display: flex; gap: 3px; }
.rv-platform-stars i { font-size: 12px; color: #f5a623; }
.rv-platform-score {
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}
.rv-strip-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* --- Carousel Section --- */
.rv-carousel-section {
    padding: 90px 0 100px;
    background: #f8fafc;
}
.rv-section-title {
    margin-bottom: 20px;
}
.rv-section-title h3 { color: var(--accent-color); }

/* Controls row */
.rv-carousel-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 36px;
}
.rv-carousel-nav {
    display: flex;
    gap: 10px;
}
.rv-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    outline: none;
}
.rv-nav-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Swiper wrapper */
.reviews-carousel-wrap {
    overflow: hidden;
    padding-bottom: 52px;
}
.reviews-carousel-wrap .swiper-slide {
    height: auto;
}

/* Review Card */
.rv-review-card {
    background: var(--white-color);
    border-radius: 18px;
    padding: 36px 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e9eef4;
    box-shadow: 0 4px 28px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.rv-review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 18px 18px 0 0;
}
.rv-review-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.rv-review-card:hover::before {
    transform: scaleX(1);
}

/* Card top row: stars + loan pill */
.rv-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rv-review-stars { display: flex; gap: 4px; }
.rv-review-stars i { font-size: 15px; color: #f5a623; }
.rv-loan-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Quote icon */
.rv-review-quote img {
    width: 36px;
    opacity: 0.7;
}

/* Review text */
.rv-review-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--body-text-color);
    flex: 1;
    margin: 0;
}

/* Author row */
.rv-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #eef1f5;
    margin-top: auto;
}
.rv-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.rv-author-avatar figure {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.rv-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rv-avatar-icon{
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(22,163,74,0.12);
    color: var(--accent-color);
    border: 1px solid rgba(22,163,74,0.25);
    font-size: 16px;
}
.rv-author-details { flex: 1; }
.rv-author-details h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 3px;
}
.rv-author-details p {
    font-size: 13px;
    color: rgba(var(--body-text-rgb, 100,116,139), 1);
    margin: 0;
    color: #64748b;
}
.rv-google-icon {
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.7;
}
.rv-user-icon {
    margin-left: auto;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.2);
}
.rv-user-icon i {
    font-size: 13px;
}

/* Pagination dots */
.reviews-carousel-pagination {
    text-align: center;
    margin-top: 36px;
}
.reviews-carousel-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s;
}
.reviews-carousel-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 4px;
}

/* --- CTA Section --- */
.rv-cta-section {
    padding: 90px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.rv-cta-section .section-title.dark-section h3 { color: var(--accent-color); }
.rv-cta-section .section-title.dark-section h2,
.rv-cta-section .section-title.dark-section p {
    color: var(--white-color);
}
.rv-cta-section .section-title.dark-section p { color: rgba(255,255,255,0.65); }
.rv-cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.rv-leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}
.rv-leave-review-btn i { color: #f5a623; }
.rv-leave-review-btn:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    color: var(--white-color);
}
.rv-cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rv-cta-note i { color: var(--accent-color); font-size: 14px; }

/* CTA stats panel */
.rv-cta-stats {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-left: 20px;
}
.rv-cta-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rv-cta-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white-color);
    font-family: var(--heading-font);
    line-height: 1;
}
.rv-cta-stat-stars { display: flex; gap: 4px; margin: 4px 0; }
.rv-cta-stat-stars i { font-size: 14px; color: #f5a623; }
.rv-cta-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.rv-cta-stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .rv-cta-stats { margin-left: 0; margin-top: 40px; }
}
@media (max-width: 991px) {
    .rv-ratings-inner { gap: 16px 32px; }
    .rv-strip-divider { display: none; }
    .rv-carousel-section { padding: 60px 0 70px; }
    .rv-cta-section { padding: 60px 0; }
    .rv-cta-stats { flex-direction: row; align-items: center; }
    .rv-cta-stat-divider { width: 1px; height: 60px; }
    .rv-cta-stat-item { align-items: center; text-align: center; }
}
@media (max-width: 767px) {
    .rv-ratings-strip { padding: 20px 0; }
    .rv-ratings-inner { justify-content: center; gap: 16px 24px; }
    .rv-review-card { padding: 28px 24px 26px; }
    .rv-review-text { font-size: 14.5px; }
    .rv-cta-buttons { flex-direction: column; align-items: flex-start; }
    .rv-leave-review-btn { width: 100%; justify-content: center; }
    .rv-cta-stats { flex-direction: column; }
    .rv-cta-stat-divider { width: 100%; height: 1px; }
    .rv-cta-stat-number { font-size: 40px; }
    .rv-carousel-controls { justify-content: center; }
}

/* Swiper pagination override for rv page */
.reviews-carousel-wrap .swiper-pagination { bottom: 0; }

/* Ratings Bar */
.reviews-ratings-bar {
    display: flex;
    align-items: center;
    gap: 0 32px;
    background: var(--white-color);
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 24px 36px;
    margin-top: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 20px;
}
.ratings-bar-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    white-space: nowrap;
    flex-shrink: 0;
}
.ratings-platform-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 28px;
    flex: 1;
}
.ratings-bar-divider {
    width: 1px;
    height: 40px;
    background: #e8edf3;
    flex-shrink: 0;
}
.ratings-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ratings-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.ratings-badge-google {
    background: #fff;
    border: 1px solid #e8edf3;
}
.ratings-badge-zillow {
    background: #006aff;
    color: #fff;
}
.ratings-badge-trustpilot {
    background: #00b67a;
    color: #fff;
}
.ratings-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ratings-badge-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--body-text-color);
}
.ratings-stars {
    display: flex;
    gap: 2px;
}
.ratings-stars i {
    font-size: 12px;
    color: #f5a623;
}
.ratings-badge-score {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

/* Reviews Grid (2-col layout) */
.reviews-page-grid {
    padding-top: 60px;
}
.reviews-page-grid .client-testimonial-item.rv-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.reviews-page-grid .client-testimonial-header {
    flex: 1;
}
.rv-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.rv-stars {
    display: flex;
    gap: 3px;
}
.rv-stars i {
    font-size: 14px;
    color: #f5a623;
}
.rv-loan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    background: rgba(var(--accent-color-rgb, 22,163,74), 0.08);
    border: 1px solid rgba(var(--accent-color-rgb, 22,163,74), 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
}

/* Reviews CTA Section */
.reviews-cta-section {
    padding: 80px 0;
}
.reviews-cta-section .section-title.dark-section h2,
.reviews-cta-section .section-title.dark-section h3,
.reviews-cta-section .section-title.dark-section p {
    color: var(--white-color);
}
.reviews-cta-section .section-title.dark-section h3 {
    color: var(--accent-color);
}
.reviews-cta-section .section-title.dark-section p {
    color: rgba(255,255,255,0.7);
}
.reviews-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.reviews-leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.reviews-leave-review-btn i {
    color: #f5a623;
}
.reviews-leave-review-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: var(--white-color);
}
.reviews-cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 24px;
}

/* Reviews page responsive */
@media (max-width: 991px) {
    .reviews-ratings-bar { padding: 20px 24px; gap: 16px; }
    .ratings-platform-badges { gap: 16px; }
    .ratings-bar-divider { display: none; }
}
@media (max-width: 767px) {
    .reviews-ratings-bar { flex-direction: column; align-items: flex-start; }
    .ratings-platform-badges { gap: 20px 24px; }
    .reviews-cta-buttons { flex-direction: column; }
    .reviews-leave-review-btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   MORTGAGE CALCULATOR PAGE
   ===================================================================== */

/* Intro Section */
.calc-intro-section {
    padding: 72px 0 0;
}
.calc-intro-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.calc-intro-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white-color);
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.calc-intro-badge i {
    font-size: 18px;
    color: var(--accent-color);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}
.calc-intro-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Calculator Wrapper */
.calc-section {
    padding: 40px 0 90px;
    background: #f4f7fb;
}

/* Tab Navigation */
.calc-tabs-nav {
    display: flex;
    gap: 0;
    background: var(--white-color);
    border-radius: 16px 16px 0 0;
    padding: 0 24px;
    border-bottom: 2px solid #e8edf3;
    overflow-x: auto;
	overflow-y: hidden;
}
.calc-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    font-family: var(--heading-font);
}
.calc-tab-btn i {
    font-size: 16px;
}
.calc-tab-btn:hover {
    color: var(--dark-color);
}
.calc-tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Calculator Card */
.calc-card {
    background: var(--white-color);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Panels */
.calc-panel { display: none; }
.calc-panel.active { display: block; }

/* Inputs Column */
.calc-inputs-col {
    padding: 40px 36px;
    border-right: 1px solid #f0f3f8;
    height: 100%;
}
.calc-inputs-heading {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 28px;
}
.calc-input-group {
    margin-bottom: 20px;
}
.calc-input-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
.calc-input-label em {
    font-style: normal;
    font-weight: 400;
    color: #94a3b8;
    font-size: 12px;
}
.calc-input-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.calc-input-wrap {
    position: relative;
}
.calc-input-prefix,
.calc-input-suffix {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.calc-input-prefix { left: 14px; }
.calc-input-suffix { right: 14px; }
.calc-number-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--heading-font);
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-number-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
    background: var(--white-color);
}
.calc-number-input.has-prefix  { padding-left: 32px; }
.calc-number-input.has-suffix  { padding-right: 50px; }

.calc-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
}
.calc-section-divider::before,
.calc-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8edf3;
}

.calc-ratio-info {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: 10px;
    font-size: 12.5px;
    color: #374151;
    line-height: 1.6;
    display: flex;
    gap: 10px;
}
.calc-ratio-info i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Results Column */
.calc-results-col {
    padding: 40px 40px 36px;
}

/* Primary Result Card */
.calc-result-primary {
    background: var(--dark-color);
    border-radius: 16px;
    padding: 32px 36px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.calc-result-primary::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.calc-result-primary-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.calc-result-primary-value {
    font-size: 54px;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.calc-result-primary-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}
.calc-result-primary-total {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.calc-result-primary-total span {
    color: var(--white-color);
    font-weight: 700;
}

/* Result Grid */
.calc-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}
.calc-result-item {
    background: #f8fafc;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.2s;
}
.calc-result-item:hover { border-color: var(--accent-color); }
.calc-result-item-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 7px;
}
.calc-result-item-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    font-family: var(--heading-font);
    line-height: 1.1;
}

/* Breakdown Bar */
.calc-breakdown-section { margin-top: 0; }
.calc-breakdown-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.calc-breakdown-bar {
    display: flex;
    height: 10px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #e8edf3;
}
.calc-bd-principal {
    background: var(--accent-color);
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
    border-radius: 6px 0 0 6px;
}
.calc-bd-interest {
    background: #cbd5e1;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.calc-breakdown-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.calc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}
.calc-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.calc-legend-dot.principal { background: var(--accent-color); }
.calc-legend-dot.interest  { background: #cbd5e1; }
.calc-legend-item strong { color: var(--dark-color); }

/* Programs (Affordability) */
.calc-programs { margin-top: 0; }
.calc-programs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.calc-program-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    color: var(--accent-color);
    transition: all 0.2s;
}
.calc-program-pill:hover {
    background: rgba(22,163,74,0.14);
}
.calc-program-pill-muted {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
}

/* Refinance Comparison Bars */
.calc-comparison-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.calc-comparison-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    width: 90px;
    flex-shrink: 0;
}
.calc-comparison-bar-wrap {
    flex: 1;
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
}
.calc-comparison-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.calc-comparison-bar.current-bar { background: #cbd5e1; }
.calc-comparison-bar.new-bar     { background: var(--accent-color); }
.calc-comparison-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    width: 90px;
    text-align: right;
    flex-shrink: 0;
}

/* Disclaimer */
.calc-disclaimer {
    margin: 0 24px 24px;
    padding: 14px 18px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: 12.5px;
    color: #78350f;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
}
.calc-disclaimer i { color: #f59e0b; margin-top: 2px; flex-shrink: 0; }
.calc-disclaimer a { color: #92400e; font-weight: 600; text-decoration: underline; }

/* CTA Section */
.calc-cta-section { padding: 90px 0; }
.calc-cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.calc-cta-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 30px;
}
.calc-cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.calc-cta-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}
.calc-cta-feature-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 4px;
}
.calc-cta-feature-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 1199px) {
    .calc-cta-features { padding-left: 0; margin-top: 40px; }
    .calc-input-row-2 { grid-template-columns: 1fr; gap: 0; }
    .calc-inputs-col { padding: 36px 28px; }
}
@media (max-width: 991px) {
    .calc-inputs-col { border-right: none; border-bottom: 1px solid #f0f3f8; padding: 32px 28px; }
    .calc-results-col { padding: 32px 28px; }
    .calc-result-primary { padding: 28px 24px; }
    .calc-result-primary-value { font-size: 44px; }
    .calc-intro-section { padding: 60px 0 0; }
    .calc-section { padding: 30px 0 70px; }
    .calc-cta-section { padding: 60px 0; }
    .calc-cta-features { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .calc-cta-feature { width: calc(50% - 10px); }
}
@media (max-width: 767px) {
    .calc-tabs-nav { padding: 0 16px; }
    .calc-tab-btn { padding: 14px 16px; font-size: 13px; gap: 7px; }
    .calc-tab-btn i { font-size: 14px; }
    .calc-inputs-col { padding: 28px 20px; }
    .calc-results-col { padding: 28px 20px; }
    .calc-result-primary { padding: 24px 20px; }
    .calc-result-primary-value { font-size: 38px; }
    .calc-result-grid { grid-template-columns: 1fr; gap: 10px; }
    .calc-input-row-2 { grid-template-columns: 1fr; gap: 0; }
    .calc-cta-buttons { flex-direction: column; align-items: flex-start; }
    .calc-cta-feature { width: 100%; }
    .calc-comparison-label { width: 70px; font-size: 11px; }
    .calc-comparison-value { width: 76px; font-size: 12px; }
}

/* =====================================================================
   APPLY NOW PAGE
   ===================================================================== */

/* --- Intro Section --- */
.apply-intro-section {
    padding: 72px 0 80px;
}

/* 3-Step Process Strip */
.apply-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
    background: #f4f7fb;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 24px 28px;
    flex-wrap: wrap;
    gap: 12px;
}
.apply-step {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 140px;
}
.apply-step-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    flex-shrink: 0;
}
.apply-step-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 3px;
}
.apply-step-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}
.apply-step-arrow {
    font-size: 14px;
    color: #cbd5e1;
    flex-shrink: 0;
    padding: 0 4px;
}

/* Trust Panel */
.apply-trust-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white-color);
    border: 1px solid #e8edf3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.apply-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.2s;
}
.apply-trust-item:last-child { border-bottom: none; }
.apply-trust-item:hover { background: #fafbfc; }
.apply-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(22,163,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}
.apply-trust-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 4px;
}
.apply-trust-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* --- Loan Officer Grid --- */
.lo-grid-section {
    padding: 80px 0 60px;
    background: #f4f7fb;
}

.lo-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
.lo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* Photo */
.lo-card-photo {
    position: relative;
    overflow: hidden;
    height: 320px;
}
.lo-card-photo figure { margin: 0; height: 100%; }
.lo-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}
.lo-card:hover .lo-card-photo img { transform: scale(1.04); }

/* NMLS Badge — overlays bottom of photo */
.lo-card-nmls-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Body */
.lo-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lo-card-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-color);
    margin-bottom: 6px;
}
.lo-card-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 14px;
}

/* State Pills */
.lo-card-states {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.lo-card-states span {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    letter-spacing: 0.5px;
}

/* Contact Links */
.lo-card-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 18px;
    flex: 1;
}
.lo-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}
.lo-contact-link i {
    font-size: 13px;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.lo-contact-link:hover { color: var(--accent-color); }

/* Apply Now Button */
.lo-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    margin-top: auto;
}
.lo-apply-btn i { font-size: 13px; transition: transform 0.2s; }
.lo-apply-btn:hover {
    background: var(--dark-color);
    color: var(--white-color);
    transform: none;
}
.lo-apply-btn:hover i { transform: translateX(4px); }

/* --- No Loan Officer CTA --- */
.apply-no-lo { padding: 80px 0; }
.apply-no-lo-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.apply-no-lo-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.apply-no-lo-contact:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}
.apply-no-lo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}
.apply-no-lo-contact span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 3px;
}
.apply-no-lo-contact strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
}

/* No LO card (manager spotlight) */
.apply-no-lo-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    overflow: hidden;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
}
.apply-no-lo-card-photo {
    width: 110px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.12);
}
.apply-no-lo-card-photo figure { margin: 0; height: 100%; }
.apply-no-lo-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.apply-no-lo-card-info {
    flex: 1;
}
.apply-no-lo-card-role {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-color);
    margin-bottom: 6px;
}
.apply-no-lo-card-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white-color);
    margin: 0 0 4px;
}
.apply-no-lo-card-info > p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* --- What to Expect Section --- */
.apply-expect-section {
    padding: 90px 0;
    background: var(--white-color);
}
.apply-expect-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.apply-expect-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #f0f4f8;
}
.apply-expect-item:last-child { border-bottom: none; }
.apply-expect-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(22,163,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: background 0.2s;
}
.apply-expect-item:hover .apply-expect-icon {
    background: var(--accent-color);
    color: #fff;
}
.apply-expect-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 6px;
}
.apply-expect-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* --- Legal Strip --- */
.apply-legal-strip {
    background: #f4f7fb;
    border-top: 1px solid #e8edf3;
    padding: 32px 0;
}
.apply-legal-inner { display: flex; flex-direction: column; gap: 20px; }
.apply-legal-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
}
.apply-legal-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.apply-legal-badge i { color: var(--accent-color); font-size: 15px; }
.apply-legal-badge:first-child { padding-left: 0; }
.apply-legal-divider {
    width: 1px;
    height: 18px;
    background: #cbd5e1;
}
.apply-legal-text {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .apply-no-lo-card { margin-left: 0; margin-top: 40px; flex-direction: column; text-align: center; padding: 28px 24px; }
    .apply-no-lo-card-info { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 991px) {
    .apply-intro-section { padding: 60px 0; }
    .apply-trust-panel { margin-top: 36px; }
    .lo-grid-section { padding: 60px 0; }
    .apply-no-lo { padding: 60px 0; }
    .apply-expect-section { padding: 60px 0; }
    .apply-steps { gap: 10px; }
    .apply-step-arrow { display: none; }
}
@media (max-width: 767px) {
    .apply-steps { flex-direction: column; gap: 16px; }
    .apply-step { width: 100%; }
    .apply-no-lo-contacts { flex-direction: column; }
    .apply-no-lo-contact { width: 100%; }
    .apply-legal-badges { flex-direction: column; align-items: flex-start; gap: 12px; }
    .apply-legal-divider { display: none; }
    .apply-legal-badge { padding-left: 0; }
    .lo-card-photo { height: 280px; }
}

/* =====================================================================
   SEA TURTLE CONSERVANCY PAGE
   ===================================================================== */

/* --- Shared Image Placeholder --- */
.stc-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    overflow: hidden;
    color: #38bdf8;
    width: 100%;
}
.stc-img-placeholder i { font-size: 40px; opacity: 0.5; }
.stc-img-placeholder span { font-size: 12px; font-weight: 600; opacity: 0.6; text-align: center; padding: 0 12px; }

/* --- SECTION 1: Hero (2-col) --- */
.stc-hero-section {
    background: linear-gradient(150deg, #061e2e 0%, #0a3040 50%, #083328 100%);
    padding: 90px 0 80px;
    overflow: hidden;
}
.stc-breadcrumb { margin-bottom: 0; }
.stc-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.5); font-size: 13px; }
.stc-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.4); font-size: 13px; }
.stc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }
.stc-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 18px;
}
.stc-hero-headline {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.1;
    margin-bottom: 20px;
}
.stc-hero-headline span { color: var(--accent-color); }
.stc-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero inline stats */
.stc-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
}
.stc-hero-stat {
    text-align: center;
    padding: 18px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stc-hero-stat:last-child { border-right: none; }
.stc-hero-stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    font-size: 30px;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 6px;
}
.stc-hero-stat-num .counter { font-size: inherit; font-weight: inherit; }
.stc-hero-stat-num em {
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
}
.stc-hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    font-weight: 500;
    line-height: 1.35;
}
.stc-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stc-hero-link {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s;
}
.stc-hero-link:hover { color: var(--accent-color); }
.stc-hero-link i { font-size: 11px; margin-left: 4px; }

/* Hero image (right col) */
.stc-hero-img-wrap { position: relative; }
.stc-hero-img-placeholder {
    height: 460px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a3a50 0%, #0d5c3a 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(125,211,252,0.35);
}
.stc-hero-img-placeholder span {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
    font-weight: 500;
}
.stc-hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(22,163,74,0.9);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* --- SECTION 2: Story --- */
.stc-story-section {
    padding: 90px 0;
    background: var(--white-color);
}
.stc-story-body p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text-color);
}
.stc-story-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
}
.stc-story-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--body-text-color);
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f8;
    line-height: 1.5;
}
.stc-story-highlights li:last-child { border-bottom: none; }
.stc-story-highlights li i {
    color: var(--accent-color);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.stc-story-highlights li strong { color: var(--dark-color); }
.stc-story-highlights li span { flex: 1; min-width: 0; }
.stc-inline-quote {
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5ee 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    font-size: 14.5px;
    font-style: italic;
    color: #2d5a3d;
    font-weight: 600;
    margin: 0 0 24px;
    line-height: 1.6;
}
.stc-story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.stc-story-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
}
.stc-story-badge i { font-size: 13px; }

/* Story Images */
.stc-story-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 30px;
}
.stc-story-img-main .stc-img-placeholder.stc-img-tall { height: 300px; }
.stc-story-img-secondary {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.stc-story-img-secondary .stc-img-placeholder.stc-img-short { height: 160px; flex: 1; }

/* Real images for Sections 1 & 2 */
.stc-hero-img-placeholder img,
.stc-story-img-main .stc-img-placeholder img,
.stc-story-img-secondary .stc-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stc-story-counter-box {
    flex-shrink: 0;
    width: 140px;
    background: var(--dark-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
}
.stc-counter-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 8px;
}
.stc-story-counter-box p {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.4;
}

/* --- SECTION 3: Pull Quote --- */
.stc-pull-quote-section {
    background: linear-gradient(135deg, #061e2e 0%, #0a3040 100%);
    padding: 80px 0;
}
.stc-pull-quote-mark {
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0.7;
    margin-bottom: 24px;
    display: block;
}
.stc-pull-quote-text {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 32px;
    border: none;
    padding: 0;
}
.stc-pull-quote-attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
}
.stc-pull-quote-line {
    height: 1px;
    width: 60px;
    background: var(--accent-color);
    opacity: 0.4;
}

/* --- SECTION 4: Adoption Steps --- */
.stc-steps-section {
    padding: 90px 0;
    background: #f4f7fb;
}
.stc-steps-row { position: relative; }
.stc-steps-row::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-color) 0, var(--accent-color) 8px, transparent 8px, transparent 18px);
    opacity: 0.25;
    pointer-events: none;
}
.stc-step-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #e8edf3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.stc-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.stc-step-num {
    font-size: 13px;
    font-weight: 900;
    color: var(--accent-color);
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    letter-spacing: 0.5px;
}
.stc-step-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.stc-step-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 12px;
}
.stc-step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* --- SECTION 5: Species --- */
.stc-species-section {
    padding: 90px 0;
    background: var(--white-color);
}
.stc-species-card {
    background: var(--white-color);
    border: 1px solid #e8edf3;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stc-species-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.stc-species-header {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stc-species-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,0.35);
}
.stc-species-img-placeholder i { font-size: 48px; opacity: 1; }
.stc-species-img-placeholder span { font-size: 11px; font-weight: 600; opacity: 1; }
.stc-species-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.stc-status-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
}
.stc-badge-vulnerable    { background: #fef3c7; color: #92400e; }
.stc-badge-endangered    { background: #ffedd5; color: #9a3412; }
.stc-badge-critical      { background: #fee2e2; color: #991b1b; }
.stc-badge-deficient     { background: #f1f5f9; color: #475569; }
.stc-species-body { padding: 22px 22px 24px; }
.stc-species-body h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 14px;
}
.stc-species-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stc-species-facts li {
    font-size: 13.5px;
    color: #475569;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.stc-species-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.5;
}

/* --- SECTION 6: Threats --- */
.stc-threats-section { padding: 90px 0; }
.stc-threat-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stc-threat-item:nth-child(even) { padding-left: 20px; }
.stc-threat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.stc-threat-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 8px;
}
.stc-threat-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.65;
}

/* --- SECTION 7: Actions --- */
.stc-actions-section {
    padding: 90px 0;
    background: #f4f7fb;
}
.stc-action-card {
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid #e8edf3;
    padding: 32px 28px;
    margin-bottom: 28px;
    height: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stc-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
.stc-action-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(22,163,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: background 0.2s;
}
.stc-action-card:hover .stc-action-icon {
    background: var(--accent-color);
    color: #fff;
}
.stc-action-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 12px;
}
.stc-action-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
}
.stc-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: gap 0.2s;
    margin-top: auto;
}
.stc-action-link:hover { gap: 12px; color: var(--accent-color); }
.stc-action-tip {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f4f8;
}

/* Featured action card */
.stc-action-card-featured {
    background: var(--dark-color);
    border-color: var(--dark-color);
}
.stc-action-card-featured h4 { color: var(--white-color); }
.stc-action-card-featured p  { color: rgba(255,255,255,0.6); }
.stc-action-card-featured:hover { transform: translateY(-5px); }
.stc-action-icon-featured {
    background: rgba(22,163,74,0.2);
    color: var(--accent-color);
}
.stc-action-card-featured:hover .stc-action-icon-featured {
    background: var(--accent-color);
    color: #fff;
}
.stc-action-link-featured { color: var(--accent-color); }

/* --- SECTION 8: Partner Links --- */
.stc-partner-links-section {
    padding: 80px 0;
    background: #f0f9ff;
    border-top: 1px solid #bae6fd;
    border-bottom: 1px solid #bae6fd;
}
.stc-partner-card {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid #e0f2fe;
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 28px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
    box-shadow: 0 4px 16px rgba(14,165,233,0.06);
    height: calc(100% - 28px);
}
.stc-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(14,165,233,0.12);
    border-color: #7dd3fc;
}
.stc-partner-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0ea5e9;
    margin-bottom: 20px;
    transition: background 0.2s;
}
.stc-partner-icon-accent { background: rgba(22,163,74,0.1); color: var(--accent-color); }
.stc-partner-card:hover .stc-partner-card-icon { background: #0ea5e9; color: #fff; }
.stc-partner-card-cta-card:hover .stc-partner-card-icon { background: var(--accent-color); }
.stc-partner-card h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 10px;
}
.stc-partner-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}
.stc-partner-card-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    margin-top: auto;
}
.stc-partner-cta-green { color: var(--accent-color); }

/* CTA section image */
.stc-cta-section { padding: 90px 0; }
.stc-cta-section { border-bottom: 1px solid rgba(255,255,255,0.12); }
.stc-cta-image-wrap { position: relative; padding-left: 24px; }
.stc-cta-img-placeholder {
    height: 380px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10,48,64,0.8) 0%, rgba(8,51,40,0.8) 100%),
                linear-gradient(135deg, #0a3040 0%, #083328 100%);
    overflow: hidden;
    color: rgba(125,211,252,0.5);
}
.stc-cta-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stc-cta-badge {
    position: absolute;
    bottom: 24px;
    left: 44px;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .stc-hero-section { padding: 60px 0; }
    .stc-hero-img-wrap { margin-top: 40px; }
    .stc-hero-img-placeholder { height: 300px; }
    .stc-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stc-hero-stat:nth-child(2) { border-right: none; }
    .stc-hero-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
    .stc-hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
    .stc-hero-stat-num { font-size: 26px; }
    .stc-story-section, .stc-steps-section, .stc-species-section,
    .stc-actions-section, .stc-partner-links-section, .stc-cta-section { padding: 60px 0; }
    .stc-story-images { padding-left: 0; margin-top: 36px; order: 2; }
    .stc-story-section .col-lg-6:first-child { order: 2; }
    .stc-story-section .col-lg-6:last-child { order: 1; }
    .stc-steps-row::before { display: none; }
    .stc-cta-image-wrap { padding-left: 0; margin-top: 36px; }
}
@media (max-width: 767px) {
    .stc-hero-headline { font-size: 30px; }
    .stc-hero-sub { font-size: 15px; }
    .stc-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stc-hero-stat-num { font-size: 24px; }
    .stc-story-img-secondary { flex-direction: column; }
    .stc-story-counter-box { width: 100%; padding: 20px; flex-direction: row; gap: 16px; }
    .stc-threat-item:nth-child(even) { padding-left: 0; }
    .stc-cta-img-placeholder { height: 240px; }
    /* Story section mobile */
    .stc-story-highlights li { font-size: 14px; gap: 8px; }
    .stc-inline-quote { font-size: 14px; padding: 14px 16px; }
    .stc-story-badge { font-size: 12px; padding: 6px 12px; }
    /* Steps section mobile */
    .stc-steps-row { row-gap: 10px; }
    .stc-step-card { padding: 24px 20px; }
    .stc-step-icon { font-size: 30px; margin-bottom: 14px; }
    .stc-step-num { width: 38px; height: 38px; font-size: 12px; margin-bottom: 14px; }
    .stc-step-card h4 { font-size: 15px; }
}

/* =====================================================================
   FOOTER — Oceans Lending Updates
   ===================================================================== */
.footer-nmls-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
}
.footer-nmls-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 5px 12px;
}
.footer-nmls-badge span i {
    color: var(--accent-color, #4caf7d);
    font-size: 11px;
}
.footer-brand-block{
    padding-right: 20px;
}
.footer-brand-logo{
    display: inline-block;
    margin-bottom: 18px;
}
.footer-links-wrap{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.footer-contact-card{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    padding: 16px;
}
.footer-contact-card .footer-contact-item::before{
    display: none;
}
.footer-contact-card .footer-contact-item p{
    font-size: 12px;
    margin-bottom: 4px;
}
.footer-contact-card .footer-contact-item h3{
    font-size: 17px;
    margin-bottom: 0;
}
.footer-contact-card .footer-contact-meta h3{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}
.footer-contact-card .footer-contact-meta h3 i{
    color: var(--accent-color, #4caf7d);
    font-size: 13px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin: 10px 0 0;
}
.footer-disclaimer p {
    font-size: 11.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 10px;
}
.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .footer-contact-card {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .footer-contact-card .footer-contact-item h3 {
        font-size: 15px;
    }
    .footer-contact-card .footer-contact-meta h3 {
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .footer-nmls-badge { flex-direction: column; gap: 8px; }
    .footer-brand-block{
        padding-right: 0;
        margin-bottom: 24px;
    }
    .footer-links-wrap{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-contact-card{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .footer-links-wrap{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .footer-contact-card{
        grid-template-columns: 1fr;
    }
    .footer-disclaimer p { font-size: 11px; }
}


@media(max-width: 640px){
.footer-links-wrap{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =====================================================================
   CONTACT PAGE
   ===================================================================== */

/* Hero */
.ct-hero-section {
    background: linear-gradient(150deg, #061e2e 0%, #0a3040 60%, #083328 100%);
    padding: 80px 0 72px;
}
.ct-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 18px;
}
.ct-hero-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.05;
    margin-bottom: 20px;
}
.ct-hero-headline span { color: var(--accent-color); }
.ct-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 24px;
}
.ct-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 8px 18px;
}
.ct-hero-trust i { color: var(--accent-color); }

/* Form section */
.ct-form-section {
    padding: 70px 0 80px;
    background: #f4f7fb;
}

/* Form card */
.ct-form-card {
    background: var(--white-color);
    border-radius: 24px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.09);
    overflow: hidden;
}

/* Alert */
.ct-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
}
.ct-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border-bottom: 2px solid #fecaca;
}
.ct-alert a { color: #dc2626; }

/* Step indicator bar */
.ct-step-bar {
    display: flex;
    align-items: center;
    padding: 28px 40px 0;
    background: #fff;
    border-bottom: 1px solid #eef1f6;
    margin-bottom: 0;
    padding-bottom: 24px;
}
.ct-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.ct-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8edf3;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}
.ct-step-dot i { display: none; }
.ct-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s;
}
.ct-step-item.active .ct-step-dot {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(22,163,74,0.35);
}
.ct-step-item.active .ct-step-label { color: var(--accent-color); }
.ct-step-item.done .ct-step-dot {
    background: var(--accent-color);
    color: #fff;
}
.ct-step-item.done .ct-step-dot span { display: none; }
.ct-step-item.done .ct-step-dot i { display: flex; }
.ct-step-item.done .ct-step-label { color: var(--accent-color); }
.ct-step-line {
    flex: 1;
    height: 2px;
    background: #e8edf3;
    margin: 0 8px;
    margin-bottom: 22px;
    transition: background 0.3s;
}

/* Step content */
.ct-step { display: none; padding: 36px 40px 40px; }
.ct-step.active { display: block; }
.ct-step-header { margin-bottom: 28px; }
.ct-step-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ct-step-header p { font-size: 14px; color: #64748b; margin: 0; }
.ct-optional-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 3px 10px;
}

/* Loan type tiles */
.ct-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}
.ct-tile {
    border: 2px solid #e8edf3;
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    background: #fff;
    user-select: none;
}
.ct-tile:hover {
    border-color: rgba(22,163,74,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(22,163,74,0.1);
}
.ct-tile.selected {
    border-color: var(--accent-color);
    background: #f0f9f4;
    box-shadow: 0 8px 28px rgba(22,163,74,0.15);
}
.ct-tile-check {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(22,163,74,0.4);
}
.ct-tile.selected .ct-tile-check { display: flex; }
.ct-tile-icon {
    font-size: 28px;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: color 0.25s;
}
.ct-tile.selected .ct-tile-icon { color: var(--accent-color); }
.ct-tile h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 6px;
}
.ct-tile p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Form fields */
.ct-form-group { margin-bottom: 20px; }
.ct-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 7px;
}
.ct-required { color: var(--accent-color); }
.ct-input, .ct-select {
    width: 100%;
    height: 48px;
    border: 2px solid #e8edf3;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--dark-color);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.ct-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}
.ct-select-half { max-width: 320px; }
.ct-input:focus, .ct-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.ct-input-error { border-color: #ef4444 !important; }

/* Field errors */
.ct-field-error {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #ef4444;
    font-weight: 600;
    margin-top: 6px;
}

/* Language radio */
.ct-radio-group { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 4px; }
.ct-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 600;
}
.ct-radio-label input[type="radio"] { display: none; }
.ct-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e8edf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ct-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    display: none;
}
.ct-radio-label input:checked ~ .ct-radio-custom {
    border-color: var(--accent-color);
    background: #f0f9f4;
}
.ct-radio-label input:checked ~ .ct-radio-custom::after { display: block; }

/* Time tiles */
.ct-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ct-time-tile {
    border: 2px solid #e8edf3;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: #fff;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ct-time-tile input[type="radio"] { display: none; }
.ct-time-tile i { font-size: 20px; color: #94a3b8; transition: color 0.2s; }
.ct-time-tile span { font-size: 13px; font-weight: 700; color: var(--dark-color); }
.ct-time-tile:hover, .ct-time-tile.selected {
    border-color: var(--accent-color);
    background: #f0f9f4;
}
.ct-time-tile.selected i { color: var(--accent-color); }
.ct-time-tile:hover i { color: var(--accent-color); }

/* Profession tiles */
.ct-profession-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.ct-prof-tile {
    border: 2px solid #e8edf3;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: #fff;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ct-prof-tile input[type="checkbox"] { display: none; }
.ct-prof-tile i { font-size: 22px; color: #94a3b8; transition: color 0.2s; }
.ct-prof-tile span { font-size: 12px; font-weight: 700; color: var(--dark-color); line-height: 1.3; }
.ct-prof-tile:hover, .ct-prof-tile.selected {
    border-color: var(--accent-color);
    background: #f0f9f4;
}
.ct-prof-tile.selected i { color: var(--accent-color); }
.ct-skip-note {
    font-size: 12.5px;
    color: #94a3b8;
    margin: 0 0 24px;
    font-style: italic;
}

/* reCAPTCHA note */
.ct-recaptcha-note {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ct-recaptcha-note i { color: var(--accent-color); }
.ct-recaptcha-note a { color: #64748b; text-decoration: underline; }

/* Navigation buttons */
.ct-step-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eef1f6;
}
.ct-btn-next {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-btn-next:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}
.ct-btn-back {
    background: transparent;
    color: #64748b;
    border: 2px solid #e8edf3;
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-btn-back:hover { border-color: #94a3b8; color: var(--dark-color); }
.ct-btn-submit {
    background: var(--dark-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}

/* Success card */
.ct-success-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.09);
    padding: 64px 48px;
    text-align: center;
}
.ct-success-icon {
    font-size: 64px;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: block;
}
.ct-success-card h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 16px;
}
.ct-success-card > p {
    font-size: 16px;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.ct-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.ct-success-link {
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.ct-success-link:hover { color: var(--accent-color); }
.ct-success-note {
    font-size: 12.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Offices section */
.ct-offices-section { padding: 90px 0; }
.ct-office-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ct-office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.ct-office-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22,163,74,0.15);
    border: 1px solid rgba(22,163,74,0.3);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.ct-office-address {
    font-style: normal;
    font-size: 17px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 24px;
}
.ct-office-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ct-office-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: background 0.2s;
}
.ct-office-contact:hover { background: rgba(255,255,255,0.1); }
.ct-office-contact > i {
    font-size: 16px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.ct-office-contact-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ct-office-contact strong {
    display: block;
    font-size: 15px;
    color: var(--white-color);
    font-weight: 700;
}
.ct-office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.ct-office-map-link:hover { color: var(--accent-color); }

/* Responsive */
@media (max-width: 991px) {
    .ct-step-bar { padding: 20px 24px 18px; overflow-x: auto; }
    .ct-step { padding: 28px 24px 32px; }
    .ct-tile-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-time-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-profession-grid { grid-template-columns: repeat(3, 1fr); }
    .ct-offices-section { padding: 60px 0; }
    .ct-office-card { margin-bottom: 20px; }
}
@media (max-width: 767px) {
    .ct-hero-section { padding: 60px 0 50px; }
    .ct-form-section { padding: 40px 0 60px; }
    .ct-step-label { display: none; }
    .ct-step-bar { gap: 4px; }
    .ct-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ct-tile { padding: 18px 10px 14px; }
    .ct-profession-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-step-nav { flex-direction: column-reverse; gap: 12px; }
    .ct-btn-next, .ct-btn-back, .ct-btn-submit { width: 100%; justify-content: center; }
    .ct-success-card { padding: 40px 24px; }
    .ct-select-half { max-width: 100%; }
}

/* Oceans Lending logo sizing */
@media (max-width: 991px) {
    .navbar-brand .header-logo-img {
        max-width: 230px;
        max-height: 66px;
    }
}
@media (max-width: 767px) {
    .navbar-brand .header-logo-img {
        max-width: 230px;
        max-height: 80px;
    }
    .footer-logo .footer-logo-img {
        max-width: 140px;
    }
    .home-hero-loan-btn {
        display: none !important;
    }
}

/* Footer License Highlight Box */
.footer-license-highlight {
    background: rgba(0, 204, 97, 0.06);
    border: 1px solid rgba(0, 204, 97, 0.18);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 16px;
    height: 100%;
}
.footer-license-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin: 0 0 12px;
}
.footer-license-item {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-license-item:last-child { border-bottom: none; }
.footer-license-item span {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    margin-right: 5px;
}

/* Footer EHL Badge */
.footer-ehl-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 22px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
}
.footer-ehl-img {
    width: 72px;
    height: auto;
    border-radius: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-ehl-img:hover { opacity: 0.9; transform: scale(1.04); }
.footer-ehl-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}
@media (max-width: 991px) {
    .footer-license-highlight { margin-bottom: 20px; height: auto; }
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 204, 97, 0.35);
    text-decoration: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--dark-color);
    color: var(--white-color);
}
@media (max-width: 767px) {
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
}

/* TERMS OF USE PAGE */
.tou-header{background:linear-gradient(120deg,#eef0f6 0%,#e7ebf5 100%);padding:70px 0 64px;}
.tou-header-box{text-align:center;}
.tou-header-box h1{font-size:clamp(38px,5vw,58px);color:#0f172a;margin:0;}
.tou-content{background:#f4f4f5;padding:70px 0 90px;}
.tou-card h2{font-size:34px;color:#1e293b;margin:0 0 16px;}
.tou-card p,.tou-card li{font-size:15px;line-height:1.6;color:#667085;}
.tou-card p{margin-bottom:20px;}
.tou-card ul{padding-left:28px;margin-bottom:10px;}
.tou-card ol{padding-left:26px;}
@media (max-width:767px){.tou-card h2{font-size:26px;}.tou-card p,.tou-card li{font-size:14px;}}
