/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Wexico - Accounting & Finance 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. State Counter css
08. Why Choose Us css
09. Our Employee css
10. Cta Box css
11. We Help css
12. Our Pricing css
13. Testimonials css
14. Our Blog css
15. Footer css
16. About us Page css
17. Services Page css
18. Service Single css
19. Blog Archive css
20. Blog Single css
21. Contact us Page css
22. Pricing Page css
23.	FAQs Page css
24. 404 Page css
25. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color		: #0C1524;
	--secondary-color	: #F5F7FA;
	--text-color		: #4A5567;
	--accent-color		: #FF8159;
	--divider-color		: #DBDFEA;
	--dark-divider-color: #FFFFFF30;
	--white-color		: #FFFFFF;
	--error-color		: rgb(230, 87, 87);
	--default-font		: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.1em;
	letter-spacing: -0.03em;
}

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;
}
.container a{ 
	text-decoration: none;
}

.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{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--white-color);
	background: var(--accent-color);
	text-transform: capitalize;
	padding: 15px 55px 15px 15px;
	border-radius: 8px;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background-color: var(--white-color);
	background-image: url(../images/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	transform: translate(-15px, -50%);
	transition: 0.4s ease-in-out;
}

.btn-default::after{ 
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 106%;
	border-radius: 8px;
    background: var(--primary-color);
    transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after{
	width: 106%;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default.btn-highlighted{
	margin-left: 20px;
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted::before{
	background-color: var(--accent-color);
	background-image: url(../images/arrow-white.svg);
}

.btn-default.btn-highlighted::after{
	background-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover{
	background-color: transparent;
}

.btn-large{
	font-size: 20px;
	padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before{
	width: 40px;
	height: 40px;
	background-size: 15px;
}

#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: 24px !important;
	height: 24px !important;
	background: transparent;
	border: 1px solid var(--primary-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

#ball .circle{
	background: var(--accent-color);
    width: 8px;
    height: 8px;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.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);
	}
}

.light-bg-section{
	position: relative;
	width: 100%;
	max-width: 1600px;
    background: var(--secondary-color);
    border-radius: 40px;
	margin: 0 auto;
    padding: 30px 0;
}

.light-bg-section::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 30px;
	width: 490px;
	height: 480px;
	background-image: url(../images/icon-section-bg.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
}

.light-bg-section .container{
	position: relative;
	z-index: 1;
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-btn .btn-default.btn-highlighted{
	margin: 0;
}

.section-title{
	margin-bottom: 30px;
}

.section-title h3{
	font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.section-title h1,
.section-title h2{
	font-size: 50px;
	letter-spacing: -0.03em;
	font-weight: 600;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title-content p{
	margin: 0;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.serviceinner {
	gap: 50px;
	/* display: flex; */
    display: none;
    left: -476px;
    position: absolute;
    top: 100%;
    background: white;
    padding: 20px;
    z-index: 9;
    /* width: 100%; */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-item:hover .serviceinner {
	gap: 50px;
	display: flex;
	left: 0px;
	transform:translatex(-50%) ;
    position: absolute;
    top: 100%;
    background: white;
    padding: 20px;
    z-index: 9;
    /* width: 100%; */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

}
.serviceinner .serviceinner-div{
	position: relative;
   width: 220px;
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.serviceinner .serviceinner-div .serviceinner-a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  padding: 12px;
}

header.main-header{
	background-color: var(--white-color);
	position: relative;
	z-index: 100;
}

.navbar{
	padding: 25px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
	/* border: 1px solid red; */
}
.navbar-brand img{
	width: 100%;
	height: 60px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	padding: 15px 15px;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.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: 210px;
	border-radius: 15px;
	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 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{
	color: var(--accent-color);
	background-color: transparent;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.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;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	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 .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-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);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.google-rating{
	margin-bottom: 20px;
}

.google-rating ul{
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: var(--white-color);
	border-radius: 40px;
	padding: 6px 20px;
}

.google-rating ul li{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	margin-right: 10px;
}

.google-rating ul li:last-child{
	margin-right: 0;
}

.google-rating ul li span{
	color: var(--accent-color);
	margin-left: 5px;
}

.google-rating ul li i{
	font-size: 14px;
	color: var(--accent-color);
}

.hero-content-body{
	margin-bottom: 30px;
}

.hero-image{
	text-align: right;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0 70px;
}

.about-video-image{
	position: relative;
	margin-bottom: 30px;
}

.about-image img{
	border-radius: 40px;
	aspect-ratio: 1/0.40;
	object-fit: cover;
}

.about-video-btn{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	padding: 5px 20px 5px 5px;
	transition: all 0.3s ease-in-out;
}

.about-video-btn:hover{
	background-color: var(--primary-color);
}

.about-video-btn .icon-box a{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.about-video-btn .icon-box i{
	background-color: var(--white-color);
	color: var(--accent-color);
	border-radius: 100%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.about-video-btn:hover .icon-box i{
	color: var(--primary-color);
}

.about-company-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.about-company-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	width: 60px;
	height: 60px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.about-company-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.about-company-item:hover .icon-box:before{
	transform: scale(1);
}

.about-company-item .icon-box img{
	position: relative;
	z-index: 1;
}

.about-company-content p{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-service .section-title-content{
	margin-left: 110px;
}

.service-item{
	position: relative;
    overflow: hidden;
    text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background: linear-gradient(180deg, transparent 52.34%, var(--primary-color) 100%);
	border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center center;
	z-index: 1;
}

.service-image{
	overflow: hidden;
	border-radius: 40px;
}

.service-image img{
	border-radius: 40px;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.service-item:hover .service-image img{
    transform: scale(1.1);
}

.service-content{
    content: "";
    position: absolute;
    bottom: 20px;
	right: 80px;
	left: 80px;
    z-index: 2;
	transition: all 0.5s ease-in-out;
}

.service-content h3{
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-content .service-readmore-btn{
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease-out;
}

.service-item:hover .service-content .service-readmore-btn{
	height: 50px;
}

.service-footer-btn{
	text-align: center;
	margin-top: 30px;
}
.footer-logo img{
	    height: 65px;
    border-radius: 10px
}
.footer-logo{
	/* border: 1px solid red; */
}

/************************************/
/***    07. State Counter css     ***/
/************************************/

.state-counter{
	padding: 100px 0;
}

.state-image-counter-1{
	margin-bottom: 30px;
}

.state-image-counter-2,
.state-image-counter-1{
	display: flex;
	align-items: center;
	overflow: hidden;
}

.state-image-counter-1 .counter-box{
	background-color: var(--secondary-color);
	width: 30%;
	height: 212px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 10px;
	margin-left: 30px;
}

.counter-content h3{
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 10px;
}

.counter-content p{
	margin: 0;
	color: var(--primary-color);
}

.state-image-counter-1 .counter-image{
	display: block;
	width: 40%;
	background-color: transparent;
	padding: 0;
	border-radius: 40px;
}

.counter-image img{
	border-radius: 40px;
	width: 100%;
	height: 212px;
	object-fit: cover;
}

.state-image-counter-2 .counter-box{
	background-color: var(--secondary-color);
	width: 40%;
	height: 212px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 10px;
	margin-left: 30px;
}

.state-image-counter-2 .counter-image{
	display: block;
	width: 30%;
	background-color: transparent;
	padding: 0;
}

/************************************/
/***    08. Why Choose Us css     ***/
/************************************/

.why-choose-us.light-bg-section{
    padding: 100px 0 70px;
}


.why-choose-image-box{
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}

.why-choose-image-box::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.why-choose-image img{
    border-radius: 40px;
    aspect-ratio: 1 / 0.31;
	object-fit: cover;
}

.why-choose-content{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.why-choose-title{
	width: 100%;
	max-width: 710px;
}

.why-choose-title h2{
	font-size: 46px;
	color: var(--white-color);
}

.why-choose-counter{
	width: calc(100% - 710px);
	text-align: right;
}

.why-choose-counter h3{
	font-size: 50px;
	color: var(--white-color);
	text-transform: capitalize;
}

.why-choose-counter p{
	font-size: 18px;
	color: var(--white-color);
	margin: 0;
}

.why-choose-item{
	position: relative;
	background-color: var(--white-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.why-choose-item::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: var(--primary-color);
	transition: all 0.5s ease-in-out;
	height: 100%;
}

.why-choose-item:hover:before{
	top: 0;
}

.why-choose-item .icon-box{
	background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.why-choose-body h3{
	font-size: 22px;
	margin-bottom: 20px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
}

.why-choose-item:hover .why-choose-body h3{
	color: var(--white-color);
}

.why-choose-body p{
	margin: 0;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
}

.why-choose-item:hover .why-choose-body p{
	color: var(--white-color);
}

/************************************/
/***     09. Our Employee css     ***/
/************************************/

.our-employee{
	padding: 100px 0;
}

.employee-content{
	margin-top: 100px;
	margin-left: 30px;
}

.employee-content .section-title{
	text-align: left;
	margin-bottom: 20px;
}

.employee-body{
	margin-bottom: 30px;
}

.employee-footer{
	display: flex;
	align-items: center;
}

.employee-counter-box{
	margin-right: 50px;
}

.employee-counter-box:last-child{
	margin-right: 0;
}

.employee-counter-box h3{
	font-size: 50px;
	margin-bottom: 5px;
}

.employee-counter-box p{
	font-weight: 500;
	margin: 0;
}

/************************************/
/***        10. Cta Box css       ***/
/************************************/

.cta-box{
	background-color: var(--accent-color);
	padding: 50px 0;
}

.cta-box .section-title{
	margin: 0;
}

.cta-box .section-title h2{
	color: var(--white-color);
}

/************************************/
/***        11. We Help css       ***/
/************************************/

.we-help{
	padding: 100px 0;
}

.we-help-content{
	display: flex;
	align-items: center;
}

.we-help-box{
	border-right: 1px solid var(--divider-color);
	text-align: center;
	width: calc(100% - 10px);
	height: 100%;
	margin-right: 10px;
	padding-right: 10px;
}

.we-help-box:last-child{
	border: none;
	width: 100%;
	padding-right: 0;
	margin-right: 0;
}

.we-help-box .icon-box{
	position: relative;
	background-color: var(--accent-color);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 20px;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.we-help-box .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.we-help-box:hover .icon-box:before{
	transform: scale(1);
}

.we-help-box .icon-box img{
	position: relative;
	z-index: 1;
}

.we-help-title{
	width: 100%;
	max-width: 170px;
	margin: 0 auto;
}

.we-help-title h3{
	font-size: 22px;
	text-transform: capitalize;
}

/************************************/
/***      12. Our Pricing css     ***/
/************************************/

.our-pricing.light-bg-section{
    padding: 100px 0 70px;
}

.pricing-item{
	background-color: var(--white-color);
	border-radius: 40px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 30px;
}

.pricing-header{
	border-bottom: 1px solid var(--secondary-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header .icon-box{
	position: relative;
	background-color: var(--accent-color);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.pricing-item .pricing-header .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.pricing-item:hover .pricing-header .icon-box:before{
	transform: scale(1);
}

.pricing-item .pricing-header .icon-box img{
	position: relative;
	z-index: 1;
}

.pricing-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.pricing-content p{
	text-transform: capitalize;
	margin: 0;
}

.pricing-body{
	margin-bottom: 30px;
}

.pricing-body h2{
	font-size: 50px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.pricing-body p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     13. Testimonials css     ***/
/************************************/

.client-testimonials{
	padding: 100px 0 0;
}

.client-testimonials .section-row{
	border-bottom: 1px solid var(--divider-color);
	margin: 0;
	padding-bottom: 100px;
}

.client-testimonials-content{
	width: 100%;
	max-width: 540px;
}

.client-testimonials-content .section-title{
	margin-bottom: 20px;
}

.testimonial-header{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.author-image img{
	width: 80px;
	height: 80px;
	border-radius: 100%;
	margin-right: 20px;
}

.author-content{
	width: calc(100% - 100px);
}

.author-content h2{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	margin: 0;
}

.testimonial-body{
	margin-bottom: 30px;
}

.testimonial-slider .hero-button-next,
.testimonial-slider .hero-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .hero-button-next{
	position: absolute;
	bottom: 0;
	left: 50px;
}

.testimonial-slider .hero-button-next:hover,
.testimonial-slider .hero-button-prev:hover{
	background-color: var(--primary-color);
}

.testimonial-slider .hero-button-next::before,
.testimonial-slider .hero-button-prev::before{
	content: '\f060';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .hero-button-next::before{
	content: '\f061';
}

/************************************/
/***      14. Our Blog css        ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.blog-item{
	position: relative;
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 20px;
}

.post-featured-image img{
	aspect-ratio: 1/0.65;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	margin-bottom: 30px;
}

.post-item-body h2{
	display: block;
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-body p{
	margin: 0;
}

/************************************/
/***        15. Footer css        ***/
/************************************/

.main-footer{
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
    background: var(--primary-color);
    border-radius: 40px;
    padding: 80px 0 0;
	margin-bottom: 30px;
}

.footer-about{
	margin-bottom: 50px;
}

.footer-title h2{
	font-size: 50px;
	color: var(--white-color);
}

.footer-body{
	margin-bottom: 80px;
}

.newsletter-title{
	margin-bottom: 30px;
}

.newsletter-title h3{
	font-size: 24px;
	color: var(--white-color);
	text-transform: capitalize;
}

.newsletters-form .mail-box{
	position: relative;
    background-color: transparent;
    border-bottom: 1px solid var(--dark-divider-color);
	width: 100%;
	max-width: 300px;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
}

.newsletters-form .mail-box .form-control{
    background-color: transparent;
    color: var(--white-color);
    box-shadow: none;
	border: none;
	padding: 0;
}

.newsletters-form .mail-box .form-control::placeholder{
	color: var(--white-color);
}

.subscribe-btn .btn-default:hover{
	color: var(--accent-color);
}

.subscribe-btn .btn-default::after{
    background: var(--white-color);
}

.subscribe-btn .btn-default:hover:before{
	background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    transform: translate(-15px, -50%);
    background-color: var(--accent-color);
}

.footer-links h2{
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
}

.footer-contact h2{
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-contact ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact ul li{
	font-size: 16px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-contact ul li:last-child{
	margin-bottom: 0;
}

.footer-contact ul li a{
	color: inherit;
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	padding: 30px 0;
}

.footer-copyright-text p{
	margin: 0;
	text-transform: capitalize;
	color: var(--white-color);
}

/************************************/
/***    16. About Us Page css     ***/
/************************************/

.page-header.light-bg-section::before{
	width: 300px;
	height: 300px;
	background-size: cover;
}

.page-header-box{
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1{
	font-size: 50px;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header-box ol{
	display: inline-flex;
    margin-bottom: 0;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 8px;
	padding: 10px 20px;
}

.page-header-box ol li.breadcrumb-item{
    color: var(--white-color);
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.page-about{
	padding: 100px 0;
}

.page-about-image{
	position: relative;
	padding-bottom: 130px;
}

.page-about-image::before{
	content: '';
	position: absolute;
	top: 55px;
	background-image: url(../images/icon-satisfied-client-bg.svg);
	background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height: 100%;
}

.about-img-2{
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-1 img{
	border-radius: 40px;
}

.about-img-2 img{
	border-radius: 40px;
	border: 10px solid var(--white-color);
	border-right: 0;
}

.satisfied-client{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -100px);
	background-color: var(--white-color);
	box-shadow: 0px 4px 30px 0px #0C152412;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	padding: 15px 20px;
	animation: moveobject 2s infinite linear alternate;
}

@keyframes moveobject{
	50%{
		left: 45%;
	}
}

.satisfied-client-icon{
	margin-right: 15px;
}

.satisfied-client-content{
	width: calc(100% - 55px);
}

.satisfied-client-content h3{
	font-size: 24px;
	color: var(--primary-color);
	text-align: left;
	margin-bottom: 5px;
}

.satisfied-client-content p{
	text-transform: capitalize;
	margin: 0;
}

.about-content{
	margin-left: 50px;
}

.about-content-body{
	margin-bottom: 30px;
}

.about-content-body p{
	margin: 0;
}

.about-company-service{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-company-service:last-child{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.about-company-service .icon-box{
	position: relative;
	background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-company-service .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.about-company-service:hover .icon-box:before{
	transform: scale(1);
}

.about-company-service .icon-box img{
	position: relative;
	z-index: 1;
}

.company-service-content{
	width: calc(100% - 90px);
}

.company-service-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-service-content p{
	margin: 0;
}

.our-clients{
	padding: 100px 0;
}

.client-logo{
	display: flex;
	flex-wrap: wrap;
	column-gap: 100px;
	row-gap: 40px;
	align-items: center;
	justify-content: center;
}

.company-planning-image{
	margin-right: 50px;
}

.company-planning-content{
	margin-top: 60px;
}

.company-planning-body{
	margin-bottom: 30px;
}

.company-planning-body ul{
	padding: 0;
    margin: 0;
	list-style: none;
}

.company-planning-body ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
	text-transform: capitalize;
}

.company-planning-body ul li:last-child{
	margin-bottom: 0;
}

.company-planning-body ul li:before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
	background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 1px;
    left: 0;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	position: relative;
	transition: all 0.4s ease-out;
	margin-bottom: 30px;
}

.team-member-item::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 52.34%, var(--primary-color) 100%);
    border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.team-member-item .team-image{
    position: relative;
    overflow: hidden;
	border-radius: 40px;
	margin-bottom: 20px;
}

.team-member-item .team-image img{
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
	text-align: center;
    transition: all 0.4s ease-out;
    z-index: 2;
}

.team-content{
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p{
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.team-social-icon{
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease-out;
}

.team-member-item:hover .team-social-icon{
	height: 40px;
}

.team-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
}

.team-social-icon ul li a i{
    background: var(--white-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-out;
}

.team-social-icon ul li a i:hover{
	background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     17. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.cta-box.service-cta{
	margin-bottom: 100px;
}

/************************************/
/***    18. Services Single css   ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-single-content{
	margin-right: 20px;
}

.service-featured-image{
	margin-bottom: 30px;
}

.service-featured-image img{
	border-radius: 40px;
}

.service-entry h2{
	font-size: 50px;
	margin-bottom: 30px;
}

.service-entry h3{
    font-size: 40px;
    margin-bottom: 30px;
}

.service-benefits{
	margin: 40px 0 0;
}

.service-benefits-item{
	background-color: var(--secondary-color);
	border-radius: 40px;
	display: flex;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.service-benefits-item .icon-box{
	background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-right: 20px;
}

.service-benefits-content{
	width: calc(100% - 80px);
}

.service-benefits-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-benefits-content p{
	margin: 0;
}

.services-step{
	margin: 40px 0 0;
}

.services-step-box{
	background-color: var(--secondary-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.services-step-box .icon-box{
	background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-step-content h3{
	font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.services-step-content p{
    margin: 0;
}

.customer-Benefit{
	margin: 30px 0 0;
}

.customer-benefit-image img{
	border-radius: 40px;
}

.customer-Benefit-content h3{
	font-size: 40px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.customer-Benefit-content ul{
	padding: 0;
    margin: 0;
    list-style: none;
}

.customer-Benefit-content ul li{
	position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.customer-Benefit-content ul li:last-child{
	margin-bottom: 0;
}

.customer-Benefit-content ul li:before{
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	background-color: transparent;
	color: var(--accent-color);
	font-size: 18px;
	font-weight: 400;
	position: absolute;
	top: 1px;
	left: 0;
}

.service-sidebar{
	position: sticky;
    top: 20px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 40px;
	padding: 30px 40px;
	margin-bottom: 30px;
}

.service-catagery-list h3{
    font-size: 26px;
	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;
	transition: all 0.3s ease-out;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li a{
	display: block;
    position: relative;
    background-color: var(--white-color);
	color: var(--text-color);
	text-transform: capitalize;
	border-radius: 10px;
	font-weight: 700;
	padding: 15px 40px 15px 15px;
    transition: all 0.3s ease-out;
}

.service-catagery-list ul li a::after{
	content: '\f178';
	font-family: "Font Awesome 6 Free";
    display: block;
	position: absolute;
    top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: var(--accent-color);
	transition: all 0.3s ease-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.service-catagery-list ul li:hover a::after{
	color: var(--white-color);
}

.sidebar-cta-box{
	position: relative;
	text-align: center;
	position: sticky;
    top: 100px;
}

.sidebar-cta-image{
	position: relative;
	border-radius: 40px;
}

.sidebar-cta-image::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 40px;
	opacity: 60%;
	z-index: 1;
}

.sidebar-cta-image{
	overflow: hidden;
}

.sidebar-cta-image img{
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img{
	transform: scale(1.1);
}

.sidebar-cta-content{
	position: absolute;
	top: 50%;
	left: 50px;
	right: 50px;
	transform: translateY(-50%);
	z-index: 2;
}

.sidebar-cta-content h3{
	font-size: 26px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

/************************************/
/***     19. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .blog-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.post-pagination{
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 4px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease-out;
}

.post-pagination ul li.active a, 
.post-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***       20. Blog Single css    ***/
/************************************/

.post-single-meta{
	display: inline-flex;
    margin-bottom: 0;
    justify-content: center;
	align-items: center;
    background-color: var(--accent-color);
    border-radius: 8px;
    padding: 10px 20px;
}

.post-single-meta ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-single-meta ul li{
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	margin-right: 30px;
}

.post-single-meta ul li:last-child{
	margin-right: 0;
}

.post-single-meta ul li i{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 10px;
}

.post-single-meta ul li:nth-child(3) i{
	transform: rotate(90deg);
}

.page-single-post{
	padding: 100px 0;
}

.post-image{
	margin-bottom: 30px;
}

.post-image img{
	border-radius: 40px;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	background-color: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
    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{
	font-size: 58px;
}

.post-entry h2{
	font-size: 50px;
}

.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: 700;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.post-entry ul{
	list-style: none;
	padding: 0;
	margin: 20px 0 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.post-entry ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.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(--white-color);
	border-radius: 40px;
	text-align: center;
	padding: 40px;
	margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--accent-color);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1em;
    letter-spacing: -0.03em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.post-tag-links{
	padding: 0 50px;
}

.tag-links{
	display: inline-block;
}

.tag-links{
	font-size: 30px;
	font-weight: 600;
	color: var(--primary-color);
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 12px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-color: var(--primary-color);
}

.post-tags .tag-links a::before{
    display: none;
}

.post-tags .tag-links a::after{
    background-color: var(--accent-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;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--white-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    border-color: var(--primary-color);
	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);
}

/************************************/
/***    21. Contact Us Page css   ***/
/************************************/

.contact-information{
	padding: 100px 0;
}

.contact-info-item{
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.contact-image{
	position: relative;
	overflow: hidden;
	border-radius: 40px;
}

.contact-image::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(180deg, transparent 52.34%, var(--primary-color) 100%);
	border-radius: 40px;
    z-index: 1;
}

.contact-image img{
	border-radius: 40px;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .contact-image img{
	transform: scale(1.1);
}

.contact-info-box{
	position: absolute;
	bottom: 30px;
	left: 40px;
	right: 70px;
	z-index: 2;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-box{
	bottom: 40px;
}

.contact-info-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-info-content p{
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	margin: 0;
}

.contact-info-content p a{
	color: inherit;
}

.contact-form{
	text-align: center;
}

.contact-form .form-control{
	background-color: var(--white-color);
	border-radius: 20px;
	border: none;
	box-shadow: none;
	padding: 15px 20px;
}

.contact-form .form-control::placeholder{
	font-size: 16px;
	text-transform: capitalize;
}

.help-block.with-errors ul{
	text-align: left;
	margin-bottom: 0;
}

.help-block.with-errors ul li{
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
	margin-left: 20px;
}

.location-map{
	padding: 100px 0;
}

.google-map{
	border-radius: 40px;
}

.google-map iframe{
	width: 100%;
	height: 450px;
	border-radius: 40px;
	border: none;
	filter: grayscale(100%);
    transition: all 0.3s ease-out;
}

.google-map iframe:hover{
    filter: grayscale(0%);
}

/************************************/
/***     22. Pricing Page css     ***/
/************************************/

.page-pricing{
	padding: 100px 0 70px
}

.pricing-box{
	background-color: var(--secondary-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-box.highlighted-box{
	background-color: var(--accent-color);
}

.pricing-box-header{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-box-title{
	margin-bottom: 20px;
}

.pricing-box-title h2{
	font-size: 50px;
	letter-spacing: 0;
}

.pricing-box.highlighted-box .pricing-box-title h2{
	color: var(--white-color);
}

.pricing-box-title h2 sup{
	font-size: 16px;
	font-weight: 600;
	top: -1.5em;
}

.pricing-box-title h2 sub{
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	bottom: 0;
}

.pricing-box-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-box.highlighted-box .pricing-box-content h3{
	color: var(--white-color);
}

.pricing-box-content p{
	margin: 0;
}

.pricing-box.highlighted-box .pricing-box-content p{
	color: var(--white-color);
}

.pricing-box-body{
	margin-bottom: 30px;
}

.pricing-box-body ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-box-body ul li{
    position: relative;
	font-weight: 600;
	color: var(--primary-color);
    padding-left: 30px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-box-body ul li{
	color: var(--white-color);
}

.pricing-box-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-box-body ul li:before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 1px;
    left: 0;
}

.pricing-box.highlighted-box .pricing-box-body ul li:before{
	color: var(--white-color);
}

.pricing-box-footer .btn-default.btn-highlighted{
	margin: 0;
}

/************************************/
/***      23. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 20px;
}

.faq-category-box{
	background-color: var(--secondary-color);
    border-radius: 40px;
    padding: 30px 40px;
}

.faq-category-box ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.faq-category-box ul li{
	margin-bottom: 20px;
    transition: all 0.3s ease-out;
}

.faq-category-box ul li:last-child{
	margin-bottom: 0px;
}

.faq-category-box ul li a{
	display: block;
    position: relative;
    background-color: var(--white-color);
    color: var(--text-color);
    border-radius: 10px;
    font-weight: 700;
    padding: 15px 40px 15px 15px;
    transition: all 0.3s ease-in-out;
}

.faq-category-box ul li:hover a{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.faq-category-box ul li a::after{
    content: '\f178';
    font-family: "Font Awesome 6 Free";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.faq-category-box ul li:hover a::after{
	color: var(--white-color);
}

.faq-section{
	margin-bottom: 60px;
}

.faq-section:last-child{
	margin-bottom: 0;
}
 
.faq-section .our-faqs-title h2{
	font-size: 40px;
	margin-bottom: 30px;
}

.faq-accordion .accordion-item{
	margin-bottom: 20px;
	border: none;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0px;
}

.accordion-header .accordion-button{
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	padding: 12px 60px 12px 20px;
	border-radius: 20px !important;
	box-shadow: none;
}

.accordion-header .accordion-button::after{
	content: '\f175';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
	top: auto;
    right: 20px;
	width: 20px;
	height: 30px;
    font-size: 16px;
    font-weight: 900;
    display: flex;
	align-items: center;
	justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
	background: none;
}

.accordion-header .accordion-button.collapsed::after{
	color: var(--accent-color);
}

.accordion-item .accordion-body{
	padding: 12px 60px 12px 20px;
}

.accordion-item .accordion-body p{
	margin: 0;
}

/************************************/
/***        24. 404 Page css      ***/
/************************************/

.error-page{
    text-align: center;
    padding: 100px 0;
}

.error-page-image{
    margin-bottom: 40px;
}

.error-page-content-heading{
    margin-bottom: 40px;
}

.error-page-content-heading h2{
    font-size: 50px;
    margin-bottom: 30px;
}

/************************************/
/***      25. responsive css      ***/
/************************************/

@media only screen and (max-width: 1600px){
	.light-bg-section{
		width: calc(100% - 100px);
		margin: 0 50px;
	}

	.main-footer{
		width: calc(100% - 100px);
		margin: 0 50px 30px;
	}
}

@media only screen and (max-width: 1366px){
	.light-bg-section{
        width: calc(100% - 30px);
        margin: 0 15px;
    }

	.main-footer{
        width: calc(100% - 30px);
        margin: 0 15px 30px;
    }
}	

@media only screen and (max-width: 1024px){
	.main-menu ul li{
		margin-left: 0;
	}

	.hero-content-footer .btn-default.btn-highlighted{
		margin-left: 0px;
		margin-top: 10px;
	}

	.our-service .section-title-content{
		margin-left: 70px;
	}

	.service-content{
		right: 65px;
		left: 65px;
	}

	.employee-content{
		margin-top: 0px;
	}
}

@media only screen and (max-width: 991px){

    #magic-cursor{
        display: none !important;
    }

    .slicknav_nav li, .slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

    .header-btn .btn-default{
        display: none;
    }

	.light-bg-section{
		width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px 0;
        border-radius: 0;
	}

	.light-bg-section::before{
		width: 300px;
		height: 350px;
		background-size: cover;
	}

	.section-row{
        margin-bottom: 40px;
	}

    .section-title h1,
    .section-title h2{
        font-size: 36px;
    }

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
        text-align: left;
        margin-top: 20px;
    }

	.hero-content{
		width: 100%;
		max-width: 500px;
		padding-bottom: 30px;
		margin: 0 auto;
		text-align: center;
	}

	.hero-content-footer .btn-default.btn-highlighted{
		margin-left: 20px;
		margin-top: 0px;
	}

	.hero-image{
		text-align: center;
	}

	.about-us{
		padding: 50px 0 20px;
	}

	.about-company-item .icon-box{
		margin-bottom: 15px;
	}

	.about-company-content p{
		font-size: 20px;
	}

	.our-service .section-title-content{
		margin-left: 0px;
	}

	.service-content{
		right: 10px;
		left: 10px;
	}

	.service-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service-footer-btn{
		margin-top: 10px;
	}

	.state-counter{
		padding: 50px 0;
	}

	.counter-contact-btn{
		margin-bottom: 30px;
	}

	.state-image-counter-2 .counter-box:first-child,
	.state-image-counter-1 .counter-box:first-child{
		margin-left: 0px;
	}

	.why-choose-us.light-bg-section{
		padding: 50px 0 20px;
	}

	.why-choose-image img{
		aspect-ratio: 1 / 0.40;
	}

	.why-choose-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.why-choose-title h2{
		font-size: 36px;
	}

	.why-choose-title{
		width: 100%;
		max-width: 500px;
	}

	.why-choose-counter{
		width: calc(100% - 500px);
	}

	.why-choose-counter h3{
		font-size: 36px;
	}

	.why-choose-counter p{
		font-size: 16px;
	}

	.why-choose-item{
		padding: 30px;
	}

	.why-choose-body h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.our-employee{
		padding: 50px 0;
	}

	.employee-content{
		margin-top: 0px;
	}

	.employee-image{
		text-align: center;
		margin-bottom: 30px;
	}

	.employee-content{
		margin-left: 0px;
	}

	.employee-counter-box h3{
		font-size: 36px;
	}

	.we-help{
		padding: 50px 0;
	}

	.we-help-title{
		max-width: 100%;
	}

	.we-help-title h3{
		font-size: 20px;
	}

	.our-pricing.light-bg-section{
		padding: 50px 0 20px;
	}

	.pricing-item{
		padding: 30px 20px;
	}

	.pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header .icon-box{
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.pricing-content h3{
		font-size: 20px;
	}

	.pricing-body h2{
		font-size: 36px;
	}

	.pricing-body{
		margin-bottom: 20px;
	}

	.client-testimonials{
		padding: 50px 0 0;
	}

	.client-testimonials .section-row{
		padding-bottom: 50px;
		margin: 0;
	}

	.client-testimonials-content{
		max-width: 100%;
		margin-bottom: 40px;
	}

	.author-content h2{
		font-size: 22px;
	}

	.testimonial-header{
		margin-bottom: 20px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body h2{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.main-footer{
		width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px 0 0;
        border-radius: 0;
	}

	.footer-about{
		margin-bottom: 30px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-title h2{
		font-size: 36px;
	}

	.subscribe-newsletter{
		margin-bottom: 30px;
	}

	.footer-body{
		margin-bottom: 40px;
	}

	.newsletter-title h3{
		font-size: 22px;
	}

	.footer-links h2{
		font-size: 20px;
	}

	.footer-contact h2{
		font-size: 20px;
	}

	.footer-copyright{
		padding: 20px 0;
	}

	.page-header.light-bg-section::before{
		width: 200px;
		height: 180px;
		background-size: cover;
	}

	.page-header-box h1{
		font-size: 36px;
	}

	.page-header-box ol{
		padding: 5px 15px;
	}

	.page-about{
		padding: 50px 0;
	}

	.page-about-image{
		width: 100%;
		max-width: 620px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.satisfied-client-content h3{
		font-size: 22px;
	}

	.about-content{
		margin-left: 0px;
	}

	.about-company-service{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.about-company-service .icon-box{
		margin-right: 15px;
	}

	.company-service-content{
		width: calc(100% - 75px);
	}

	.company-service-content h3{
		font-size: 20px;
	}

	.our-clients{
		padding: 50px 0;
	}

	.client-logo{
		column-gap: 50px;
		row-gap: 30px;
	}

	.company-planning-image{
		text-align: center;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.company-planning-content{
		margin-top: 0px;
	}

	.company-planning-body ul li{
		margin-bottom: 15px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-content h3{
		font-size: 20px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.cta-box.service-cta{
		margin-bottom: 50px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-single-content{
		margin-right: 0px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

	.service-entry h3{
		font-size: 34px;
		margin-bottom: 20px;
	}

	.service-benefits-item .icon-box{
		margin-right: 10px;
	}

	.service-benefits-content{
		width: calc(100% - 70px);
	}

	.service-benefits-item{
		padding: 20px;
	}

	.service-benefits-content h3{
		font-size: 20px;
		margin-bottom: 5px;
	}

	.services-step-box{
		padding: 20px 15px;
	}

	.services-step-content h3{
		font-size: 20px;
		margin-bottom: 10px;
		text-transform: capitalize;
	}

	.customer-Benefit-content h3{
		font-size: 34px;
		margin-bottom: 15px;
	}

	.service-catagery-list{
		padding: 30px;
	}

	.service-catagery-list h3{
		font-size: 24px;
		margin-bottom: 20px;
	}

	.sidebar-cta-image img{
		width: 100%;
		aspect-ratio: 1/0.4;
		object-fit: cover;
	}

	.sidebar-cta-content h3{
		font-size: 24px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.post-pagination{
		margin-top: 10px;
	}

	.post-single-meta ul li{
		margin-right: 20px;
	}

	.post-single-meta ul li i{
		font-size: 16px;
		margin-right: 5px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry{
		padding: 30px;
	}

	.post-entry blockquote{
		padding: 20px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 28px;
	}

	.post-entry h2{
		font-size: 36px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.tag-links{
		font-size: 26px;
	}

	.post-social-sharing{
		text-align: left;
	}

	.contact-information{
		padding: 50px 0;
	}

	.contact-info-box{
		bottom: 20px;
		left: 10px;
		right: 10px;
	}

	.contact-info-item:hover .contact-info-box{
		bottom: 30px;
	}

	.contact-info-box .icon-box{
		width: 50px;
    	height: 50px;
		margin-bottom: 10px;
	}

	.contact-info-content p{
		font-size: 16px;
	}

	.location-map .section-title{
		max-width: 100%;
	}

	.location-map{
		padding: 50px 0;
	}

	.google-map iframe{
		height: 350px;
	}

	.page-pricing{
		padding: 50px 0 20px;
	}

	.pricing-box{
		padding: 30px;
	}

	.pricing-box-header{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-box-title h2{
		font-size: 36px;
	}

	.pricing-box-title h2 sup{
		top: -1.0em;
	}

	.pricing-box-content h3{
		font-size: 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		margin-bottom: 30px;
	}

	.faq-category-box{
		padding: 30px 20px;
	}

	.faq-section{
		margin-bottom: 30px;
	}

	.faq-section .our-faqs-title h2{
		font-size: 34px;
	}

	.error-page{
		text-align: center;
		padding: 50px 0;
	}

	.error-page-content-heading{
		margin-bottom: 30px;
	}

	.error-page-content-heading h2{
		font-size: 36px;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
        margin-bottom: 30px;
    }

	.section-title{
		text-align: center;
	}
	
	.section-title h3{
		font-size: 16px;
	}

	.section-title h1,
	.section-title h2{
		font-size: 30px;
	}

	.section-title-content{
		text-align: center;
	}

	.section-btn{
		text-align: center;
		margin-top: 20px;
	}

	.btn-large{
		font-size: 16px;
		padding: 15px 55px 15px 15px;
	}
	
	.btn-default.btn-large::before{
		width: 30px;
		height: 30px;
		background-size: 12px;
	}

	.google-rating ul{
		display: block;
	}

	.hero-content-footer .btn-default.btn-highlighted{
		margin-left: 0px;
		margin-top: 10px;
	}

	.about-image img{
		aspect-ratio: 1 / 0.60;
		object-fit: cover;
	}

	.about-video-btn{
		bottom: 20px;
		padding: 5px 10px 5px 5px;
	}

	.about-company-item .icon-box{
        margin-bottom: 10px;
    }

	.about-company-content p{
        font-size: 18px;
    }

	.service-content{
        right: 70px;
        left: 70px;
    }

	.counter-contact-btn{
        text-align: center;
    }

	.state-image-counter-1{
		margin-bottom: 20px;
	}

	.state-image-counter-2,
	.state-image-counter-1{
		display: block;
	}

	.state-image-counter-2 .counter-box,
	.state-image-counter-1 .counter-box{
		width: 100%;
		height: 100%;
		padding: 40px 10px;
		margin-left: 0px;
		margin-bottom: 20px;
	}

	.state-image-counter-2 .counter-box:last-child,
	.state-image-counter-1 .counter-box:last-child{
		margin-bottom: 0;
	}

	.state-image-counter-2 .counter-image,
	.state-image-counter-1 .counter-image{
		display: block;
		background-color: transparent;
		padding: 0;
		width: 100%;
	}

	.why-choose-image img{
		aspect-ratio: 1 / 1;
	}

	.why-choose-content{
		display: block;
	}

	.why-choose-title{
        max-width: 100%;
		margin-bottom: 10px;
    }

	.why-choose-title h2{
        font-size: 26px;
    }

	.why-choose-counter h3{
        font-size: 30px;
    }

	.why-choose-counter{
        width: 100%;
		text-align: left;
    }

	.why-choose-item{
        padding: 20px;
    }

	.why-choose-body h3{
        font-size: 18px;
    }

	.employee-counter-box h3{
        font-size: 30px;
    }

	.employee-counter-box{
		margin-right: 30px;
	}

	.we-help-content{
		display: block;
	}

	.we-help-box{
		border-right:none;
		width: 100%;
		height: auto;
		margin-right: 0px;
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.we-help-box:last-child{
		margin-bottom: 0;
	}

	.we-help-box .icon-box{
		width: 70px;
		height: 70px;
		margin-bottom: 10px;
	}

	.we-help-title h3{
        font-size: 18px;
    }

	.pricing-content h3{
        font-size: 18px;
    }

	.pricing-body h2{
        font-size: 30px;
    }

	.client-testimonials-content .section-title{
		text-align: left;
		margin-bottom: 20px;
	}

	.author-content h2{
        font-size: 20px;
    }

	.post-item-body h2{
        font-size: 18px;
    }

	.footer-logo img{
        max-width: 147px;
    }

	.footer-title h2{
        font-size: 30px;
    }

	.newsletter-title{
		margin-bottom: 20px;
	}

	.newsletter-title h3{
        font-size: 20px;
    }

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h2{
        font-size: 18px;
    }

	.footer-contact h2{
		font-size: 18px;
	}

	.page-header-box h1{
		font-size: 30px;
		margin-bottom: 10px;
	}

	.page-about-image{
        width: 100%;
        max-width: 100%;
		padding-bottom: 100px;
    }

	.page-about-image::before{
		top: 15%;
		width: 90px;
		right: 0;
		background-size: contain;
	}

	.about-img-1 img{
		width: 250px;
	}

	.about-img-2 img{
		width: 200px;
	}

	.satisfied-client{
		padding: 8px 15px;
		transform: translate(-50%, -75px);
	}

	.satisfied-client-icon{
		margin-right: 5px;
	}

	.satisfied-client-icon img{
		width: 30px;
	}

	.satisfied-client-content{
		width: calc(100% - 35px);
	}

	.satisfied-client-content h3{
        font-size: 20px;
    }

	.satisfied-client-content p{
		font-size: 14px;
	}

	.about-content .section-title{
		text-align: left;
	}

	.company-service-content h3{
        font-size: 18px;
    }

	.client-logo{
        column-gap: 45px;
        row-gap: 30px;
    }

	.client-logo .client-item img{
		width: 150px;
	}

	.company-planning-content .section-title{
		text-align: left;
	}

	.service-featured-image{
		margin-bottom: 20px;
	}
	
	.service-entry h2{
        font-size: 30px;
    }

	.service-entry h3{
        font-size: 28px;
    }

	.service-benefits-content h3{
        font-size: 18px;
    }

	.services-step-content h3{
        font-size: 18px;
    }

	.customer-benefit-image{
		margin-bottom: 20px;
	}

	.customer-Benefit-content h3{
        font-size: 28px;
        margin-bottom: 15px;
    }

	.service-catagery-list{
        padding: 30px 20px;
    }

	.service-catagery-list h3{
        font-size: 22px;
    }

	.sidebar-cta-image img{
        width: 100%;
        aspect-ratio: 1/ 0.65;
        object-fit: cover;
    }

	.sidebar-cta-content h3{
        font-size: 22px;
    }

	.post-single-meta ul li{
        margin-right: 10px;
    }

	.post-entry{
        padding: 20px;
    }

	.post-entry blockquote p{
        font-size: 24px;
    }

	.post-entry h2{
        font-size: 30px;
    }

	.tag-links{
        font-size: 22px;
    }

	.contact-info-item{
		height: calc(100% - 20px);
		margin-bottom: 20px;
	}

	.contact-info-item:last-child{
		margin-bottom: 0;
	}

	.contact-info-box{
        bottom: 20px;
        left: 30px;
        right: 30px;
    }

	.google-map iframe{
        height: 300px;
    }

	.pricing-box{
        padding: 30px 20px;
    }

	.pricing-box-title h2{
        font-size: 30px;
    }

	.pricing-box-title h2 sup{
        top: -.70em;
    }

	.pricing-box-content h3{
        font-size: 18px;
    }

	.error-page-content-heading h2{
		font-size: 30px;
	}
}

/* R  E  G  I  S  T  R  A  T  I  O  N       P  A  G  E */

.hero_sec{
	width: 100%;
	height: 50vh;
}
.hero_sec img{
	width: 100%;
	height :50vh
}

/* C  O  M  P  A  N  Y      R  E   G  I  S  T  R  A  T  I  O  N */

  .hero-section {
	/* background-image: url(images/hero.jpg); */
            /* background:url('images/hero.jpg'); */
			background-image:url(/images/hero.jpg);
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        
        .section-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 2rem;
            /* border-bottom: 3px solid #ff8159; */
            padding-bottom: 10px;
        }
        
        .company-type-card {
			height: 126px;
            background: #f8f9fa;
            border-left: 4px solid #ff8159;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }
        
        .company-type-card:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        
        .process-step {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }
        
        .benefit-item {
            background: linear-gradient(135deg, #ea9666 0%, #f59e3a 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: scale(1.02);
        }
        
        .service-badge {
            background: #ff8159;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin: 0.2rem;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #ea9666 0%, #f59e3a 100%);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }
        
        .contact-info {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #6c757d;
        }

		/* L  L  P        P R E G */
		 .section-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .lead-text {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .benefit-item {
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }
        .benefit-title {
            font-weight: 600;
            color: #34495e;
        }
        .step-card {
            border-left: 4px solid #3498db;
            transition: all 0.3s ease;
        }
        .step-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .step-number {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .conclusion-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: none;
        }
        .icon-circle {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }


		/* partnership registration */

		  .main-title { color: #2c3e50; font-weight: 700; border-bottom: 3px solid #ea9666; padding-bottom: 0.5rem; }
        .section-title { color: #34495e; font-weight: 600; position: relative; margin-top: 2.5rem; margin-bottom: 1.5rem; }
        .section-title::before { content: ''; position: absolute; left: -15px; top: 50%; transform: translateY(-50%); width: 4px; height: 100%; background: #ea9666; }
        .intro-text { font-size: 1.1rem; color: #555; background: #f8f9fa; padding: 1rem; margin-bottom: 2rem; }
        .advantage-item, .step-item { background: #fff; border: 1px solid #e9ecef; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .advantage-title, .step-title { font-weight: 600; color: #ea9666; margin-bottom: 0.5rem; }
        .document-list { background: #f8f9fa; border-radius: 8px; padding: 1.5rem; }
        .document-item { padding: 0.5rem 0; border-bottom: 1px solid #e9ecef; display: flex; align-items: center; }
        .document-item:last-child { border-bottom: none; }
        .icon { color: #ea9666; margin-right: 0.5rem; }

		/* GSTreg */
		#gst-heading{
			color: black;
		}

		    .gst-main-title {
				color: black;
            /* color: #ea9666; */
            font-weight: 700;
            margin-bottom: 1.5rem;
            /* border-bottom: 4px solid #ea9666; */
            padding-bottom: 0.5rem;
            background: linear-gradient(135deg,rgb(225, 145, 39),rgb(247, 154, 48));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-title {
            /* color: #ea9666; */
            font-weight: 600;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 20px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: #ea9666;
            border-radius: 2px;
        }
        .intro-text {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #fff, #f8f9fa);
            border: 1px solid #ea9666;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(40, 167, 69, 0.1);
        }
        .content-card {
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
        }
        .advantage-item{
              height:80px;
            background: #fff;
            border: 1px solid #e9ecef;
            border-left: 4px solid #ea9666;
            border-radius: 5px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .requirement-item {
            height:80px;
            background: #fff;
            border: 1px solid #e9ecef;
            border-left: 4px solid #ea9666;
            border-radius: 5px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .requirement-item:hover, .advantage-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .advantage-title {
            font-weight: 600;
            /* color: #ea9666; */
            /* margin-bottom: 0.5rem; */
        }
        .document-section {
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #e9ecef;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .document-type-title {
            color: #ea9666;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ea9666;
        }
        .document-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
        }
        .document-item:last-child {
            border-bottom: none;
        }
        .step-items {
            background: #fff;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .step-items::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg,rgb(225, 145, 39),rgb(247, 154, 48));
        }
        .step-title {
            font-weight: 600;
            color: #ea9666;
            margin-bottom: 0.5rem;
        }
        .icon {
            color: #c34700;
            margin-right: 0.75rem;
        }
        .service-highlight {
            background: linear-gradient(135deg,rgb(225, 145, 39),rgb(247, 154, 48));
            color: white;
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
        }
        .service-highlight h2 {
            color: white;
            margin-bottom: 1rem;
        }
        .service-items {
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            backdrop-filter: blur(10px);
        }
       
        .badge-custom {
            background-color: #ea9666;
            color: white;
            font-size: 0.8rem;
            padding: 0.25rem 0.5rem;
            border-radius: 15px;
        }

		/* msme page */

		.msme-container {
            /* max-width: 900px; */
            margin: 0 auto;
            padding: 40px 20px;
            /* font-family: 'Georgia', serif; */
            line-height: 1.6;
        }
        
        .msme-header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 3px solid #ea9666;
            padding-bottom: 20px;
        }
        
        .msme-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .msme-subtitle {
            color: #666;
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.8;
        }
        
        .msme-section {
            margin-bottom: 45px;
        }
        
        .msme-section-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
            border-left: 4px solid #ea9666;
            padding-left: 15px;
        }
        
        .msme-intro-text {
            color: #555;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .msme-list {
            list-style: none;
            padding-left: 0;
        }
        
        .msme-list-item {
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f8f9fa;
            border-left: 3px solid #ea9666;
            border-radius: 0 8px 8px 0;
        }
        
        .msme-list-item strong {
            color: #2c3e50;
            font-weight: 600;
        }
        
        .msme-sublist {
            list-style: none;
            padding-left: 20px;
            margin-top: 15px;
        }
        
        .msme-sublist-item {
            margin-bottom: 8px;
            color: #555;
            position: relative;
        }
        
        .msme-sublist-item:before {
            content: "•";
            color: #ea9666;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        .msme-highlight {
            background-color: #fdf2e9;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid #f4d3b8;
        }
        
        .msme-note {
            font-style: italic;
            color: #666;
            margin-top: 15px;
        }
        
        .msme-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .msme-benefit-item {
            background: linear-gradient(135deg, #fdf2e9 0%, #f4d3b8 100%);
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            border-left: 4px solid #ea9666;
        }
        
        .msme-step-number {
            background-color: #ea9666;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            font-size: 0.9rem;
        }
        
        .msme-document-item {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 12px 15px;
            margin-bottom: 8px;
            border-radius: 6px;
            color: #856404;
        }
        
        @media (max-width: 768px) {
            .msme-title {
                font-size: 2rem;
            }
            .msme-section-title {
                font-size: 1.5rem;
            }
            .msme-container {
                padding: 20px 15px;
            }
        }

		/* I N C O M E   P A G E */

		 .income-header {
            background: linear-gradient(135deg, var(#ff8159), var(#ff6b3d));
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .income-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .income-title {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
        }

        .income-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .income-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 129, 89, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .income-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 129, 89, 0.25);
        }

        .income-card-header {
            background: linear-gradient(45deg, var( #ffede7), #fff);
            border-bottom: 3px solid var(#ff8159);
            padding: 1.5rem;
        }

        .income-section-title {
            color: var(#ff8159);
            font-weight: 600;
            margin-bottom: 0;
            display: flex;
            align-items: center;
        }

        .income-section-title i {
            margin-right: 0.5rem;
            font-size: 1.2em;
        }

        .income-card-body {
            padding: 2rem;
        }

        .income-list {
            list-style: none;
            padding: 0;
        }

        .income-list-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 2rem;
        }

        .income-list-item:last-child {
            border-bottom: none;
        }

        .income-list-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(#ff8159);
            font-weight: bold;
            font-size: 1.2em;
        }

        .income-highlight {
            background: linear-gradient(120deg, var( #ffede7) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(#ff8159);
            margin: 1.5rem 0;
        }

        .income-btn {
            background: linear-gradient(45deg, var(#ff8159), var(#ff6b3d));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .income-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 129, 89, 0.3);
            color: white;
        }

        .income-navigation {
            background: rgba(255, 129, 89, 0.1);
            padding: 1rem 0;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .income-nav-link {
            color: var(#ff8159);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 0.25rem;
        }

        .income-nav-link:hover {
            background: var(#ff8159);
            color: white;
            text-decoration: none;
        }

        .income-footer {
            background: linear-gradient(135deg, #333, #555);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .income-stats {
            background: var( #ffede7);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin: 2rem 0;
        }

        .income-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(#ff8159);
        }

        .income-stat-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .income-title {
                font-size: 2rem;
            }
            
            .income-card-body {
                padding: 1.5rem;
            }
        }

        .income-fade-in {
            animation: incomeSlideUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes incomeSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .income-delay-1 { animation-delay: 0.1s; }
        .income-delay-2 { animation-delay: 0.2s; }
        .income-delay-3 { animation-delay: 0.3s; }
        .income-delay-4 { animation-delay: 0.4s; }

		/*////////////////////////////////////// T  D  S     P  A  G  E //////////////////////////////////////*/

		 .tds-hero-section {
            background: linear-gradient(135deg, #ff8159 0%, #ff6b35 100%);
            color: white;
            padding: 80px 0;
        }
        .tds-section-title {
            color: #2c3e50;
            border-bottom: 3px solid #ff8159;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .tds-card-hover:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .tds-process-step {
            border-left: 4px solid #ff8159;
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .tds-consequence-item {
            background: #f8f9fa;
            border-left: 4px solid #e74c3c;
            padding: 15px;
            margin-bottom: 15px;
        }
        .tds-btn-custom{
			background-color: white;
            /* background: linear-gradient(45deg, #e3d4d0, #a88a80); */
            border: none;
            color: black;
            padding: 12px 30px;
            border-radius: 25px;
        }
        .tds-btn-custom:hover {
            background: linear-gradient(45deg, #ff6b35, #ff5722);
            color: white;
        }
        .tds-icon-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .tds-icon-box i {
            font-size: 3rem;
            color: #ff8159;
            margin-bottom: 20px;
        }
		
		/* G  S  T     P  A  G  E */
		
        .gst-section-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 20px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
            display: inline-block;
        }
        .gst-subsection-title {
            color: #34495e;
            font-weight: 500;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .gst-highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .gst-advantage-item {
            background: white;
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-left: 4px solid #27ae60;
        }
        .gst-document-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .gst-step-item {
            background: white;
            padding: 20px;
            margin: 15px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 5px solid #e74c3c;
        }
        ul.custom-list {
            list-style: none;
            padding-left: 0;
        }
        ul.custom-list li {
            padding: 8px 0;
            border-bottom: 1px solid #ecf0f1;
        }
        ul.custom-list li:before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            margin-right: 10px;
        }

		/* G  S  T  R  E  T  U  R  N      P A G E */

	.gst-section-title {
      color: #333;
      font-weight: 600;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      padding-bottom: 10px;
      display: inline-block;
    }

    .gst-subsection-title {
      color: #444;
      font-weight: 500;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .gst-highlight-box {
      background: #fff4ef;
      border-left: 5px solid #ff8159;
      padding: 25px;
      margin: 40px 0;
      border-radius: 6px;
    }

    .gst-advantage-item {
      background: white;
      padding: 15px;
      margin: 12px 0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.07);
      border-left: 4px solid #ff8159;
      transition: transform 0.2s ease;
    }

    .gst-advantage-item:hover {
      transform: translateY(-3px);
    }

    .gst-document-section {
      background: #fff4ef;
      padding: 35px;
      border-radius: 12px;
      margin: 40px 0;
    }

    .gst-step-item {
      background: #fff;
      padding: 20px;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border-left: 5px solid #ff8159;
    }

    ul.custom-list {
      list-style: none;
      padding-left: 0;
    }

    ul.custom-list li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
    }

    ul.custom-list li:before {
      content: "✓";
      color: #28a745;
      font-weight: bold;
      margin-right: 10px;
    }

    .gst-hero-section {
      background: #fff0e9;
      padding: 60px 0;
      margin-bottom: 40px;
    }

    .gst-hero-section h1 {
      color: #ff8159;
    }

    .gst-hero-section p {
      color: #333;
    }

    .gst-subsection-title {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .gst-alert-info {
      background-color: #ffe9df;
      color: #5a4a42;
      border-color: #ffcbb7;
    }

    .list-unstyled li i {
      color: #ff8159;
    }

	/* X  B  R  L       P  A  G  E */

	 .xbl-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .xbl-subtitle {
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 25px;
    }

    .xbl-box {
      background: #fff4ef;
      border-left: 5px solid #ff8159;
      padding: 25px;
      border-radius: 6px;
      margin-bottom: 40px;
    }

    .xbl-list {
      margin-top: 15px;
    }

    .xbl-list li {
      margin-bottom: 12px;
    }

    .xbl-footer {
      background-color: #fff7f3;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }
  
	/* R  O  C       P  A  G  E */
	 .roc-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }
    .roc-section {
      margin-bottom: 40px;
    }
    .roc-subtitle {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 20px;
    }
    .roc-box {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }
    .roc-list li {
      margin-bottom: 12px;
    }
      
	/* T  A  X     P  A  G  E */

	 .tax-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .tax-section {
      margin-bottom: 40px;
    }

    .tax-subtext {
      font-size: 1.1rem;
      color: #555;
    }

    .tax-box {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .tax-list li {
      margin-bottom: 12px;
    }

    /* S  T  A  T  U  T  O  R  Y      P  A  G  E */
	 .sta-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .sta-section {
      margin-bottom: 40px;
    }

    .sta-text {
      font-size: 1.1rem;
      color: #555;
    }

    .sta-highlight {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .sta-list li {
      margin-bottom: 12px;
    }

    .sta-footer {
      background-color: #fff7f3;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }

	/* I  N  T  E  R  N  A  L      A  U  D  I  T */

	 .int-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .int-section {
      margin-bottom: 40px;
    }

    .int-text {
      font-size: 1.1rem;
      color: #555;
    }

    .int-highlight {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .int-list li {
      margin-bottom: 12px;
    }


	 /* C  H  A  R  I  T  A  B  L  E       P  A  G  E */

	    .char-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .char-section {
      margin-bottom: 40px;
    }

    .char-text {
      font-size: 1.1rem;
      color: #555;
    }

    .char-highlight {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .char-list li {
      margin-bottom: 12px;
    }
  
	/* I  N  F  O  R  M  A  T  I  O  N      P  A  G  E */

	.isa-title {
      color: #ff8159;
      font-weight: 700;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .isa-section {
      margin-bottom: 40px;
    }

    .isa-text {
      font-size: 1.1rem;
      color: #555;
    }

    .isa-box {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .isa-list li {
      margin-bottom: 12px;
    }

    .isa-footer {
      background-color: #fff7f3;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }

	 /* D  I  R  E  C  T     I  N  D  I  R  E  C  T     A  D  V  I  S  O  R  Y */

	   .direct-title {
      color: #ff8159;
      font-weight: bold;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .direct-section {
      margin-bottom: 40px;
    }

    .direct-text {
      font-size: 1.1rem;
      color: #555;
    }

    .direct-box {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .direct-footer {
      background-color: #fff7f3;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }

	 /* I  N  T  E  R  N  A  T  I  O  N  A  L      P  A  G  E */

	    .international-title {
      color: #ff8159;
      font-weight: bold;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff8159;
      display: inline-block;
      padding-bottom: 8px;
    }

    .international-section {
      margin-bottom: 40px;
    }

    .international-text {
      font-size: 1.1rem;
      color: #555;
    }

    .international-box {
      background-color: #fff4ef;
      padding: 25px;
      border-left: 5px solid #ff8159;
      border-radius: 6px;
    }

    .international-footer {
      background-color: #fff7f3;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }


	 /* C   A   P   I   T   A    L         F   U   N   D         P   A   G   E */

	 .fund-title {
      color: #d97353;
      font-weight: bold;
      margin-bottom: 20px;
      border-bottom: 3px solid #d97353;
      display: inline-block;
      padding-bottom: 8px;
    }

    .fund-section {
      margin-bottom: 40px;
    }

    .fund-text {
      font-size: 1.1rem;
      color: #555;
    }

    .fund-box {
      background-color: #fff1eb;
      padding: 25px;
      border-left: 5px solid #d97353;
      border-radius: 6px;
    }

    .fund-footer {
      background-color: #fff6f1;
      padding: 12px 18px;
      border-radius: 6px;
      color: #6c757d;
      font-size: 0.9rem;
      text-align: center;
    }
	.serviceinner-div a h3 {
		font-size: 20px !important;
	}

	/* F I N A N C I A L    P A G E */

	 .fin-bg-primary {
            background-color:#ff8159;
        }

        .fin-text-primary {
            color: #ff8159;
        }

        .fin-btn-primary {
            background-color:#ff8159;
            border-color:#ff8159;
            color: white;
        }

        .fin-btn-primary:hover {
            background-color: #e6734f;
            border-color: #e6734f;
            color: white;
        }

        .fin-hero {
            background: linear-gradient(135deg, #ffb399, #ff8159#ff8159);
            color: white;
            padding: 80px 0;
        }
		.fin-hero P{
			color: black;
		}
		.fin-hero-image{
			display: flex;
			align-items: center;
			justify-content: center;
			/* border: 1px solid black; */
			color: orange;
		}

        .fin-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fin-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 129, 89, 0.2);
        }

        .fin-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff8159 #ff8159, #e6734f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .fin-section {
            padding: 80px 0;
        }

        .fin-footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 30px;
        }

        .fin-stats {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
        }

        .fin-testimonial {
            background-color: #f8f9fa;
            border-left: 4px solid #ff8159#ff8159;
            padding: 30px;
            margin: 20px 0;
            border-radius: 10px;
        }

        .fin-progress {
            height: 8px;
            background-color: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
        }

        .fin-progress-bar {
            background: linear-gradient(90deg, #ff8159 #ff8159, #e6734f);
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }

		/* M  E  R  G  E  R  S       P  A  G  E */

		  .merg-container {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            min-height: 100vh;
        }

        .merg-hero {
            background: linear-gradient(135deg, #ff8159 0%, #e66a42 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 129, 89, 0.3);
        }

        .merg-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .merg-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.95;
            line-height: 1.6;
        }

        .merg-content-section {
            margin-bottom: 4rem;
            padding: 3rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #ff8159;
        }

        .merg-section-title {
            font-size: 2.5rem;
            color: #ff8159;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .merg-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #343a40;
            margin-bottom: 2rem;
        }

        .merg-highlight-box {
            background: linear-gradient(135deg, #ff9c7a 0%, #ff8159 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(255, 129, 89, 0.25);
        }

        .merg-highlight-text {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.7;
            margin: 0;
        }

        .merg-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .merg-benefit-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #ff8159;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .merg-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 129, 89, 0.2);
        }

        .merg-benefit-title {
            font-size: 1.5rem;
            color: #ff8159;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .merg-benefit-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #343a40;
        }

        .merg-process-step {
            background: #f8f9fa;
            padding: 2rem;
            margin: 1.5rem 0;
            border-radius: 10px;
            border-left: 4px solid #ff8159;
        }

        .merg-step-number {
            display: inline-block;
            background: #ff8159;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .merg-step-title {
            font-size: 1.4rem;
            color: #ff8159;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .merg-step-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #343a40;
        }

        @media (max-width: 768px) {
            .merg-title {
                font-size: 2.5rem;
            }
            
            .merg-subtitle {
                font-size: 1.2rem;
            }
            
            .merg-section-title {
                font-size: 2rem;
            }
            
            .merg-text {
                font-size: 1.1rem;
            }
        }

		/* O  R  G  A  N  I  S  A  T  I  O  N          P  A   G  E */

		 .sop-container {
			width: 100%;
            padding: 3rem 0;
            min-height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .sop-main-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 129, 89, 0.1);
            border: none;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.3s ease;
        }
        
        .sop-main-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(255, 129, 89, 0.15);
        }
        
        .sop-header {
            background: linear-gradient(135deg, #ff8159 0%, #e6734f 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .sop-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }
        
        .sop-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }
        
        .sop-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }
        
        .sop-content {
            padding: 4rem 3rem;
        }
        
        .sop-definition {
            font-size: 1.4rem;
            line-height: 1.8;
            color: #2c3e50;
            text-align: justify;
            margin-bottom: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 15px;
            border-left: 5px solid #ff8159;
            position: relative;
        }
        
        .sop-definition::before {
            content: '"';
            font-size: 4rem;
            color: #ff8159;
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: serif;
            opacity: 0.3;
        }
        
        .sop-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .sop-feature-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .sop-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 129, 89, 0.1);
            border-color: #ff8159;
        }
        
        .sop-feature-icon {
            font-size: 3rem;
            color: #ff8159;
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .sop-feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .sop-feature-text {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .sop-highlight {
            background: linear-gradient(135deg, #ffb399 0%, #ff8159 100%);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            font-weight: 600;
        }
        
        .sop-badge {
            display: inline-block;
            background: #ff8159;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .sop-badge:hover {
            background: #e6734f;
            transform: scale(1.05);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @media (max-width: 768px) {
            .sop-title { font-size: 2.5rem; }
            .sop-subtitle { font-size: 1.1rem; }
            .sop-definition { font-size: 1.2rem; padding: 1.5rem; }
            .sop-content { padding: 2rem 1.5rem; }
            .sop-header { padding: 2rem 1rem; }
        }

		/* E  X  P  O  R  T      P  A  G  E */

		  .expo-main-container {
            background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
            min-height: 100vh;
            padding: 60px 0;
        }

        .expo-content-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(255, 129, 89, 0.1);
            border: 2px solid rgba(255, 129, 89, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .expo-content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(255, 129, 89, 0.15);
        }

        .expo-header-section {
            background: linear-gradient(135deg, #ff8159 0%, #e6734f 100%);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .expo-header-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: expo-float 6s ease-in-out infinite;
        }

        @keyframes expo-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .expo-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .expo-subtitle {
            font-size: 1.4rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            font-weight: 300;
        }

        .expo-main-content {
            padding: 50px;
        }

        .expo-description {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: justify;
        }

        .expo-benefits-section {
            background: #fff5f2;
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
        }

        .expo-benefits-title {
            color: #ff8159;
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }

        .expo-benefit-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 5px solid #ff8159;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .expo-benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(255, 129, 89, 0.15);
        }

        .expo-benefit-icon {
            color: #ff8159;
            font-size: 1.8rem;
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }

        .expo-benefit-text {
            font-size: 1.1rem;
            color: #2c3e50;
            margin: 0;
            font-weight: 500;
        }

        .expo-incentives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .expo-incentive-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .expo-incentive-card:hover {
            border-color: #ff8159;
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 129, 89, 0.2);
        }

        .expo-incentive-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ff8159;
            margin-bottom: 15px;
        }

        .expo-incentive-desc {
            color: #2c3e50;
            font-size: 1rem;
            line-height: 1.6;
        }

        .expo-highlight {
            background: linear-gradient(120deg, transparent 0%, #ff9b7a 0%, transparent 100%);
            background-size: 220% 100%;
            animation: expo-highlight 3s ease-in-out infinite;
            padding: 0 5px;
            border-radius: 5px;
        }

        @keyframes expo-highlight {
            0%, 100% { background-position: 100% 0; }
            50% { background-position: 0 0; }
        }

        .expo-cta-section {
            background: linear-gradient(135deg, #ff8159 0%, #e6734f 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }

        .expo-cta-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .expo-cta-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .expo-title {
                font-size: 2.5rem;
            }
            
            .expo-main-content {
                padding: 30px;
            }
            
            .expo-description {
                font-size: 1.1rem;
            }
            
            .expo-incentives-grid {
                grid-template-columns: 1fr;
            }
        }

         /* A  D  V  I  S  O  R  Y       P  A  G  E */

          
        .service-card {
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .service-icon i {
            color: white;
            font-size: 2rem;
        }
        
        .service-title {
            color: #ff6b35;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .main-content {
            padding: 4rem 0;
            background: #f8f9fa;
        }