/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Levis - Insurance 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. How It Work Css
09. Our Features css
10. CTA Box css
11. Our Pricing css
12. Support Team css
13. Our FAQs css
14. Our Testiminial 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. Page Pricing css
25.	FAQs Page css
26. Contact us Page css
27. 404 Page css
28. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #004F4C;
	--secondary-color		: #EBEFF0;
	--text-color			: #6F6F6F;
	--accent-color			: #009A5E;
	--white-color			: #FFFFFF;
	--divider-color			: #ECF2F0;
	--dark-divider-color	: #FFFFFF33;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Golos Text", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 400;
	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-flex;
	line-height: 1.3em;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--white-color);
	text-transform: capitalize;
	border-radius: 12px 12px 12px 0;
	padding: 16px 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: '';
	position: absolute;
	width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    opacity: 0;
	z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	height: 350%;
	opacity: 1;
}

.btn-default.btn-highlighted{
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	padding: 15px 30px;
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-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{
	text-align: center;
	margin-bottom: 80px;
}

.section-row .section-title{
	width: 100%;
	max-width: 730px;
	margin: 0 auto;
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 60px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 12px;
    font-weight: 500;
	line-height: 1.8em;
    text-transform: uppercase;
	letter-spacing: 0.2em;
    color: var(--accent-color);
	padding-left: 20px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 7px;
	height: 7px;
}

.section-title h1{
	font-size: 56px;
	letter-spacing: -0.005em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 40px;
	letter-spacing: -0.005em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	font-weight: 700;
}

.section-title p{
	margin-top: 30px;
	margin-bottom: 0;
}

.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		 ****/
/************************************/

.topbar{
	background-color: var(--secondary-color);
	padding: 10px 0;
}

.topbar-info-content{
	text-align: left;
}

.topbar-info-content p{
	margin: 0;
}

.topbar-info-content p a{
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-info-content p a:hover{
	color: var(--accent-color);
}

/* .topbar-contact-info{
	text-align: right;
}

.topbar-contact-info ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li{
	position: relative;
	display: inline-block;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover{
	color: var(--accent-color);
}

.topbar-contact-info ul li::after{
	content: '/';
    font-weight: 900;
    font-size: 14px;
    padding: 0 15px;
}

.topbar-contact-info ul li:last-child::after{
	display: none;
}

.topbar-contact-info ul li a{
	color: inherit;
} */

.topbar-social-links{
	text-align: right;
}

.topbar-social-links ul{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li{
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child{
	margin-right: 0;
}

.topbar-social-links ul li a{
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover{
	color: var(--accent-color);
}

.topbar-social-links ul li a i{
	font-size: 20px;
	color: inherit
}

header.main-header{
	background-color: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	position: relative;
	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: var(--secondary-color);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
}

.navbar{
	padding: 15px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 2px;
	position: relative;
}

.main-menu ul li a{
	font-size: 15px;
	font-weight: 500;
	padding: 14px 15px !important;
	color: var(--primary-color);
	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{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px 20px 20px 0;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--primary-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 220px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 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(--accent-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn{
	margin-left: 50px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px 8px 8px 0;
}

.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(--primary-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: 15px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 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(--accent-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 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: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%), url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 140px 0;
}

.hero.hero-video{
	position: relative;
	overflow: hidden;
}

.hero.hero-video::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%);
    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-video.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-video.hero-slider-layout .hero-slide{
	position: relative;
    padding: 140px 0;
}

.hero.hero-video.hero-slider-layout .hero-slide::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-video.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-video.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 40px;
	text-align: center;
	z-index: 2;
}

.hero.hero-video.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-video.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
}

.hero-content .section-title p,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-btn{
	margin-bottom: 60px;
}

.hero-btn .btn-default.btn-highlighted{
	margin-left: 40px;
}

.hero-content-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.company-support-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.company-support-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.company-support-item:hover .icon-box{
	background-color: var(--primary-color);
}

.company-support-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.company-support-item:hover .icon-box::before{
	transform: scale(1);
}

.company-support-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.company-support-content{
	text-align: left;
	width: calc(100% - 65px);
}

.company-support-content p{
	color: var(--white-color);
	margin: 0;
}

.company-support-content p span{
	font-weight: 600;
}

/* *********************************
	Short Term Loan section
******************************** */

.short-term-loan{
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 20px;
}

.short-term-loan-cards {
  display: flex;
  justify-content: center;
}

/* Container */
.loan-cards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 660px;          /* 👈 3 cards ke liye width */
}

/* Card */
.loan-card {
  position: relative;
  width: calc(33.33% - 11px); /* 👈 ek row mein 3 cards */
  height: 110px;              /* compact height */
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* Image */
.loan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Text on image */
.loan-card h5 {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #ffffff;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: 13px;
}

/* Overlay */
.loan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

/* Hover effects */
.loan-card:hover img {
  transform: scale(1.08);
}

.loan-card:hover::after {
  opacity: 1;
}



.short-term-loan-btn {
	text-align: center;
	margin-top: 50px;

}


/* ****************************************
		Our Services 
**************************************** */

/* Services Card */
.services {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on whole card */
.services:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Services Image */
.services-image {
  border-radius: 14px;
  overflow: hidden;
}

/* Image itself (NO SIZE CHANGE) */
.services-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* Image hover zoom */
.services:hover .services-image img {
  transform: scale(1.06);
}

/* Content center alignment */
.services-content {
  text-align: center;
  padding: 15px 10px;
}

/* Heading */
.services-content h3 {
  margin-bottom: 6px;
}

/* Paragraph */
.services-content p {
  margin: 0;
  font-size: 14px;
}




/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 50px 0;
}

.about-image{
	position: relative;
	overflow: hidden;
}

.about-img figure{
	width: 100%;
	display: block;
}

.about-img{
	padding-right: 80px;
}

.about-img figure{
	position: relative;
	/* border-radius: 999px 999px 0px 0px; */
	border-radius: 20px;
	padding: 0 0 12px 12px;
}

.about-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 12px;
	border: 1px solid var(--divider-color);
	/* border-radius: 999px 999px 0px 0px; */
	border-radius: 20px;
	width: 100%;
	height: 100%;
}

.about-img img{
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	/* border-radius: 999px 999px 0px 0px;
	 */
	 border-radius: 20px;
}

.company-processing-box{
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(100%);
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 8px;
	animation: processingmoveobject 3s infinite linear alternate;
}

@keyframes processingmoveobject{
	50%{
		right: 50px;
	}
}

.company-processing-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 8px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;	
}

.company-processing-box .icon-box img{
	max-width: 24px;
}

.company-processing-content{
	width: calc(100% - 45px);
}

.company-processing-content p{
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.about-company-testimonial{
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
	transform: translateY(-100%);
}

.about-testimonial-slider{
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	padding: 15px 20px;
	width: 100%;
	max-width: 270px;
	overflow: hidden;
}

.about-testimonial-slider::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	background: var(--accent-color) url('../images/about-testimonial-quote.svg') no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

.about-testimonial-slider .swiper-wrapper{
	cursor: none;
}

.about-testimonial-item p{
	margin: 0;
}

.about-testimonial-item p span{
	font-weight: 600;
}

.about-content{
	margin-left: 30px;
}

.about-list-btn{
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	height: 100%;
}

.about-content-list{
	margin-bottom: 30px;
}

.about-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-content-list ul li{
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 25px;
}

.about-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-content-list ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url("../images/icon-about-list.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.about-content-counter{
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
}

.about-counter-item{
	border-bottom: 1px solid var(--white-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.about-counter-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.about-counter{
	margin-bottom: 10px;
}

.about-counter h2{
	font-size: 30px;
	font-weight: 600;
	color: var(--accent-color);
}

.about-counter-content p{
	font-size: 18px;
	text-transform: capitalize;
	margin: 0;
}


/* ***********************************
		Custom Alert Css  
*********************************** */
/* ECS Custom Alert Modal */
.ecs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ecs-modal {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  border-radius: 12px;
  animation: ecsScale 0.3s ease;
}

@keyframes ecsScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ecs-modal-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.ecs-modal-icon.success {
  color: #28a745;
}

.ecs-modal-icon.error {
  color: #dc3545;
}

.ecs-modal-btn {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  background: #28a745;
  color: #fff;
  cursor: pointer;
}

.ecs-modal-btn.error {
  background: #dc3545;
}
/* *******************************
		Loading Spinner Css  
*******************************/
.ecs-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* initially hidden */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ecs-spinner {
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* *************************************
		Whats-app Icon css    
************************************ */

.whats-app {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.whats-app:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Loan Calculator Sticky Icon */
.loan-calc-icon {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--accent-color, #ff6b00);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.loan-calc-icon:hover {
    transform: scale(1.1);
    background-color: var(--primary-color, #222);
    color: white;
}

/************************************/
/***      06. Our Services css	  ***/
/************************************/

.our-services{
	background: url('../images/section-bg-shape-2.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 20px;
}

.service-item{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.service-item:before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 500px 500px 0 0;
    height: 100%;
    width: 100%;
    z-index: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover:before{
    top: 0;
	border-radius: 0;
	opacity: 1;
}

.service-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item:hover .icon-box{
	background-color: var(--white-color);
}

.service-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box::before{
	transform: scale(1);
}

.service-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.service-content{
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content{
	border-color: var(--dark-divider-color);
}

.service-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content h3{
	color: var(--white-color);
}

.service-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content p{
	color: var(--white-color);
}

.service-btn{
	position: relative;
	z-index: 1;
}

.redmore-btn{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.redmore-btn:hover{
	color: var(--white-color);
}

.redmore-btn::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 18px;
	color: var(--accent-color);
	line-height: normal;
	transform: translateY(-50%) rotate(-45deg);
	width: 18px;
	height: 18px;
	transition: all 0.3s ease-in-out;
}

.redmore-btn:hover::before{
	transform: translateY(-50%) rotate(0deg);
	color: var(--white-color);
}

/* ================================
   Loan Features Section
================================ */

.loan-features{
	background: var(--light-bg-color);
	padding: 100px 0;
}

.loan-feature-list{
	list-style: none;
	padding: 0;
	margin: 0;
}

.loan-feature-list li{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px 20px 20px 45px;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.6em;
	transition: all 0.4s ease-in-out;
}

.loan-feature-list li strong{
	color: var(--heading-color);
	font-weight: 600;
}

.loan-feature-list li::before{
	content: "✓";
	position: absolute;
	left: 20px;
	top: 22px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

/* Hover Effect */
.loan-feature-list li:hover{
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.loan-feature-list li:hover,
.loan-feature-list li:hover strong{
	color: var(--white-color);
}

.loan-feature-list li:hover::before{
	background-color: var(--white-color);
	color: var(--primary-color);
}


/* ================================
   Loan Eligibility Section
================================ */

.loan-eligibility{
	padding: 100px 0;
	background: var(--white-color);
}

.eligibility-list{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.eligibility-list li{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 25px 25px 25px 0;
	padding: 30px;
	font-size: 16px;
	line-height: 1.6em;
	transition: all 0.4s ease-in-out;
}

.eligibility-list li strong{
	display: block;
	font-size: 17px;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 5px;
}

/* Hover Effect */
.eligibility-list li:hover{
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-6px);
}

.eligibility-list li:hover,
.eligibility-list li:hover strong{
	color: var(--white-color);
}

/* Responsive */
@media (max-width: 991px){
	.eligibility-list{
		grid-template-columns: 1fr;
	}
}

/* ================================
   How to Apply Section
================================ */

.loan-apply{
	background: var(--secondary-color);
	padding: 100px 0;
}

.apply-step-item{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	height: calc(100% - 30px);
}

/* Hover Background */
.apply-step-item::before{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	height: 100%;
	width: 100%;
	border-radius: 500px 500px 0 0;
	opacity: 0;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.apply-step-item:hover::before{
	top: 0;
	border-radius: 0;
	opacity: 1;
}

/* Step Number */
.step-number{
	position: relative;
	font-size: 42px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 20px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.apply-step-item h3{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.apply-step-item p{
	position: relative;
	margin: 0;
	line-height: 1.6em;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

/* Hover Text Color */
.apply-step-item:hover .step-number,
.apply-step-item:hover h3,
.apply-step-item:hover p{
	color: var(--white-color);
}


/* ================================
   Interest & Charges Section
================================ */

.loan-charges{
	background: var(--white-color);
	padding: 100px 0;
}

.charges-table-wrapper{
	background-color: var(--white-color);
	box-shadow: 0px 0px 40px 0px #0000000D;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
}
 
.charges-table{
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}

.charges-table thead th{
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 18px 25px;
	font-weight: 600;
	text-align: left;
}

.charges-table tbody td{
	padding: 18px 25px;
	border-bottom: 1px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
}

.charges-table tbody tr:nth-child(even){
	background-color: var(--light-bg-color);
}

.charges-table tbody tr:hover td{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.charges-note{
	margin-top: 20px;
	font-size: 15px;
	line-height: 1.6em;
	color: var(--text-color);
}

/* *************************************
				Our Story
************************************ */


.our-story{
	background: url('../images/section-bg-shape-2.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 20px;
}

.story-item{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.story-item:before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 500px 500px 0 0;
    height: 100%;
    width: 100%;
    z-index: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.story-item:hover:before{
    top: 0;
	border-radius: 0;
	opacity: 1;
}

.story-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.story-item:hover .icon-box{
	background-color: var(--white-color);
}

.story-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.story-item:hover .icon-box::before{
	transform: scale(1);
}

.story-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.story-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.story-content{
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.story-item:hover .story-content{
	border-color: var(--dark-divider-color);
}

.story-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.story-item:hover .story-content h3{
	color: var(--white-color);
}

.story-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.story-item:hover .story-content p{
	color: var(--white-color);
}

.story-item .story-btn{
	position: relative;
	z-index: 1;
}

.redmore-btn{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.redmore-btn:hover{
	color: var(--white-color);
}

.redmore-btn::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 18px;
	color: var(--accent-color);
	line-height: normal;
	transform: translateY(-50%) rotate(-45deg);
	width: 18px;
	height: 18px;
	transition: all 0.3s ease-in-out;
}

.redmore-btn:hover::before{
	transform: translateY(-50%) rotate(0deg);
	color: var(--white-color);
}


/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/


.why-choose-us{
	padding: 50px 0 100px;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-bottom: 30px;
}

.why-choose-item{
	width: calc(50% - 15px);
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.why-choose-item:nth-last-child(-n + 2){
	border-bottom: none;
	padding-bottom: 0;
}

.why-choose-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 25px;
	z-index: 1;
}

.why-choose-item-content{
	width: calc(100% - 65px);
}

.why-choose-item-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.why-choose-images{
	background: url('../images/why-choose-image-bg-shape.svg') no-repeat;
	background-position: bottom  left;
	background-size: auto;
	padding: 0 0 45px 90px;
}

.why-choose-img{
	position: relative;
	padding: 45px 45px 45px 0;
}

.why-choose-img::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px 20px 20px 0;
	width: 220px;
	height: 100%;
	z-index: -1;
}

.why-choose-img figure{
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
}

.why-choose-img img{
	width: 100%;
	border: 6px solid var(--white-color);
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
}

/* *****************************
	Why choose us 
***************************** */
/* Why Choose Us Card */
.why-choose-us {
  position: relative;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

/* Hover effect (card lift optional – UI safe) */
.why-choose-us:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Icon box – SAME AS features-item */
.why-choose-us .icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Overlay circle animation – SAME */
.why-choose-us .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

/* Hover trigger – SAME */
.why-choose-us:hover .icon-box::before {
  transform: scale(1);
}

/* Icon image – SAME */
.why-choose-us .icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
}

/* Content */
.why-choose-us-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.why-choose-us-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


/* ********************************
			City Services
****************************** */

/* ===== City Cards Styling ===== */

.city-services .city-card {
  width: 100%;
  height: 90px; /* reduced height */
  border-radius: 10px;
  background-color: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}

/* Hover Effect */
.city-services .city-card:hover {
  background-color: #0a8f3c; /* solid green */
  color: #ffffff;           /* text visible */
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Prevent text hiding */
.city-services .city-card * {
  pointer-events: none;
}


/************************************/
/***     08. How It Work css	  ***/
/************************************/

.how-it-work{
	background: url('../images/section-bg-shape.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 200px;
}

.how-work-item{
	position: relative;
	background-color: var(--white-color);
	border-radius: 30px 30px 30px 0;
	padding: 30px 30px 60px 30px;
	z-index: 1;
}

.how-work-item::before{
	content: '';
	position: absolute;
	bottom: -50%;
	right: 0;
	transform: translateY(20%);
	background: url('../images/how-work-box-arrow-1.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: auto;
	width: 137px;
	height: 137px;
}

.how-it-work .col-lg-3:last-child .how-work-item::before{
	display: none;
}

.how-it-work .col-lg-3:nth-child(even) .how-work-item::before{
	bottom: auto;
	top: -50%;
	background: url('../images/how-work-box-arrow-2.svg');
	transform: translateY(-20%);
}

.how-it-work .col-lg-3:nth-child(even) .how-work-item{
	padding: 60px 30px 30px 30px;
	margin-top: 140px;
}

.how-work-no{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	background-color: var(--accent-color);
	border: 8px solid var(--secondary-color);
	border-radius: 50%;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-no{
	background-color: var(--primary-color);
}

.how-it-work .col-lg-3:nth-child(even) .how-work-no{
	bottom: auto;
	top: 0;
	transform: translate(-50%, -50%);
}

.how-work-no h3{
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
}

.how-work-item .icon-box{
	margin-bottom: 20px;
}

.how-work-item .icon-box img{
	max-width: 40px;
}

.how-work-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.how-work-content p{
	margin: 0;
}

/************************************/
/***     09. Our Features css	  ***/
/************************************/

.our-features{
	padding: 50px 0 100px;
}

.features-item{
	position: relative;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.features-item::before{
	content: '';
    position: absolute;
    right: -15px;
    top: 50%;
	transform: translateY(-50%);
	width: 1px;
    height: 140px;
	background: var(--divider-color);
}

.our-features .col-lg-3:last-child .features-item::before{
	display: none;
}

.features-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 20px;
}

.features-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.features-item:hover .icon-box::before{
	transform: scale(1);
}

.features-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
}

.features-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.features-content p{
	margin: 0;
}

.our-counter-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 120px;
	padding: 0;
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 50px;
}

.counter-item{
	position: relative;
	width: calc(20% - 96px);
	text-align: center;
}

.counter-item::before{
	content: '';
    position: absolute;
    right: -60px;
    top: 0;
	bottom: 0;
	width: 1px;
    height: 100%;
	background: var(--divider-color);
}

.counter-item:last-child:before{
	display: none;
}

.counter-item h2{
	font-size: 30px;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.counter-item p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       10. CTA Box css  	  ***/
/************************************/

.cta-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.cta-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.cta-box-img{
	position: relative;
	padding: 20px;
}

.cta-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.cta-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.cta-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.cta-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.cta-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.cta-box-content .section-title p,
.cta-box-content .section-title h2{
	color: var(--white-color);
}

.cta-box-btn{
	position: relative;
}

.cta-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.cta-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.cta-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}


/* ***********************************
	Service Loan css 
*********************************** */


.sl-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.sl-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.sl-box-img{
	position: relative;
	padding: 20px;
}

.sl-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.sl-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.sl-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.sl-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.sl-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.sl-box-content .section-title p,
.sl-box-content .section-title h2{
	color: var(--white-color);
}

.sl-box-btn{
	position: relative;
}

.sl-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.sl-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.sl-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}
/* 
**************************************
		Personal Loan Css   
************************************** */


.pl-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.pl-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.pl-box-img{
	position: relative;
	padding: 20px;
}

.pl-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.pl-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.pl-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.pl-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.pl-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.pl-box-content .section-title p,
.pl-box-content .section-title h2{
	color: var(--white-color);
}

.pl-box-btn{
	position: relative;
}

.pl-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.pl-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.pl-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}

/* ************************************
	Disclaimer css 
************************************ */
.ecs-disclaimer-section {
  padding: 40px 0;
}

.ecs-disclaimer-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ecs-disclaimer-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e2a38;
}

.ecs-disclaimer-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 15px;
}

.ecs-disclaimer-accept {
  font-weight: 500;
  color: #1e2a38;
  margin-top: 25px;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
}

/* ********************************
		Privacy Policy css  
******************************** */
.ecs-privacy-policy-section {
  padding: 40px 0;
}

.ecs-privacy-policy-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.section-title h2, 
.section-title h3 {
  margin-bottom: 20px;
}

.privacy-subtitle {
  /* font-size: 20px; */
  margin-top: 25px;
  margin-bottom: 10px;
  position: relative;
}

.privacy-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #16ac1d;
  margin-top: 5px;
  border-radius: 2px;
}

.ecs-privacy-policy-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 15px;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.ecs-privacy-accept {
  font-weight: 500;
  color: #1e2a38;
  margin-top: 25px;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
}


/* ***********************************
	Terms & Conditions Css  
********************************** */

.ecs-terms-section {
  padding: 80px 0;
}

.ecs-terms-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
}

.terms-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.terms-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.terms-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.terms-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-top: 35px;
  margin-bottom: 10px;
  position: relative;
}

.terms-subtitle::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #16ac1d;
  margin-top: 6px;
  border-radius: 2px;
}
/* 
*******************************
	Grievance css   
******************************* */


/* ************************************
	Disclosure css 
************************************ */
.ecs-disclosure-section {
  padding: 40px 0;
}

.ecs-disclosure-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ecs-disclosure-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e2a38;
}

.ecs-disclosure-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 15px;
}

.ecs-disclosure-accept {
  font-weight: 500;
  color: #1e2a38;
  margin-top: 25px;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
}


/* 
************************************
Travel Loan css 
************************************ */


.tl-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.tl-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.tl-box-img{
	position: relative;
	padding: 20px;
}

.tl-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.tl-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.tl-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.tl-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.tl-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.tl-box-content .section-title p,
.tl-box-content .section-title h2{
	color: var(--white-color);
}

.tl-box-btn{
	position: relative;
}

.tl-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.tl-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.tl-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}

/* *******************************
	Emergency Loan Css 
****************************** */


.el-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.el-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.el-box-img{
	position: relative;
	padding: 20px;
}

.el-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.el-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.el-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.el-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.el-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.el-box-content .section-title p,
.el-box-content .section-title h2{
	color: var(--white-color);
}

.el-box-btn{
	position: relative;
}

.el-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.el-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.el-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}


/* *************************************
		Home Renovation Loan css
*************************************** */



.hrl-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.hrl-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.hrl-box-img{
	position: relative;
	padding: 20px;
}

.hrl-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.hrl-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.hrl-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.hrl-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.hrl-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.hrl-box-content .section-title p,
.hrl-box-content .section-title h2{
	color: var(--white-color);
}

.hrl-box-btn{
	position: relative;
}

.hrl-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.hrl-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.hrl-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}

/* *********************************
		Loan for clear bill css 
******************************** */



.cbl-box{
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
	padding: 100px 0 200px;
}	

.cbl-box-images{
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.cbl-box-img{
	position: relative;
	padding: 20px;
}

.cbl-box-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--dark-divider-color);
    border-radius: 30px 30px 30px 0;
    width: 280px;
    height: 270px;
}

.cbl-box-img  figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.cbl-box-img img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.cbl-contact-circle{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.cbl-contact-circle img{
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.cbl-box-content .section-title p,
.cbl-box-content .section-title h2{
	color: var(--white-color);
}

.cbl-box-btn{
	position: relative;
}

.cbl-box-btn::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject{
	50%{
		right: 45%;
	}
}

.cbl-box-btn .btn-default.btn-highlighted{
	background: var(--white-color);
	color: var(--primary-color);
}

.cbl-box-btn .btn-default.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}

/* ***********************************
		Bank Details Css  
********************************** */
.bank-details {
  background: var(--white-color);
}

/* Main Green Box */
.bank-details-wrapper {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern like screenshot */
.bank-details-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 90px 90px;
  opacity: 0.25;
  pointer-events: none;
}

/* Heading */
.bank-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 15px;
}

.bank-content h2 span {
  color: var(--accent-color);
}

/* Text */
.scan-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

/* UPI List */
.upi-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.upi-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--white-color);
}

.upi-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* UPI ID */
.upi-id {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-top: 15px;
}

/* QR Box */
.qr-box {
  background: var(--white-color);
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
}

.qr-box img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* *****************************
     Bank Info css 
****************************** */

	.bank-info {
  background: var(--white-color);
}

/* Card Base */
.bank-info-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider-color);
  transition: all 0.3s ease-in-out;
}


/* Icon */
.bank-info-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.bank-info-text h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.bank-info-text p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.bank-info-text p span {
  font-size: 13px;
  color: var(--text-color);
  opacity: 0.8;
}
	
.bank-info-card {
  position: relative;
  overflow: hidden;
}

.bank-info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.bank-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.bank-info-card:hover::after {
  border-color: var(--primary-color);
}

.bank-info-card:hover .bank-info-icon {
  background: var(--primary-color);
  transform: rotate(360deg) scale(1.05);
}

.bank-info-icon {
  transition: all 0.4s ease;
}

.bank-info-card:hover .bank-info-text h5 {
  color: var(--primary-color);
}

.bank-info-card:hover .bank-info-text p {
  color: var(--heading-color);
}

.bank-info-text h5,
.bank-info-text p {
  transition: color 0.3s ease;
}

/* ******************************
    APR Css
****************************** */

/* Section White Background */
.apr-info-box {
  background: var(--white-color);
}

/* Green Box */
.apr-box-wrapper {
  background: var(--primary-color);
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Subtle pattern inside box */
.apr-box-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 90px 90px;
  opacity: 0.25;
  pointer-events: none;
}

/* Title */
.apr-box-wrapper h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white-color);
}

/* Paragraph */
.apr-box-wrapper p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Section blocks */
.apr-block {
  margin-top: 28px;
}

/* Sub-headings */
.apr-block h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white-color);
}

/* List */
.apr-block ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.apr-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.apr-block ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* **********************************
     Loan Calculator
********************************** */

.loan-calculator {
  background: var(--white-color);
}

/* Wrapper Card */
.calculator-wrapper {
  background: var(--white-color);
  border-radius: 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider-color);
  padding: 40px;
}

/* Input Side */
.calculator-field {
  margin-bottom: 24px;
}

.field-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.field-head h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-wrap .prefix-symbol {
  position: absolute;
  left: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.input-wrap .suffix-symbol {
  position: absolute;
  right: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

input[type="number"].calc-num-input {
  width: 100%;
  padding: 10px 40px 10px 28px;
  border: 1.5px solid var(--divider-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  background: #fbfdfc;
  transition: all 0.2s ease;
  outline: none;
  -moz-appearance: textfield;
}

input[type="number"].calc-num-input:focus {
  border-color: var(--accent-color);
  background: var(--white-color);
  box-shadow: 0 0 0 3px rgba(0, 154, 94, 0.1);
}

input[type="number"].calc-num-input::-webkit-outer-spin-button,
input[type="number"].calc-num-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--divider-color);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  margin-top: 10px;
}

.calculator-field input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: var(--divider-color);
  border-radius: 10px;
}

.calculator-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: 0 2px 6px rgba(0, 154, 94, 0.3);
  transition: transform 0.1s ease;
}

.calculator-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calculator-field input[type="range"]::-moz-range-track {
  height: 6px;
  background: var(--divider-color);
  border-radius: 10px;
}

.calculator-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 154, 94, 0.3);
}

.field-range {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-color);
  margin-top: 6px;
  font-weight: 500;
}

/* Fixed display badge */
.fixed-display-badge {
  background: var(--secondary-color);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  display: inline-block;
  width: 100%;
}

/* Result Box */
.calculator-result-card {
  background: #fcfdfe;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid var(--divider-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.result-box {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--divider-color);
}

.result-box.highlight {
  background: var(--primary-color);
  border-color: var(--primary-color);
  grid-column: span 2;
  text-align: center;
}

.result-box.highlight .r-label {
  color: rgba(255, 255, 255, 0.75);
}

.result-box.highlight .r-value {
  color: var(--white-color);
  font-size: 26px;
}

.r-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.r-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.cost-breakdown {
  border-top: 1.5px solid var(--divider-color);
  padding-top: 15px;
  margin-top: 5px;
}

.cost-breakdown h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--divider-color);
  font-size: 14px;
  color: var(--text-color);
}

.breakdown-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 12px;
}

.breakdown-row span:last-child {
  font-weight: 600;
  color: var(--primary-color);
}

.breakdown-row:last-child span:last-child {
  font-size: 16px;
}

.disclaimer-box {
  background: #fff9f5;
  border: 1.5px solid #ffe8d9;
  border-radius: 12px;
  padding: 16px;
  font-size: 12.5px;
  color: #7d5032;
  line-height: 1.6;
  margin-top: 20px;
}

.disclaimer-box strong {
  color: #c95200;
}

.policy-badge {
  background: #eaf7f2;
  border: 1px solid #ccefe2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--accent-color);
  margin-top: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-calculator-apply {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #d5e800; /* Vibrant Yellow/Lime */
  color: #000000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  border: none;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(213, 232, 0, 0.2);
}

.btn-calculator-apply:hover {
  background-color: #c2d400;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(213, 232, 0, 0.3);
}

/* Amortization Schedule Toggle & Table */
.btn-amortization-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: 1.5px solid var(--divider-color);
  border-radius: 12px;
  color: var(--primary-color);
  font-weight: 700;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.2s ease;
}

.btn-amortization-toggle:hover {
  background: #f5f9f7;
  border-color: var(--accent-color);
}

.btn-amortization-toggle .toggle-icon {
  transition: transform 0.2s ease;
  font-size: 10px;
}

.btn-amortization-toggle.active .toggle-icon {
  transform: rotate(90deg);
}

.amortization-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-top: 10px;
}

.amortization-wrapper.show {
  max-height: 500px;
  overflow-y: auto;
}

.amortization-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}

.amortization-table th, .amortization-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--divider-color);
}

.amortization-table th {
  background: #f2f7f5;
  color: var(--primary-color);
  font-weight: 700;
}

.amortization-table tr:hover {
  background: #fafcfb;
}

.suffix-symbol.inside-input {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
  pointer-events: none;
}

.input-wrap {
  position: relative;
}

/************************************/
/***      11. Our Pricing css  	  ***/
/************************************/

.our-pricing{
	padding: 50px 0 100px;
}

.pricing-item{
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item.highlighted-box{
	position: relative;
	background: var(--primary-color);
	overflow: hidden;
}

.pricing-item.highlighted-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(30%, -30%);
	background: linear-gradient(180deg, rgba(40, 108, 94, 0) 0%, rgba(255, 255, 255, 0.12) 100%);
	border-radius: 50%;
	width: 150px;
	height: 150px;
	z-index: 0;
}

.pricing-header{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.pricing-header h2{
	background-color: var(--accent-color);
	border-radius: 15px 15px 15px 0;
	display: inline-block;
	font-size: 54px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	padding: 10px 20px;
}

.pricing-header h2 sub{
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	bottom: 0;
}

.pricing-body{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-item.highlighted-box .pricing-body{
	border-color: var(--dark-divider-color);
}

.pricing-title{
	margin-bottom: 30px;
}

.pricing-title h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.pricing-item.highlighted-box .pricing-title h3{
	color: var(--white-color);
}

.pricing-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-list ul li{
    position: relative;
    font-weight: 500;
    color: var(--primary-color);
    padding-left: 35px;
    margin-bottom: 20px;
}

.pricing-item.highlighted-box .pricing-list ul li{
	color: var(--white-color);
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

.pricing-list ul li::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-about-list.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 22px;
    height: 22px;
}

.pricing-item.highlighted-box .pricing-list ul li::before{
	filter: brightness(0) invert(1);
}

.pricing-btn .btn-default.btn-highlighted{
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.pricing-btn .btn-default.btn-highlighted:hover{
	border-color: var(--white-color);
}

/************************************/
/***     12. Support Team css  	  ***/
/************************************/

.support-team{
	background: var(--secondary-color);
	padding: 100px 0;
}

.support-team-images{
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.support-team-images figure{
	margin-left: -40px;
	border-radius: 50%;
	overflow: hidden;
}

.support-team-images figure:first-child{
	margin-left: 0;
}

.support-team-images figure::after{
	z-index: 0;
}

.support-team-images img{
	max-width: 120px;
	border: 4px solid var(--secondary-color);
	border-radius: 50%;
}

.support-team-contact{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px 80px;
}

.support-team-item{
	position: relative;
	display: flex;
	align-items: center;
	width: calc(50% - 40px);
}

.support-team-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	border: 1px solid var(--white-color);
	width: 1px;
	height: 100%;
}

.support-team-item:nth-child(2n + 2):before{
	display: none;
}

.support-team-item:nth-child(odd){
	flex-direction: row-reverse;
	text-align: right;
}

.support-team-item .icon-box{
	position: relative;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
}

.support-team-item:nth-child(odd) .icon-box{
	margin-left: 20px;
	margin-right: 0;
}

.support-team-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.support-team-item:hover .icon-box::before{
	transform: scale(1);
}

.support-team-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.support-team-content{
	width: calc(100% - 80px);
}

.support-team-content p{
	text-transform: capitalize;
	margin-bottom: 10px;
}

.support-team-content h3{
	font-size: 18px;
	font-weight: 600;
}

/************************************/
/***      13. Our FAQs css  	  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	margin-right: 20px;
}

.faqs-content-list{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faqs-content-list:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0
}

.faqs-content-list h3{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-left: 30px;
}

.faqs-content-list h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-about-list.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.faqs-content-list p{
	margin: 0;
}

.our-faq-section .accordion-item{
	border: 1px solid var(--divider-color);
	border-radius: 12px 12px 12px 0;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--primary-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
   background-color: var(--primary-color);
   color: var(--white-color);
   border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: transparent;
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f077';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -50%);
	background-color: var(--white-color);
	border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
	line-height: normal;
    width: 24px;
    height: 24px;
    padding: 5px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item .accordion-button.collapsed::after{
	transform: translate(0px, -50%) rotate(-180deg);
	background-color: var(--primary-color);
    color: var(--white-color);
}

.our-faq-section .accordion-header .accordion-button span{
	margin-right: 5px;
}

.our-faq-section .accordion-item .accordion-body{
	background-color: var(--primary-color);
	padding: 20px 50px 20px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***   14. Our Testimonial  css   ***/
/************************************/

.our-testimonial{
	background: url(../images/section-bg-shape.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: 100% auto;
    padding: 100px 0 200px;
}

.our-testimonial-content{
	margin-right: 10px;
}

.testimonial-slider{
	position: relative;
	padding: 130px 0;
}

.testimonial-slider::before{
	content: '';
    position: absolute;
    left: 0;
    top: 0;
	right: 0;
    background-color: var(--accent-color);
    border-radius: 30px 30px 30px 0;
    width: 470px;
    height: 100%;
	margin: 0 auto;
	z-index: 0;
}

.testimonial-box{
	position: relative;
}

.testimonial-slider .testimonial-box::before{
	content: '';
    position: absolute;
    left: 0;
    top: 15px;
	right: 0;
	bottom: 0;
    background-color: var(--white-color);
	border: 1px solid var(--divider-color);
    border-radius: 30px 30px 30px 0;
    width: 98%;
    height: 100%;
	margin: 0 auto;
	z-index: 1;
}

.testimonial-slider .testimonial-box::after{
	content: '';
    position: absolute;
    left: 0;
    top: 30px;
	right: 0;
	bottom: 0;
    background-color: var(--white-color);
	border: 1px solid var(--divider-color);
    border-radius: 30px 30px 30px 0;
    width: 96%;
    height: 100%;
	margin: 0 auto;
	z-index: 0;
}

.testimonial-slider .swiper{
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 12px 37.1px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
	overflow-y: visible;
	z-index: 2;
}


.testimonial-header{
	margin-bottom: 50px;
}

.testimonial-content p{
	margin: 0;
}

.testimonial-body{
    display: inline-flex;
    align-items: center;
}

.author-image{
    margin-right: 20px;
}

.author-image img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-content{
	text-align: left;
    width: calc(100% - 70px);
}

.author-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	top: -90px;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--white-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
	z-index: 99;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 10px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background-color: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '\f062';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	transform: rotate(90deg);
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 100%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(270deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before{
	color: var(--white-color);
}

.testimonial-slider .testimonial-pagination{
	position: absolute;
    bottom: -80px;
	text-align: center;
	z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

/************************************/
/***      15. Our Blog  css       ***/
/************************************/

.our-blog{
	padding: 50px 0 100px;
}

.highlighted-blog-post{
	position: relative;
}

.highlighted-blog-featured-img a{
	position: relative;
	display: block;
	border-radius: 30px 30px 30px 0;
	cursor: none;
	overflow: hidden;
}

.highlighted-blog-featured-img a:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.highlighted-blog-featured-img img{
	width: 100%;
	aspect-ratio: 1/ 0.93;
	object-fit: cover;
}

.highlighted-blog-body{
	max-width: 480px;
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 20px;
	z-index: 1;
}

.article-post-meta{
	margin-bottom: 10px;
}

.article-post-meta ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-post-meta ul li a i{
	margin-right: 10px;
}

.article-post-meta ul li a{
	color: var(--white-color);
	text-transform: capitalize;
}

.highlighted-blog-content{
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.highlighted-blog-content h3{
	color: var(--white-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.highlighted-blog-content h3 a{
	color: inherit;
}

.highlighted-blog-content p{
	color: var(--white-color);
	margin: 0;
}

.highlighted-blog-btn .redmore-btn{
	color: var(--white-color);
}

.highlighted-blog-btn .redmore-btn:hover{
	color: var(--accent-color);
}

.highlighted-blog-btn .redmore-btn::before{
	color: var(--white-color);
}

.highlighted-blog-btn .redmore-btn:hover:before{
	color: var(--accent-color);
}

.article-post-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.article-post{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 10px 30px 0px #00000008;
	border-radius: 30px 30px 30px 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.article-post .article-featured-image{
	width: 50%;
	height: 100%;
}

.article-post .article-featured-image figure{
	height: 100%;
}

.article-post .article-featured-image a{
	height: 100%;
	cursor: none;
	display: block;
	border-radius: 30px 0 0 0;
	overflow: hidden;
}

.article-post .article-featured-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 30px 0 0 0;
	transition: all 0.5s ease-in-out;
}

.article-post:hover .article-featured-image img{
	transform: scale(1.1);
}

.article-post-body{
	display: flex;
    width: 50%;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
}

.article-post-body .article-post-meta ul li a i,
.article-post-body .article-post-meta ul li a{
	color: var(--text-color);
}

.article-post-content{
	margin-bottom: 20px;
}

.article-post-content h3{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.article-post-content h3 a{
	color: inherit;
}

.article-post-content p{
	margin: 0;
}

.article-post-btn .redmore-btn:hover{
	color: var(--primary-color);
}

.article-post-btn .redmore-btn:hover:before{
	color: var(--primary-color);
}

/************************************/
/***   		16. Footer css        ***/
/************************************/

.main-footer{
	background: var(--primary-color);
	padding: 60px 0 0;
}

.footer-btn {
	margin-left: 20px;
	margin-top: 15px;
}
.footer-btn :hover{
	border: 1px solid var(--white-color);
}

.footer-about-btn {
	margin-top: 15px;
}
.footer-about-btn :hover{
	border: 1px solid var(--white-color);
}



.footer-newsletter-box{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-newsletter-item{
	display: flex;
	align-items: center;
}

.footer-newsletter-item .icon-box{
	margin-right: 30px;
}

.footer-newsletter-item .icon-box img{
	max-width: 40px;
}

.footer-newsletter-item-content{
	width: calc(100% - -70px);
}

.footer-newsletter-item-content h3{
	font-size: 24px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-newsletter-form .form-group{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-newsletter-form .form-group .form-control{
	width: 70%;
	padding: 13px 20px;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	color: var(--text-color);
	border-radius: 12px 12px 12px 0;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted{
	background: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted:hover{
	border-color: var(--white-color);
}

.footer-logo{
	margin-bottom: 40px;
}

.footer-logo img{
	max-width: 180px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-links h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.lowercase-text {
  text-transform: lowercase;
}


.footer-links ul{
	margin: 0;
	padding: 0;
	padding-left: 20px;
}

.footer-links ul li{
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li::marker{
	color: var(--accent-color);
}

.footer-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

.footer-contact-details .footer-info-box{
	position: relative;
	padding-left: 40px;
    margin-bottom: 25px;
}

.footer-contact-details .footer-info-box:last-child{
	margin-bottom: 0;
}

.footer-info-box .icon-box{
	position: absolute;
	top: -2px;
	left: 0;
}

.footer-info-box .icon-box img{
	max-width: 24px;
}

.footer-info-box-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links{
	text-align: right;
}

.footer-social-links ul{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	color: var(--accent-color);
}

.footer-social-links ul li a i{
	font-size: 20px;
	color: inherit
}

/************************************/
/***     17. About us Page css	  ***/
/************************************/

.page-header{
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.00463538) 12.16%, rgba(0, 79, 76, 0.9) 82.49%), url(../images/page-header-bg.jpg);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 160px 0;
}

.page-header-box{
	text-align: left;
}

.page-header-box h1{
	display: inline-block;
	font-size: 56px;
    letter-spacing: -0.005em;
    font-weight: 700;
	color: var(--white-color);
	margin-bottom: 20px;
	cursor: none;
}

.page-header-box h1 span{
	font-weight: 500;
}

.page-header-box ol{
	margin: 0;
	display: inline-flex;
	justify-content: left;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	text-transform: capitalize;
	padding-right: 15px;
}

.page-header-box ol li.breadcrumb-item:last-child{
	padding-right: 0;
}

.page-header-box ol li.breadcrumb-item::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.page-header-box ol .breadcrumb-item:last-child:before{
	display: none;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.vision-mission{
	background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: auto;
    padding: 100px 0 50px;
}

.vision-mission-box{
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 80px;
}

.vision-mission-nav{
	margin-bottom: 60px;
	text-align: center;
}

.vision-mission-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-flex;
	border: none;
}

.vision-mission-nav ul li{
	margin-right: 40px;
}

.vision-mission-nav ul li:last-child{
	margin-right: 0;
}

.vision-mission-nav ul li .nav-link{
	background-color: var(--white-color);
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	border-radius: 12px 12px 12px 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 13px 30px;
	transition: all 0.4s ease-in-out;
}

.vision-mission-nav ul li:hover .nav-link,
.vision-mission-nav ul li .nav-link.active{
	background-color: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
}

.vision-image figure{
	display: block;
	border-radius: 40px;
}

.vision-image img{
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 40px;
}

.vision-mission-content{
	margin-left: 30px;
}

.vision-mission-content-title{
	margin-bottom: 30px;
}

.vision-mission-content-title h3{
	font-size: 18px;
	font-weight: 600;
}

.vision-mission-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.vision-mission-content-list ul li{
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 25px;
}

.vision-mission-content-list ul li:last-child{
	margin-bottom: 0;
}

.vision-mission-content-list ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url("../images/icon-about-list.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.our-team{
	background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: bottom -1px center;
    background-size: contain;
    padding: 100px 0 20px;
}

.team-member-item{
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	object-position: top center;
	transition: all 0.5s ease-out;
}

.team-member-item:hover .team-image img{
	transform: scale(1.1);
}

.team-social-list{
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}

.team-social-list .team-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-list .team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-list .team-social-icon ul li:last-child{
	margin-right: 0px;
}

.team-social-list .team-social-icon a,
.team-social-list .team-social-link a{
	display: block;
	width: 30px;
	height: 30px;
	background: var(--white-color);
	border-radius: 4px 4px 4px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-social-list .team-social-icon a:hover,
.team-social-list .team-social-link a:hover{
	background: var(--accent-color);
}

.team-social-list .team-social-icon a i,
.team-social-list .team-social-link a i{
	font-size: 16px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.team-social-list .team-social-icon a:hover i,
.team-social-list .team-social-link a:hover i{
	color: var(--white-color);
}

.team-social-list .team-social-icon{
	width: calc(100% - 50px);
	margin: 0;
	transform: translateX(30px);
	opacity: 0;
	transition: all 0.4s ease-out;
	margin-left: 10px;
}

.team-member-item:hover .team-social-list .team-social-icon{
	transform: translateX(0);
	opacity: 1;
}

.team-content{
	padding: 20px;
	text-align: center;
}

.team-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

.our-testimonial.about-testimonial{
	background: var(--white-color);
	padding: 50px 0 100px;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.our-faqs.service-faqs{
	padding: 50px 0 100px;
}

/************************************/
/***   19. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
	margin-bottom: 40px;
}

.service-catagery-list h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	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{
	display: block;
    position: relative;
	text-transform: capitalize;
	line-height: normal;
    background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 10px;
	padding: 16px 40px 16px 16px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::after{
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    right: 16px;
    top: 50%;
	transform: translateY(-50%);
    font-size: 20px;
	line-height: normal;
    color: var(--accent-color);
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
	color: var(--white-color);
}

.sidebar-cta-box{
	background-color: var(--primary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
}

.cta-content{
	margin-bottom: 30px;
}

.cta-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.cta-content p{
	color: var(--white-color);
	margin: 0;
}

.sidebar-cta-item{
	display: flex;
	align-items: center;
	background-color: var(--dark-divider-color);
	border-radius: 10px 10px 10px 0;
	padding: 10px 20px;
}

.sidebar-cta-item .icon-box{
	position: relative;
	background-color: var(--white-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
    margin-right: 15px;
    transition: all 0.5s ease-in-out;
}

.sidebar-cta-item:hover .icon-box{
	background-color: transparent;
}

.sidebar-cta-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-item:hover .icon-box::before{
	transform: scale(1);
}

.sidebar-cta-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.sidebar-cta-item-content{
	width: calc(100% - 75px);
}

.sidebar-cta-item-content p{
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.sidebar-cta-item-content h3{
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
}

.service-featured-image{
	margin-bottom: 30px;
}

.service-featured-image figure{
	display: block;
}

.service-featured-image img{
	aspect-ratio: 1 / 0.55;
    object-fit: cover;
	border-radius: 30px 30px 30px 0;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry .section-title h2{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 40px;
	margin-bottom: 20px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0px;
}

.service-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.service-entry ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 30px;
}

.service-entry ul li:before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-about-list.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 22px;
    height: 22px;
}

.service-entry-image figure{
    display: block;
}

.service-entry-image img{
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
    border-radius: 20px 20px 20px 0;
}

.service-features{
	margin-bottom: 30px;
}

.service-features .section-title{
	margin-bottom: 30px;
}

.service-features .section-title p{
	margin-top: 20px;
}

.service-policy{
	margin-bottom: 30px;
}

.service-policy-title{
	margin-bottom: 30px;
}

.service-policy-box{
	display: flex;
	flex-wrap: wrap;
}

.service-policy-item{
	position: relative;
	width: 50%;	
}

.service-policy-item.policy-box-1{
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 0 30px 30px 0;
}

.service-policy-item.policy-box-2{
	border-bottom: 1px solid var(--divider-color);
	padding: 0 0 30px 30px;
}

.service-policy-item.policy-box-3{
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 30px 30px 30px 0;
}

.service-policy-item.policy-box-4{
	border-bottom: 1px solid var(--divider-color);
	padding: 30px 0 30px 30px;
}

.service-policy-item:nth-last-of-type(-n + 2){
	border-bottom: none;
	padding-bottom: 0;
}

.policy-item-title{
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
}

.policy-item-no{
	position: absolute;
	top: 0;
	left: 0;
}

.policy-item-title h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 0;
}

.policy-item-content p{
	margin-bottom: 0;
}

.service-features-box{
	background-color: var(--secondary-color);
	border-radius: 20px 20px 20px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 40px;
}

.service-features-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.service-features-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
    margin-right: 15px;
    transition: all 0.5s ease-in-out;
}

.service-features-item:hover .icon-box{
	background-color: transparent;
}

.service-features-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-features-item:hover .icon-box::before{
	transform: scale(1);
}

.service-features-item .icon-box img{
	position: relative;
	max-width: 33px;
	z-index: 1;
}

.service-features-content{
	width: calc(100% - 83px);
}

.service-features-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-features-content p{
	margin-bottom: 0;
}

/************************************/
/***      20. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.blog-item{
	background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    box-shadow: 0px 10px 30px 0px #00000008;
    border-radius: 30px 30px 30px 0;
    height: calc(100% - 40px);
	margin-bottom: 40px;
}

.blog-item .blog-featured-image{
	position: relative;
}

.blog-item .blog-featured-image figure a{
    cursor: none;
    display: block;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.blog-item .blog-featured-image img{
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
    transition: all 0.5s ease-in-out;
}

.blog-item:hover .blog-featured-image img{
	transform: scale(1.1);
}

.blog-item-meta{
	position: absolute;
	top: 30px;
	left: 30px;
	background-color: var(--accent-color);
	border-radius: 10px 10px 10px 0;
	width: 50px;
	height: 50px;
	text-align: center;
	padding: 5px;
	z-index: 1;
	cursor: none;
}

.blog-item-meta h3{
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
}

.blog-item-meta p{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1em;
	margin: 0;
}

.blog-item-body{
    padding: 30px;
}

.blog-item-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.blog-item-content h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-item-content h3 a{
    color: inherit;
}

.blog-item-content p{
    margin: 0;
}

.blog-item-btn .redmore-btn:hover{
	color: var(--primary-color);
}

.blog-item-btn .redmore-btn:hover:before{
	color: var(--primary-color);
}

.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(--accent-color);
	border-radius: 10px 10px 10px 0;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	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{
	padding: 100px 0;
}

.post-single-meta ol li.breadcrumb-item{
	font-size: 18px;
}

.post-single-meta ol li i{
    font-size: 16px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
}

.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{
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
	font-weight: 400;
}

.post-entry h1{
	font-size: 56px;
}

.post-entry h2{
	font-size: 40px;
}

.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(--primary-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: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat;
	background-position: 35px 30px;
    background-size: 60px;
    border-radius: 30px 30px 30px 0;
    padding: 30px 30px 30px 120px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px 10px 10px 0;
    padding: 10px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
	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;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 6px 6px 6px 0;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}

/************************************/
/***      22. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***    23. Team Single css 	  ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-member-details-box{
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
	margin-bottom: 60px;
}

.team-member-image figure{
	display: block;
	border-radius: 30px 30px 30px 0;
}

.team-member-image img{
	width: 100%;
	border-radius: 30px 30px 30px 0;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
}

.team-member-details{
	height: 100%;
	margin-left: 30px;
}

.member-detail-header{
	margin-bottom: 20px;
}

.member-detail-header h2{
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.005em;
	margin-bottom: 10px;
}

.member-detail-header h2 span{
	font-weight: 400;
}

.member-detail-header p{
	text-transform: capitalize;
	color: var(--accent-color);
	margin: 0;
}

.member-detail-content{
	margin-bottom: 40px;
}

.member-detail-content p{
	margin-bottom: 20px;
}

.member-detail-content p:last-child{
	margin-bottom: 0;
}

.member-detail-body{
	margin-bottom: 40px;
}

.member-detail-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-detail-body ul li{
	display: flex;
	margin-bottom: 25px;
}

.member-detail-body ul li:last-child{
	margin-bottom: 0;
}

.member-detail-body ul li span{
	width: 25%;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 15px;
}

.member-social-list ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 6px 6px 6px 0;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
	background-color: var(--primary-color);
}

.member-social-list ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.team-member-skills{
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
}

.member-solution-title,
.member-skills-title{
	margin-bottom: 30px;
}

.member-solution-title h2,
.member-skills-title h2{
	font-size: 40px;
}

.team-member-skills .skills-progress-bar{
	margin-bottom: 35px;
}

.team-member-skills .skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skillbar .skill-data .skill-title{
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
}

.skillbar .skill-data .skill-no{
	color: var(--primary-color);
	margin-left: 20px;
}

.skillbar .skill-progress{
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 99px;
	position: relative;
}

.skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.about-member-solution{
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
}

.member-solution-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.member-solution-list ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 30px;
}

.member-solution-list ul li:before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-about-list.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 22px;
    height: 22px;
}

.about-member-details-content{
	margin-top: 60px;
}

.about-member-details-content p{	
	margin: 0;
}

/************************************/
/***      24. Page Pricing css 	  ***/
/************************************/

.page-pricing{
	padding: 100px 0 70px;
}

/************************************/
/***       25. FAQs Page css      ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 20px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 30px;
	margin-bottom: 40px;
}

.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{
	display: block;
    position: relative;
	background-color: var(--white-color);
    color: var(--text-color);
	border-radius: 14px;
    text-transform: capitalize;
	padding: 15px;
    transition: all 0.3s ease-in-out
}

.faq-catagery-list ul li:hover a{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.faq-catagery-list ul li a::after{
	content: '\f061';
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
	transform: translateY(-50%);
    font-size: 18px;
	line-height: normal;
    color: var(--primary-color);
    width: 18px;
    height: 18px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	color: var(--white-color);
}

.page-faqs-catagery{
	margin-left: 30px;
}

.page-faqs .page-faq-accordion{
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
	margin-bottom: 0;
}

.page-faqs .faq-accordion-title{
	margin-bottom: 30px;
}

.page-faqs .faq-accordion-title h2{
	font-size: 40px;
}

/************************************/
/***    26. Contact us Page css   ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-information .section-title{
	margin-bottom: 40px;
}

.contact-info-list{
	margin-bottom: 40px;
}

.contact-list-item{
	display: flex;
	align-items: center;
}

.contact-info-list .contact-list-item .icon-box img{
	max-width: 24px;
}

.contact-info-list .contact-list-item .icon-box{
	margin-right: 16px;
}

.contact-list-content{
	width: calc(100% - 40px);
}

.contact-list-item .contact-list-content p{
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0;
}

.contact-cta-box{
	position: relative;
}

.contact-cta-image{
	position: relative;
	border-radius: 20px 20px 20px 0;
	overflow: hidden;
}

.contact-cta-image::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 40.47%, rgba(0, 79, 76, 0.009) 40.47%, rgba(0, 79, 76, 0.9) 91.67%);
	z-index: 1;
}

.contact-cta-image img{
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
    width: 100%;
	transition: all 0.4s ease-in-out;
}

.contact-info-box{
	position: absolute;
	top: 60px;
	left: 60px;
	right: 60px;
	display: inline-block;
	max-width: 280px;
	z-index: 2;
}

.contact-cta-box:hover figure img{
	transform: scale(1.05);
}

.contact-info-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.contact-info-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item .icon-box img{
	max-width: 40px;
}

.contact-info-item .icon-box{
	margin-right: 20px;
}

.contact-info-item .contact-info-content{
	width: calc(100% - 60px);
}

.contact-info-item .contact-info-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-item .contact-info-content h3{
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
}

.contact-us-form{
	background-color: var(--secondary-color);
	padding: 50px;
	border-radius: 30px 30px 30px 0;
	margin-left: 30px;
}

.contact-us-form form .form-control{
	font-size: 15px;
	line-height: normal;
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 15px 15px 15px 0;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 20px;
}

.contact-us-form form .form-control::placeholder{
	color: var(--text-color);
	text-transform: capitalize;
}

.contact-us-form form .contact-form-btn .btn-default{
	width: 100%;
	justify-content: center;
}

.contact-form-btn .btn-default:hover{
	background-color: var(--primary-color);
}

.contact-us-form form .contact-form-btn .btn-default::before{
	display: none;
	transition: all 0.4s ease-in-out;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe{
	height: 180px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 180px;
	filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe:hover iframe{
	filter: grayscale(0);
}

/************************************/
/*** 	   27. 404 Page css       ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	max-width: 50%;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 40px;
	cursor: none;
}

.error-page-content-heading h2 span{
	font-weight: 700;
	color: var(--accent-color);
}

.error-page-content-body p{
	margin-bottom: 30px;
}

/************************************/
/***      28. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}
}

@media only screen and (max-width: 991px){
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 60px;
	}

	.section-row .section-title{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 40px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title h1{
		font-size: 44px;
	}

	.section-title h2{
		font-size: 34px;
	}

	.hero{
		padding: 90px 0;
	}

	.hero.hero-video.hero-slider-layout .hero-slide{
		padding: 90px 0;
	}

	.hero.hero-video.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-btn{
		margin-bottom: 40px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-image{
		margin-bottom: 40px;
	}

	.about-img{
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
		padding-right: 0px;
	}

	.about-content{
		margin-left: 0px;
	}

	.about-content-list ul li{
		margin-bottom: 20px;
	}

	.about-content-counter{
		padding: 30px;
	}

	.about-counter{
		margin-bottom: 5px;
	}

	.about-counter h2{
		font-size: 26px;
	}

	.our-services{
		padding: 50px 0 0px;
		background-size: auto;
	}

	.service-item{
		padding: 30px;
	}

	.service-item .icon-box{
		width: 60px;
		height: 60px;
		margin-bottom: 20px;
	}

	.service-item .icon-box img{
		max-width: 32px;
	}

	.service-content{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-us{
		padding: 25px 0 50px;
	}

	.why-choose-content{
		margin-bottom: 40px;
	}

	.why-choose-body{
		gap: 15px 30px;
		margin-bottom: 40px;
	}

	.why-choose-item{
		padding-bottom: 15px;
	}

	.why-choose-images{
		background-size: 25% auto;
        padding: 0 0 50px 80px;
	}

	.why-choose-img{
		position: relative;
		padding: 30px 30px 30px 0;
	}

	.how-it-work{
		padding: 50px 0 110px;
	}

	.how-work-item{
		padding: 20px 20px 50px 20px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item{
		padding: 50px 20px 20px 20px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item::before{
		top: auto;
		left: 0;
		bottom: -50%;
		background: url(../images/how-work-box-arrow-2.svg);
		transform: translateY(10%) rotate(160deg);
	}

	.our-features{
		padding: 25px 0 50px;
	}

	.our-features .col-lg-3:nth-child(2n + 2) .features-item::before{
		display: none;
	}

	.features-content h3{
		margin-bottom: 15px;
	}

	.our-counter .row{
		padding: 0 15px;
	}

	.our-counter-box{
		gap: 30px;
		margin-top: 0px;
		padding-top: 30px;
	}

	.counter-item{
		width: calc(20% - 24px);
	}

	.counter-item::before{
		right: -15px;
	}

	.counter-item h2{
		font-size: 26px;
		margin-bottom: 5px;
	}

	.counter-item p{
		font-size: 13px;
	}

	.cta-box{
		padding: 50px 0 160px;
	}

	.cta-box-images{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.cta-box-img img{
		aspect-ratio: 1 / 0.7;
	}

	.cta-box-btn::before{
		transform: translateX(20%);
	}

	.our-pricing{
		padding: 25px 0 25px;
	}

	.pricing-item{
		padding: 30px;
	}

	.pricing-header{
		margin-bottom: 20px;
	}

	.pricing-header h2{
		font-size: 42px;
		padding: 10px 20px;
	}

	.pricing-header h2 sub{
		font-size: 16px;
	}

	.pricing-body{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-title{
		margin-bottom: 20px;
	}

	.support-team{
		padding: 50px 0;
	}

	.support-team-images{
		margin-bottom: 40px;
	}

	.support-team-image img{
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0px;
		margin-bottom: 40px;
	}

	.faqs-content-list{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faqs-content-list h3{
		margin-bottom: 10px;
	}

	.our-faq-section .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.our-testimonial{
		padding: 50px 0 110px;
	}

	.our-testimonial-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-slider{
		padding: 100px 0;
	}

	.testimonial-slider .swiper{
		padding: 30px;
	}

	.testimonial-header{
		margin-bottom: 40px;
	}

	.testimonial-btn{
		top: -70px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before{
		font-size: 16px;
	}

	.testimonial-slider .testimonial-pagination{
		bottom: -80px;
	}

	.our-blog{
		padding: 25px 0 50px;
	}

	.highlighted-blog-post{
		margin-bottom: 30px;
	}

	.highlighted-blog-featured-img img{
		aspect-ratio: 1 / 0.7;
	}

	.highlighted-blog-body{
		max-width: 100%;
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.article-post .article-featured-image img{
		aspect-ratio: 1 / 0.7;
	}

	.main-footer{
		padding: 40px 0 0;
	}

	.footer-newsletter-box{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.footer-newsletter-item{
		margin-bottom: 30px;
	}

	.footer-newsletter-item-content h3{
		font-size: 22px;
	}

	.footer-newsletter-form .form-group .form-control{
		width: 75%;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-links{
		margin-bottom: 40px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-copyright{
		padding: 20px 0;
		margin-top: 0px;
	}

	.page-header{
		padding: 100px 0;
	}

	.page-header-box h1{
		font-size: 44px;
		margin-bottom: 10px;
	}

	.vision-mission{
		padding: 50px 0 25px;
	}

	.vision-mission-box{
		padding: 50px;
	}

	.vision-mission-nav{
		margin-bottom: 40px;
	}

	.vision-mission-nav ul li .nav-link{
		padding: 12px 25px;
	}

	.vision-image{
		margin-bottom: 30px;
	}

	.vision-mission-content{
		margin-left: 0px;
	}

	.vision-mission-content-title{
		margin-bottom: 20px;
	}

	.vision-mission-content-list ul li{
		margin-bottom: 20px;
		padding-left: 30px;
	}

	.vision-mission-content-list ul li::before{
		width: 20px;
		height: 20px;
	}

	.our-team{
		padding: 50px 0 0px;
		background-size: auto;
	}

	.team-image img{
		aspect-ratio: 1 / 0.9;
	}

	.team-content{
		padding: 15px;
	}

	.our-testimonial.about-testimonial{
		padding: 25px 0 50px;
	}

	.page-services{
		padding: 50px 0 20px;
	}
	
	.our-faqs.service-faqs{
		padding: 25px 0 50px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 30px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.cta-content{
		margin-bottom: 20px;
	}

	.cta-content h3{
		margin-bottom: 10px;
	}

	.service-featured-image{
		margin-bottom: 20px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry h2{
		font-size: 34px;
	}

	.service-policy{
		margin-bottom: 20px;
	}

	.service-policy-item.policy-box-1{
		padding: 0 20px 20px 0;
	}

	.service-policy-item.policy-box-2{
		padding: 0 0 20px 20px;
	}

	.service-policy-item.policy-box-3{
		padding: 20px 20px 20px 0;
	}

	.service-policy-item.policy-box-4{
		padding: 20px 0 20px 20px;
	}

	.service-policy-item:nth-last-of-type(-n + 2){
		padding-bottom: 0;
	}

	.service-features{
		margin-bottom: 20px;
	}

	.policy-item-title{
		margin-bottom: 10px;
	}

	.service-features-box{
		padding: 30px;
	}

	.service-features-content h3{
		margin-bottom: 5px;
	}

	.service-entry ul{
		gap: 15px;
	}

	.service-entry ul li:before{
		width: 20px;
		height: 20px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.blog-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.blog-item-meta{
		top: 20px;
		left: 20px;
	}

	.blog-item-body{
		padding: 20px;
	}

	.blog-item-content{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 30px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 34px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-details-box{
		padding: 30px;
		margin-bottom: 40px;
	}

	.team-member-image{
		margin-bottom: 30px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.9;
	}

	.team-member-details{
		margin-left: 0px;
	}

	.member-detail-header h2{
		font-size: 34px;
	}

	.member-detail-content{
		margin-bottom: 30px;
	}

	.member-detail-body{
		margin-bottom: 30px;
	}

	.member-detail-body ul li{
		margin-bottom: 20px;
	}

	.team-member-skills{
		padding: 30px;
		margin-bottom: 30px;
	}

	.member-solution-title,
	.member-skills-title{
		margin-bottom: 20px;
	}

	.member-solution-title h2,
	.member-skills-title h2{
		font-size: 34px;
	}

	.team-member-skills .skills-progress-bar{
		margin-bottom: 25px;
	}

	.about-member-solution{
		padding: 30px;
	}

	.member-solution-list ul{
		gap: 20px;
	}

	.about-member-details-content{
		margin-top: 40px;
	}

	.page-pricing{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 30px;
		margin-bottom: 30px;
	}

	.page-faqs-catagery{
		margin-left: 0px;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-faqs .faq-accordion-title{
		margin-bottom: 20px;
	}

	.page-faqs .faq-accordion-title h2{
		font-size: 34px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-information{
		margin-bottom: 30px;
	}

	.contact-us-form{
		padding: 30px;
		margin-left: 0px;
	}

	.contact-info-box{
		top: 40px;
		left: 40px;
		right: 40px;
	}

	.contact-info-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 400px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 34px;
	}	

	.error-page-content-body p{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px){

	.topbar-info-content{
		display: none;
	}

	.topbar-social-links{
		text-align: center;
	}

	.topbar-social-links ul li{
		margin-right: 10px;
	}

	.topbar-social-links ul li a i{
		font-size: 18px;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 28px;
	}

	.hero-btn{
        margin-bottom: 30px;
    }

	.hero-btn .btn-default{
		margin-right: 5px;
		margin-bottom: 15px;
	}

	.hero-btn .btn-default.btn-highlighted{
		margin: 0px;
	}

	.company-support-item{
		width: 100%;
	}

	.about-list-btn{
		display: block;
		height: auto;
		margin-bottom: 30px;
	}

	.about-content-counter{
        padding: 20px;
    }

	.about-counter-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-counter h2{
        font-size: 22px;
    }

	.about-counter-content p{
		font-size: 16px;
	}

	.about-image{
		padding-bottom: 30px;
	}

	.about-img{
        max-width: 100%;
    }

	.company-processing-box{
		right: 90px;
	}

	.company-processing-box .icon-box{
		width: 30px;
		height: 30px;
	}

	.company-processing-box .icon-box img{
		max-width: 20px;
	}

	.company-processing-content{
		width: calc(100% - 40px);
	}

	.about-company-testimonial{
		right: 50%;
		transform: translate(50%, 0%);
	}

	.about-testimonial-slider{
		padding: 10px 15px;
		max-width: 270px;
	}

	.about-testimonial-item p{
		font-size: 13px;
	}

	.service-item{
        padding: 20px;
    }

	.why-choose-body{
        margin-bottom: 30px;
    }

	.why-choose-item .icon-box{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 50px);
	}

	.why-choose-images{
        background-size: 35% auto;
        padding: 0 0 35px 0px;
    }

	.why-choose-img{
        padding: 20px 20px 20px 0;
    }

	.why-choose-img::before{
		width: 140px;
	}

	.why-choose-item-content h3{
		font-size: 16px;
	}

	.how-it-work{
		background-size: 100% auto;
        padding: 50px 0;
    }

	.how-work-item{
		margin-bottom: 50px;
	}

	.how-work-item::before{
		display: none;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item{
		padding: 20px 20px 50px 20px;
		margin-top: 0px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-no{
		bottom: 0;
		top: auto;
		transform: translate(-50%, 50%);
	}

	.features-item .icon-box{
		width: 60px;
		height: 60px;
	}

	.features-item .icon-box img{
		max-width: 32px;
	}



	.our-counter-box{
		justify-content: center;
	}

	.counter-item{
        width: calc(33.33% - 20px);
    }

	.counter-item:nth-child(3n + 3):before{
       display: none;
    }

	.cta-box{
        padding: 50px 0 70px;
        background-size: 100% auto;
    }

	.cta-box-images{
		padding: 0 0 50px 0;
        margin-right: 0px;
        margin-bottom: 30px;
    }

	.cta-box-img{
		padding: 15px 0 0 15px;
	}

	.cta-box-img::before{
		width: 200px;
		height: 180px;
	}

	.cta-contact-circle{
		right: 50%;
		transform: translateX(50%);
	}

	.cta-contact-circle img{
		max-width: 100px;
	}

	.cta-box-btn::before{
		right: 0;
        transform: translateX(0%);
		width: 100px;
    }

	@keyframes ctamoveobject{
		50%{
			right: 20px;
		}
	}

	.pricing-item{
        padding: 20px;
    }

	.pricing-header h2{
        font-size: 30px;
    }

	.support-team-image{
		margin-bottom: 30px;
	}

	.support-team-images figure{
		margin-left: -20px;
	}

	.support-team-contact{
		gap: 30px;
	}

	.support-team-item{
		width: 100%;
	}

	.support-team-item:nth-child(odd){
		flex-direction: initial;
		text-align: left;
	}

	.support-team-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.support-team-item:nth-child(odd) .icon-box{
		margin-left: 0px;
		margin-right: 20px;
	}

	.support-team-content{
		width: calc(100% - 70px);
	}

	.support-team-content p{
		margin-bottom: 5px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 16px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		font-size: 12px;
		width: 20px;
    	height: 20px;
	}

	.our-faq-section .accordion-item .accordion-body{
        padding: 15px;
    }

	.testimonial-slider::before{
		width: 80%;
	}

	.testimonial-slider .swiper{
        padding: 20px;
    }

	.testimonial-slider .testimonial-box::before{
		top: 10px;
	}

	.testimonial-slider .testimonial-box::after{
		top: 20px;
	}

	.testimonial-header{
        margin-bottom: 30px;
    }

	.highlighted-blog-featured-img img{
        aspect-ratio: 1 / 1.1;
    }

	.highlighted-blog-content{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.article-post{
		display: block;
	}

	.article-post .article-featured-image{
		width: 100%;
		height: auto;
	}

	.article-post .article-featured-image a{
		border-radius: 30px 30px 0 0px;
	}

	.article-post .article-featured-image img{
		height: auto;
		border-radius: 30px 30px 0 0px;
	}

	.article-post-body{
		width: 100%;
		display: block;
	}

	.main-footer{
        padding: 30px 0 0;
    }

	.footer-newsletter-box{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.footer-newsletter-item .icon-box{
		margin-right: 20px;
	}

	.footer-newsletter-item-content{
		width: calc(100% - 60px);
	}

	.footer-newsletter-item-content h3{
		font-size: 20px;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted{
		padding: 15px 20px;
	}

	.footer-newsletter-form .form-group .form-control{
        width: 60%;
    }

	.footer-links{
        margin-bottom: 30px;
    }

	.footer-links h3{
        margin-bottom: 15px;
    }

	.footer-copyright{
        padding: 15px 0;
    }

	.footer-copyright-text{
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-social-links{
		text-align: center;
	}

	.page-header{
        padding: 80px 0;
    }

	.page-header-box h1{
        font-size: 30px;
    }

	.vision-mission-box{
        padding: 30px 15px;
    }

	.vision-mission-nav{
        margin-bottom: 30px;
    }

	.vision-mission-nav ul li{
		margin-right: 10px;
	}

	.vision-mission-nav ul li .nav-link{
		font-size: 14px;
        padding: 8px 15px;
    }

	.vision-mission-content-title h3{
		font-size: 16px;
	}

	.service-catagery-list{
        padding: 20px;
    }

	.sidebar-cta-box{
        padding: 20px;
    }

	.service-featured-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry{
        margin-bottom: 30px;
    }

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry-list{
		margin-bottom: 20px;
	}

	.service-policy-item{
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-policy-item:nth-last-of-type(-n + 2){
        padding-bottom: 20px;
		border-bottom: 1px solid var(--divider-color);
    }

	.service-policy-item:last-child{
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.service-policy-item.policy-box-1{
		border-right: none;
		padding-right: 0;
	}

	.service-policy-item.policy-box-2{
		padding-left: 0;
	}

	.service-policy-item.policy-box-3{
		padding-top: 0;
		padding-right: 0;
		border-right: none;
	}

	.service-policy-item.policy-box-4{
		padding-top: 0;
		padding-left: 0;
	}

	.service-features-box{
        padding: 20px;
		gap: 20px;
    }

	.service-features-item{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        background-size: 35px;
        padding: 55px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.team-member-details-box{
        padding: 20px;
        margin-bottom: 30px;
    }

	.team-member-image img{
        aspect-ratio: 1 / 1.09;
    }

	.member-detail-header{
		margin-bottom: 15px;
	}

	.member-detail-header h2{
        font-size: 28px;
    }

	.member-detail-body ul li{
		display: block;
	}

	.member-detail-body ul li span{
		font-size: 16px;
	}

	.team-member-skills{
        padding: 20px;
    }

	.member-solution-title h2,
	.member-skills-title h2{
        font-size: 28px;
    }

	.about-member-solution{
        padding: 20px;
    }

	.member-solution-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.about-member-details-content{
        margin-top: 30px;
    }

	.faq-catagery-list{
		padding: 20px;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 30px;
	}

	.page-faqs .faq-accordion-title h2{
		font-size: 28px;
	}

	.contact-information .section-title{
		margin-bottom: 30px;
	}

	.contact-info-list{
		margin-bottom: 30px;
	}

	.contact-cta-image img{
		aspect-ratio: 1 / 0.8;
	}

	.contact-info-box{
        top: 20px;
        left: 20px;
        right: 20px;
		max-width: 100%;
    }

	.contact-info-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.contact-info-item .icon-box{
		margin-right: 16px;
	}

	.contact-info-item .icon-box img{
		max-width: 34px;
	}

	.contact-info-item .contact-info-content{
		width: calc(100% - 50px);
	}

	.contact-us-form{
        padding: 20px;
    }

	.contact-us-form form .form-control{
		padding: 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

	.error-page-content-heading h2{
        font-size: 28px;
	}
}

/* ***********************************
	Enhanced QR Card Styling
********************************** */
.qr-card-enhanced {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 30px;
  display: inline-block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 340px;
  width: 100%;
}

.qr-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.qr-header h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.qr-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 5px 0 0 0;
}

.qr-box-enhanced {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: inline-block;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}

.qr-box-enhanced img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.scan-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
  animation: laserScan 3s linear infinite;
  z-index: 2;
}

.supported-apps {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.supported-apps span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}
/* CCFC Sidebar and Features Extracted Styles */
.ccfc_home {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.ccfc_sidebar {
    width: 250px;
    background-color: #f4f4f4;
    padding: 20px;
    transition: all 0.3s ease;
}

.ccfc_sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ccfc_sidebar ul li {
    margin-bottom: 15px;
}

.ccfc_sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.ccfc_sidebar ul li a:hover, 
.ccfc_sidebar ul li a.active {
    background-color: var(--primary-color, #019946);
    color: white;
}

.ccfc_sidebar ul li a.active i {
    color: white;
}

.ccfc_sidebar ul li a i {
    margin-right: 10px;
    color: var(--primary-color, #019946);
    font-style: normal;
}

.ccfc_main_content {
    flex-grow: 1;
    padding: 30px;
    background: #fff;
}

.ccfc_content_section {
    display: none;
}

.ccfc_content_section.active {
    display: block;
}

.ccfc_features_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ccfc_feature {
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.ccfc_apply_btn {
    display: inline-block;
    background-color: var(--primary-color, #019946);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    text-align: center;
    font-size: 16px;
    margin: 20px 0 10px 0;
    cursor: pointer;
    font-weight: bold;
}

.ccfc_apply_btn:hover {
    background-color: #017a38;
}

.ccfc_charges_table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    overflow-x: auto;
    display: block;
    border: 1px solid #cfe2ff;
    margin-bottom: 20px;
}

.ccfc_charges_table th {
    background-color: #f1f7ff;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.ccfc_charges_table td {
    padding: 15px 20px;
    border-top: 1px solid #e6f0ff;
    color: #3c4043;
    font-size: 16px;
}

.ccfc_charges_table tr:nth-child(even) {
    background-color: #f8fbff;
}

.ccfc_mobile_sidebar_toggle {
    display: none;
    background-color: var(--primary-color, #019946);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .ccfc_home {
        flex-direction: column;
    }
    
    .ccfc_sidebar {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .ccfc_sidebar.active {
        max-height: 500px;
        padding: 20px;
    }
    
    .ccfc_mobile_sidebar_toggle {
        display: block;
    }
    
    .ccfc_main_content {
        padding: 20px;
    }
    
    .ccfc_features_list {
        flex-direction: column;
    }
    
    .ccfc_feature {
        width: 100%;
    }
}

       
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        @media (max-width: 576px) {
            header {
                padding: 20px 15px;
            }
            header h1 {
                font-size: 1.8em;
            }
        }
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        h2 {
            color: #2c3e50;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 20px;
        }
        .insurance-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .insurance-types {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .insurance-types {
                grid-template-columns: 1fr;
            }
        }
        .insurance-type {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .insurance-type:hover {
            transform: translateY(-5px);
        }
        .insurance-type h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        .terms-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .terms-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .terms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 400px) {
            .terms-grid {
                grid-template-columns: 1fr;
            }
        }
        .term-item {
            padding: 10px;
            background-color: #f0f7fc;
            border-radius: 5px;
        }
        .term-item strong {
            color: var(--accent-color);
            display: block;
            margin-bottom: 5px;
        }
        .faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        .faq-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: bold;
            color: #2c3e50;
            cursor: pointer;
        }
        .who-should-buy {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .who-should-buy ul {
            padding-left: 20px;
        }
        .who-should-buy li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background-color: #e3f2fd;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .apply-button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            margin: 20px 0;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
            border: none;
            cursor: pointer;
        }
        .apply-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        .cta-section {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        @media (max-width: 576px) {
            .apply-button {
                display: block;
                width: 100%;
                padding: 12px 20px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .ccfc_home {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .ccfc_sidebar {
            width: 250px;
            background-color: #f4f4f4;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .ccfc_sidebar ul {
            list-style-type: none;
        }
        
        .ccfc_sidebar ul li {
            margin-bottom: 15px;
        }
        
        .ccfc_sidebar ul li a {
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .ccfc_sidebar ul li a:hover, 
        .ccfc_sidebar ul li a.active {
            background-color: #e0e0e0;
        }
        
        .ccfc_sidebar ul li a i {
            margin-right: 10px;
            color: #007bff;
        }
        
        .ccfc_main_content {
            flex-grow: 1;
            padding: 30px;
        }
        
        .ccfc_content_section {
            display: none;
        }
        
        .ccfc_content_section.active {
            display: block;
        }
        
        .ccfc_features_list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ccfc_feature {
            display: flex;
            align-items: center;
            background-color: #e9ecef;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .ccfc_apply_btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border: none;
            text-align: center;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            font-weight: bold;
        }
        
        .ccfc_apply_btn:hover {
            background-color: #3e8e41;
        }
        
        .ccfc_charges_table {
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            border-radius: 8px;
            overflow-x: auto;
            display: block;
            border: 1px solid #cfe2ff;
            margin-bottom: 20px;
        }
        
        .ccfc_charges_table th {
            background-color: #f1f7ff;
            text-align: left;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .ccfc_charges_table td {
            padding: 15px 20px;
            border-top: 1px solid #e6f0ff;
            color: #3c4043;
            font-size: 16px;
        }
        
        .ccfc_charges_table tr:nth-child(even) {
            background-color: #f8fbff;
        }
        
        .ccfc_highlight {
            background-color: #4a86e8;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .ccfc_mobile_sidebar_toggle {
            display: none;
            background-color: #000000;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .ccfc_home {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .ccfc_home {
                flex-direction: column;
            }
            
            .ccfc_sidebar {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                padding: 0;
            }
            
            .ccfc_sidebar.active {
                max-height: 500px;
                padding: 20px;
            }
            
            .ccfc_mobile_sidebar_toggle {
                display: block;
            }
            
            .ccfc_main_content {
                padding: 20px;
            }
            
            .ccfc_features_list {
                flex-direction: column;
            }
            
            .ccfc_feature {
                width: 100%;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
            
            .contact-form, 
            .contact-info {
                width: 100%;
                margin-bottom: 30px;
            }
            
            iframe {
                width: 100% !important;
                height: 250px !important;
            }
        }
        
        @media (max-width: 576px) {
            .ccfc_main_content {
                padding: 15px;
            }
            
            .ccfc_charges_table th,
            .ccfc_charges_table td {
                padding: 10px;
                font-size: 14px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        
        /* Contact section responsive styles */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-form,
        .contact-info {
            flex: 1 1 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .info-item svg {
            margin-right: 10px;
            min-width: 24px;
        }
        
        /* Navbar responsive styles */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 20px;
        }
        
        .logo img {
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
        }
        
        .nav-link {
            margin-left: 20px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #4CAF50;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            margin: 4px 0;
            transition: 0.3s;
        }
        
        /* Hero section responsive styles */
        .hero {
            background-color: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Footer responsive styles */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1 1 200px;
            margin-bottom: 20px;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #ffffff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            color: #ecf0f1;
            transition: color 0.3s;
        }
        
        .social-link:hover {
            color: #4CAF50;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        
        /* Responsive navbar */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-link {
                margin: 10px 0;
                font-size: 18px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        /* Hero responsiveness */
        @media (max-width: 576px) {
            .hero {
                padding: 50px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
    


       
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        @media (max-width: 576px) {
            header {
                padding: 20px 15px;
            }
            header h1 {
                font-size: 1.8em;
            }
        }
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        h2 {
            color: #2c3e50;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 20px;
        }
        .insurance-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .insurance-types {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .insurance-types {
                grid-template-columns: 1fr;
            }
        }
        .insurance-type {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .insurance-type:hover {
            transform: translateY(-5px);
        }
        .insurance-type h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        .terms-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .terms-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .terms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 400px) {
            .terms-grid {
                grid-template-columns: 1fr;
            }
        }
        .term-item {
            padding: 10px;
            background-color: #f0f7fc;
            border-radius: 5px;
        }
        .term-item strong {
            color: var(--accent-color);
            display: block;
            margin-bottom: 5px;
        }
        .faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        .faq-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: bold;
            color: #2c3e50;
            cursor: pointer;
        }
        .who-should-buy {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .who-should-buy ul {
            padding-left: 20px;
        }
        .who-should-buy li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background-color: #e3f2fd;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .apply-button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            margin: 20px 0;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
            border: none;
            cursor: pointer;
        }
        .apply-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        .cta-section {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        @media (max-width: 576px) {
            .apply-button {
                display: block;
                width: 100%;
                padding: 12px 20px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .ccfc_home {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .ccfc_sidebar {
            width: 250px;
            background-color: #f4f4f4;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .ccfc_sidebar ul {
            list-style-type: none;
        }
        
        .ccfc_sidebar ul li {
            margin-bottom: 15px;
        }
        
        .ccfc_sidebar ul li a {
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .ccfc_sidebar ul li a:hover, 
        .ccfc_sidebar ul li a.active {
            background-color: #e0e0e0;
        }
        
        .ccfc_sidebar ul li a i {
            margin-right: 10px;
            color: #007bff;
        }
        
        .ccfc_main_content {
            flex-grow: 1;
            padding: 30px;
        }
        
        .ccfc_content_section {
            display: none;
        }
        
        .ccfc_content_section.active {
            display: block;
        }
        
        .ccfc_features_list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ccfc_feature {
            display: flex;
            align-items: center;
            background-color: #e9ecef;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .ccfc_apply_btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border: none;
            text-align: center;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            font-weight: bold;
        }
        
        .ccfc_apply_btn:hover {
            background-color: #3e8e41;
        }
        
        .ccfc_charges_table {
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            border-radius: 8px;
            overflow-x: auto;
            display: block;
            border: 1px solid #cfe2ff;
            margin-bottom: 20px;
        }
        
        .ccfc_charges_table th {
            background-color: #f1f7ff;
            text-align: left;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .ccfc_charges_table td {
            padding: 15px 20px;
            border-top: 1px solid #e6f0ff;
            color: #3c4043;
            font-size: 16px;
        }
        
        .ccfc_charges_table tr:nth-child(even) {
            background-color: #f8fbff;
        }
        
        .ccfc_highlight {
            background-color: #4a86e8;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .ccfc_mobile_sidebar_toggle {
            display: none;
            background-color: #0c0c0c;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .ccfc_home {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .ccfc_home {
                flex-direction: column;
            }
            
            .ccfc_sidebar {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                padding: 0;
            }
            
            .ccfc_sidebar.active {
                max-height: 500px;
                padding: 20px;
            }
            
            .ccfc_mobile_sidebar_toggle {
                display: block;
            }
            
            .ccfc_main_content {
                padding: 20px;
            }
            
            .ccfc_features_list {
                flex-direction: column;
            }
            
            .ccfc_feature {
                width: 100%;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
            
            .contact-form, 
            .contact-info {
                width: 100%;
                margin-bottom: 30px;
            }
            
            iframe {
                width: 100% !important;
                height: 250px !important;
            }
        }
        
        @media (max-width: 576px) {
            .ccfc_main_content {
                padding: 15px;
            }
            
            .ccfc_charges_table th,
            .ccfc_charges_table td {
                padding: 10px;
                font-size: 14px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        
        /* Contact section responsive styles */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-form,
        .contact-info {
            flex: 1 1 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .info-item svg {
            margin-right: 10px;
            min-width: 24px;
        }
        
        /* Navbar responsive styles */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 20px;
        }
        
        .logo img {
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
        }
        
        .nav-link {
            margin-left: 20px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #4CAF50;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            margin: 4px 0;
            transition: 0.3s;
        }
        
        /* Hero section responsive styles */
        .hero {
            background-color: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Footer responsive styles */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1 1 200px;
            margin-bottom: 20px;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #ffffff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            color: #ecf0f1;
            transition: color 0.3s;
        }
        
        .social-link:hover {
            color: #4CAF50;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        
        /* Responsive navbar */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-link {
                margin: 10px 0;
                font-size: 18px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        /* Hero responsiveness */
        @media (max-width: 576px) {
            .hero {
                padding: 50px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
    


       
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        @media (max-width: 576px) {
            header {
                padding: 20px 15px;
            }
            header h1 {
                font-size: 1.8em;
            }
        }
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        h2 {
            color: #2c3e50;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 20px;
        }
        .insurance-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .insurance-types {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .insurance-types {
                grid-template-columns: 1fr;
            }
        }
        .insurance-type {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .insurance-type:hover {
            transform: translateY(-5px);
        }
        .insurance-type h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        .terms-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .terms-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .terms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 400px) {
            .terms-grid {
                grid-template-columns: 1fr;
            }
        }
        .term-item {
            padding: 10px;
            background-color: #f0f7fc;
            border-radius: 5px;
        }
        .term-item strong {
            color: var(--accent-color);
            display: block;
            margin-bottom: 5px;
        }
        .faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        .faq-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: bold;
            color: #2c3e50;
            cursor: pointer;
        }
        .who-should-buy {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        .who-should-buy ul {
            padding-left: 20px;
        }
        .who-should-buy li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background-color: #e3f2fd;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .apply-button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            margin: 20px 0;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
            border: none;
            cursor: pointer;
        }
        .apply-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        .cta-section {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        @media (max-width: 576px) {
            .apply-button {
                display: block;
                width: 100%;
                padding: 12px 20px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .ccfc_home {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .ccfc_sidebar {
            width: 250px;
            background-color: #f4f4f4;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .ccfc_sidebar ul {
            list-style-type: none;
        }
        
        .ccfc_sidebar ul li {
            margin-bottom: 15px;
        }
        
        .ccfc_sidebar ul li a {
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .ccfc_sidebar ul li a:hover, 
        .ccfc_sidebar ul li a.active {
            background-color: #e0e0e0;
        }
        
        .ccfc_sidebar ul li a i {
            margin-right: 10px;
            color: #007bff;
        }
        
        .ccfc_main_content {
            flex-grow: 1;
            padding: 30px;
        }
        
        .ccfc_content_section {
            display: none;
        }
        
        .ccfc_content_section.active {
            display: block;
        }
        
        .ccfc_features_list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ccfc_feature {
            display: flex;
            align-items: center;
            background-color: #e9ecef;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .ccfc_apply_btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border: none;
            text-align: center;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            font-weight: bold;
        }
        
        .ccfc_apply_btn:hover {
            background-color: #3e8e41;
        }
        
        .ccfc_charges_table {
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            border-radius: 8px;
            overflow-x: auto;
            display: block;
            border: 1px solid #cfe2ff;
            margin-bottom: 20px;
        }
        
        .ccfc_charges_table th {
            background-color: #f1f7ff;
            text-align: left;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .ccfc_charges_table td {
            padding: 15px 20px;
            border-top: 1px solid #e6f0ff;
            color: #3c4043;
            font-size: 16px;
        }
        
        .ccfc_charges_table tr:nth-child(even) {
            background-color: #f8fbff;
        }
        
        .ccfc_highlight {
            background-color: #4a86e8;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .ccfc_mobile_sidebar_toggle {
            display: none;
            background-color: #000000;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 15px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .ccfc_home {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .ccfc_home {
                flex-direction: column;
            }
            
            .ccfc_sidebar {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                padding: 0;
            }
            
            .ccfc_sidebar.active {
                max-height: 500px;
                padding: 20px;
            }
            
            .ccfc_mobile_sidebar_toggle {
                display: block;
            }
            
            .ccfc_main_content {
                padding: 20px;
            }
            
            .ccfc_features_list {
                flex-direction: column;
            }
            
            .ccfc_feature {
                width: 100%;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
            
            .contact-form, 
            .contact-info {
                width: 100%;
                margin-bottom: 30px;
            }
            
            iframe {
                width: 100% !important;
                height: 250px !important;
            }
        }
        
        @media (max-width: 576px) {
            .ccfc_main_content {
                padding: 15px;
            }
            
            .ccfc_charges_table th,
            .ccfc_charges_table td {
                padding: 10px;
                font-size: 14px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        
        /* Contact section responsive styles */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-form,
        .contact-info {
            flex: 1 1 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .info-item svg {
            margin-right: 10px;
            min-width: 24px;
        }
        
        /* Navbar responsive styles */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 20px;
        }
        
        .logo img {
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
        }
        
        .nav-link {
            margin-left: 20px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #4CAF50;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            margin: 4px 0;
            transition: 0.3s;
        }
        
        /* Hero section responsive styles */
        .hero {
            background-color: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Footer responsive styles */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1 1 200px;
            margin-bottom: 20px;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #ffffff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            color: #ecf0f1;
            transition: color 0.3s;
        }
        
        .social-link:hover {
            color: #4CAF50;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        
        /* Responsive navbar */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-link {
                margin: 10px 0;
                font-size: 18px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        /* Hero responsiveness */
        @media (max-width: 576px) {
            .hero {
                padding: 50px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
    


/* ==========================================================================
   Modern Service Sections Redesign
   ========================================================================== */

.modern-service-wrapper {
    margin: 40px auto;
    font-family: var(--default-font);
}

/* Nav Pills Styling */
.modern-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    scrollbar-width: none; /* Firefox */
}
.modern-nav-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.modern-nav-pills .nav-item {
    list-style: none;
}

.modern-nav-pills .nav-link {
    white-space: nowrap;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-nav-pills .nav-link:hover {
    background-color: #d1dadd;
    transform: translateY(-2px);
}

.modern-nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 154, 94, 0.3);
}

/* Tab Content Animation */
.modern-tab-content {
    display: none;
    animation: fadeScaleUp 0.4s ease-out forwards;
}

.modern-tab-content.active {
    display: block;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Cards Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 154, 94, 0.05), rgba(0, 79, 76, 0.02));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 79, 76, 0.1);
    border-color: transparent;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.feature-card-premium h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card-premium p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Elegant Lists (Eligibility & Docs) */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elegant-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    background: #f9fbfb;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s ease;
}

.elegant-list li:hover {
    transform: translateX(5px);
    background: var(--secondary-color);
}

.elegant-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 18px;
}

/* Modern Data Table */
.modern-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.modern-data-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
}

.modern-data-table td {
    padding: 20px;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-color);
    background: #ffffff;
    transition: background 0.2s ease;
}

.modern-data-table tr:hover td {
    background-color: #f9fbfb;
}

.modern-data-table tr:last-child td {
    border-bottom: none;
}

/* Custom Accordion for FAQs */
.custom-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.custom-accordion .accordion-button::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.active {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.custom-accordion .accordion-button.active::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    display: none;
}

/* Insurance Grid Redesign */
.insurance-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insurance-modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.insurance-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.insurance-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 154, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.insurance-modern-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insurance-modern-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Terms Grid */
.terms-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.term-modern-box {
    background: #f9fbfb;
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.term-modern-box:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.term-modern-box:hover strong,
.term-modern-box:hover p {
    color: #fff;
}

.term-modern-box strong {
    display: block;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.term-modern-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Section Wrapper Titles */
.modern-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.modern-section-title span {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.modern-section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   Modern Service Sections Redesign
   ========================================================================== */

.modern-service-wrapper {
    margin: 40px auto;
    font-family: var(--default-font);
}

/* Nav Pills Styling */
.modern-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    scrollbar-width: none; /* Firefox */
}
.modern-nav-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.modern-nav-pills .nav-item {
    list-style: none;
}

.modern-nav-pills .nav-link {
    white-space: nowrap;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-nav-pills .nav-link:hover {
    background-color: #d1dadd;
    transform: translateY(-2px);
}

.modern-nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 154, 94, 0.3);
}

/* Tab Content Animation */
.modern-tab-content {
    display: none;
    animation: fadeScaleUp 0.4s ease-out forwards;
}

.modern-tab-content.active {
    display: block;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Cards Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.feature-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 154, 94, 0.05), rgba(0, 79, 76, 0.02));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 79, 76, 0.1);
    border-color: transparent;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.feature-card-premium h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card-premium p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Elegant Lists (Eligibility & Docs) */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elegant-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    background: #f9fbfb;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s ease;
}

.elegant-list li:hover {
    transform: translateX(5px);
    background: var(--secondary-color);
}

.elegant-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 18px;
}

/* Modern Data Table */
.modern-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.modern-data-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
}

.modern-data-table td {
    padding: 20px;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-color);
    background: #ffffff;
    transition: background 0.2s ease;
}

.modern-data-table tr:hover td {
    background-color: #f9fbfb;
}

.modern-data-table tr:last-child td {
    border-bottom: none;
}

/* Custom Accordion for FAQs */
.custom-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.custom-accordion .accordion-button::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.active,
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color) !important;
    color: var(--accent-color) !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button.active::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    display: none;
}

/* Insurance Grid Redesign */
.insurance-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.insurance-modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.insurance-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.insurance-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 154, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.insurance-modern-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insurance-modern-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Terms Grid */
.terms-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.term-modern-box {
    background: #f9fbfb;
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.term-modern-box:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.term-modern-box:hover strong,
.term-modern-box:hover p {
    color: #fff;
}

.term-modern-box strong {
    display: block;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.term-modern-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Section Wrapper Titles */
.modern-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.modern-section-title span {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.modern-section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   Modern Service Sections Redesign
   ========================================================================== */

.modern-service-wrapper {
    margin: 40px auto;
    font-family: var(--default-font);
}

/* Nav Pills Styling */
.modern-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    scrollbar-width: none; /* Firefox */
}
.modern-nav-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.modern-nav-pills .nav-item {
    list-style: none;
}

.modern-nav-pills .nav-link {
    white-space: nowrap;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-nav-pills .nav-link:hover {
    background-color: #d1dadd;
    transform: translateY(-2px);
}

.modern-nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 154, 94, 0.3);
}

/* Tab Content Animation */
.modern-tab-content {
    display: none;
    animation: fadeScaleUp 0.4s ease-out forwards;
}

.modern-tab-content.active {
    display: block;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Cards Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.feature-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 154, 94, 0.05), rgba(0, 79, 76, 0.02));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 79, 76, 0.1);
    border-color: transparent;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.feature-card-premium h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card-premium p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Elegant Lists (Eligibility & Docs) */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elegant-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    background: #f9fbfb;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s ease;
}

.elegant-list li:hover {
    transform: translateX(5px);
    background: var(--secondary-color);
}

.elegant-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 18px;
}

/* Modern Data Table */
.modern-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.modern-data-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
}

.modern-data-table td {
    padding: 20px;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-color);
    background: #ffffff;
    transition: background 0.2s ease;
}

.modern-data-table tr:hover td {
    background-color: #f9fbfb;
}

.modern-data-table tr:last-child td {
    border-bottom: none;
}

/* Custom Accordion for FAQs */
.custom-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.custom-accordion .accordion-button::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.active,
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color) !important;
    color: var(--accent-color) !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button.active::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    display: none;
}

/* Insurance Grid Redesign */
.insurance-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.insurance-modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insurance-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.insurance-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 154, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.insurance-modern-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insurance-modern-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Terms Grid */
.terms-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.term-modern-box {
    background: #f9fbfb;
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.term-modern-box:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.term-modern-box:hover strong,
.term-modern-box:hover p {
    color: #fff;
}

.term-modern-box strong {
    display: block;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.term-modern-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Section Wrapper Titles */
.modern-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.modern-section-title span {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.modern-section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   Modern Service Sections Redesign
   ========================================================================== */

.modern-service-wrapper {
    margin: 40px auto;
    font-family: var(--default-font);
}

/* Nav Pills Styling */
.modern-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    scrollbar-width: none; /* Firefox */
}
.modern-nav-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.modern-nav-pills .nav-item {
    list-style: none;
}

.modern-nav-pills .nav-link {
    white-space: nowrap;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-nav-pills .nav-link:hover {
    background-color: #d1dadd;
    transform: translateY(-2px);
}

.modern-nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 154, 94, 0.3);
}

/* Tab Content Animation */
.modern-tab-content {
    display: none;
    animation: fadeScaleUp 0.4s ease-out forwards;
}

.modern-tab-content.active {
    display: block;
}

@keyframes fadeScaleUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Cards Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.feature-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 154, 94, 0.05), rgba(0, 79, 76, 0.02));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 79, 76, 0.1);
    border-color: transparent;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}



/* Fix for Apply Step Items (EMI Calculator Steps) */
.apply-step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-premium h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card-premium p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Elegant List */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.elegant-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    background: #f9fbfb;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s ease;
}

.elegant-list li:hover {
    transform: translateX(5px);
    background: var(--secondary-color);
}

.elegant-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 18px;
}

/* Modern Data Table */
.modern-table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.modern-data-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    white-space: nowrap;
}

.modern-data-table td {
    padding: 20px;
    border-bottom: 1px solid var(--divider-color);
    color: var(--text-color);
    background: #ffffff;
    transition: background 0.2s ease;
}

.modern-data-table tr:hover td {
    background-color: #f9fbfb;
}

.modern-data-table tr:last-child td {
    border-bottom: none;
}

/* Custom Accordion for FAQs */
.custom-accordion .accordion-item {
    border: none;
    background: #ffffff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.custom-accordion .accordion-button::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.active,
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color) !important;
    color: var(--accent-color) !important;
    box-shadow: none !important;
}

.custom-accordion .accordion-button.active::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    display: none;
}

/* Insurance Grid Redesign */
.insurance-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.insurance-modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insurance-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.insurance-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 154, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.insurance-modern-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insurance-modern-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Terms Grid */
.terms-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.term-modern-box {
    background: #f9fbfb;
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.term-modern-box:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.term-modern-box:hover strong,
.term-modern-box:hover p {
    color: #fff;
}

.term-modern-box strong {
    display: block;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.term-modern-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Section Wrapper Titles */
.modern-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.modern-section-title span {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.modern-section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   Modern Service Sections Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    .modern-service-wrapper {
        margin: 20px auto;
    }
    
    .modern-section-title {
        margin-bottom: 30px;
    }
    
    .modern-section-title h2 {
        font-size: 28px;
    }
    
    .modern-nav-pills {
        justify-content: flex-start; /* Prevents clipping of first item on scroll */
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .modern-nav-pills .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .modern-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .feature-card-premium {
        padding: 20px;
    }
    
    .feature-card-premium h4 {
        font-size: 18px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .modern-data-table th, 
    .modern-data-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .elegant-list li {
        font-size: 14px;
        padding: 12px 15px 12px 40px;
    }
    
    .elegant-list li i {
        left: 12px;
        font-size: 16px;
    }
}


.header-logo-img {
    height: 50px;
    border-radius: 8px;
    margin-right: 12px;
}
.header-logo-text {
    font-weight: 700;
    color: #000;
    font-size: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 35px;
        margin-right: 8px;
    }
    .header-logo-text {
        font-size: 14px;
        white-space: normal;
        max-width: 180px;
        line-height: 1.2;
    }
}

/* --- Fix Header and Hero White Space --- */
body {
    margin: 0;
    padding: 0;
}

header.main-header {
    background-color: #ffffff !important;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
}

header.main-header .header-sticky {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: static !important;
    transform: none !important;
}

.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 15px 0 !important;
    position: static !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.hero {
    margin-top: 0 !important;
    /* Adjust hero padding if it's too tall */
    padding: 100px 0 80px !important; 
}

/* --- Hero Section Overrides (from ecscreditsloan.com reference) --- */
.hero.hero-video.hero-slider-layout .hero-slide {
    min-height: 85vh !important;
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.hero-content {
    text-align: left !important;
    width: 100%;
}

.hero-content .section-title {
    text-align: left !important;
    margin-left: 0 !important;
}

.hero-content .section-title h1 {
    font-size: 64px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-align: left !important;
    color: #ffffff !important;
}

.hero-content .section-title h1 strong {
    font-weight: 800 !important;
}

.hero-btn {
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.hero-btn .btn-default.btn-highlighted {
    margin-left: 0 !important;
}

@media (max-width: 991px) {
    .hero.hero-video.hero-slider-layout .hero-slide {
        min-height: 60vh !important;
        padding: 60px 0 !important;
        align-items: flex-start;
    }
    
    .hero-content .section-title h1 {
        font-size: 40px !important;
    }
}

/* --- Remove Hero Padding --- */
.hero {
    padding: 0 !important;
}
.hero.hero-video.hero-slider-layout {
    padding: 0 !important;
}
