/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Fintech - Business Consulting HTML Template
* File          : Css File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General Css
03. Header Css
04. Hero Css
05. About Us Css
06. Our Services Css
07. Why Choose Us Css
08. Our Feature Css
09. Fact Counter Css
10. What We Do Css
11. How It Work Css
12. Our Pricing Css
13. Our FAQs Css
14. Our Testimonial Css
15. Our Blog Css
16. Footer Css
17. About Us Page Css
18. Services Page Css
19. Service Single Css
20. Blog Archive Css
21. Blog Single Css
22. Team Page Css
23. Team Single Css
24. Pricing Page Css
25. Client Page Css
26. Testimonial Page Css
27. Image Gallery Css
28. Video Gallery Css
29. FAQs Page Css
30. Contact Page Css
31. 404 Error Page Css
32. Responsive Css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #040303;
	--secondary-color: #F4F4F4;
	--text-color: #808080;
	--accent-color: #00CC61;
	--dark-color: #004050;
	--white-color: #FFFFFF;
	--divider-color: #F3F3F3;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
}


/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 18px 70px 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background-color: transparent;
}

.btn-default::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 30px;
	height: 30px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-30px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted {
	padding: 12px 20px;
}

.btn-default.btn-highlighted::after {
	display: none;
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 30px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 0px;
	margin-bottom: 15px;
}

/* .section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
} */

.section-title h1 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	/* cursor: none; */
}

.section-title h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	/* cursor: none; */
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.section-title.dark-section h3::before {
	filter: brightness(0) invert(1);
}

.section-title.dark-section p {
	color: var(--white-color);
	opacity: 90%;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header Css		 ****/
/************************************/

header.main-header {
	position: relative;
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 10px 0px 20px;
	/*padding: 25px 0;*/
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3em;
	padding: 15px 10px !important;
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: #fff;
	opacity: 100%;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 280px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	opacity: 100%;
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero {
	position: relative;
	background-color: var(--dark-color);
	background-image: url('../images/hero-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 30px 0;
}

.hero.hero-bg-image {
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 240px 0;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	padding: 240px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	margin-right: 30px;
	z-index: 2;
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.hero-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.hero.hero-bg-image .hero-content .hero-content-body {
	justify-content: center;
}

.hero-btn {
	display: flex;
	margin-right: 40px;
}

.video-play-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a {
	height: 50px;
	width: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* cursor: none; */
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
	border-color: var(--primary-color);
}

.video-play-button img {
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a img {
	filter: brightness(0) invert(0);
}

.video-play-button p {
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.hero-content-footer {
	margin-top: 40px;
}

.hero-content-footer h2 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.hero-client-slider .client-logo {
	text-align: center;
}

.hero-client-slider .client-logo img {
	width: 100%;
	max-height: 30px;
	opacity: 50%;
	transition: all 0.4s ease-in-out;
}

.hero-client-slider .client-logo img:hover {
	opacity: 100%;
}

.hero-image {
	position: relative;
	padding-left: 80px;
}

.hero-img figure {
	display: block;
}

.hero-img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.352;
}

.company-experience {
	position: absolute;
	bottom: 25%;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	width: 280px;
	animation: experienceobject 3s infinite linear alternate;
	overflow: hidden;
}

@keyframes experienceobject {
	50% {
		left: 40px;
	}
}

.company-experience::before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.company-experience:hover::before {
	top: 0;
}

.company-experience h3 {
	position: relative;
	width: 35%;
	color: var(--white-color);
	font-size: 46px;
	margin-right: 15px;
	z-index: 1;
}

.company-experience p {
	position: relative;
	width: 65%;
	color: var(--white-color);
	text-align: left;
	margin: 0;
	z-index: 1;
}

/************************************/
/***        05. About Us Css	  ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding: 0 250px 110px 0;
}

.about-img-1 {
	position: relative;
}

.about-img-1:before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, 70px);
	width: 130px;
	height: 40px;
	background: url('../images/about-img-bg.svg') no-repeat;
	background-position: bottom center;
	background-size: cover;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
	border-radius: 20px;
}

.about-img-1 img,
.about-img-2 img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-img-1 img {
	aspect-ratio: 1 / 1.18;
}

.about-img-2 {
	width: 300px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-2 img {
	aspect-ratio: 1 / 1.334;
}

.contact-circle {
	position: absolute;
	top: 30px;
	right: 50px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.contact-circle img {
	max-width: 150px;
}

.about-us-content {
	margin-left: 30px;
}

.about-goal-box {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-goal-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.about-goal-box .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.about-goal-box:hover .icon-box:before {
	transform: scale(1);
}

.about-goal-box .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.about-goal-box-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.about-goal-box-content p {
	margin: 0;
}

.about-contact-box {
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.about-contact-box .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 100px;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.about-contact-box:hover .icon-box:before {
	transform: scale(1);
}

.about-contact-box .icon-box img {
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-contact-box .about-contact-content {
	width: calc(100% - 60px);
}

.about-contact-content p {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.about-contact-content p a {
	color: inherit;
}

.about-author-box {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.about-info-box {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.about-info-box figure,
.about-info-box img {
	max-width: 50px;
	border-radius: 5px;
	margin-right: 10px;
}

.about-author-content {
	width: calc(100% - 60px);
}

.about-author-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.about-author-content p {
	text-transform: capitalize;
	margin: 0;
}

.about-info-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-info-list ul li {
	position: relative;
	text-transform: capitalize;
	margin-bottom: 10px;
	padding-left: 30px;
}

.about-info-list ul li:last-child {
	margin-bottom: 0;
}

.about-info-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/************************************/
/***    06. Our Services Css      ***/
/************************************/

.our-services {
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-service-content {
	position: sticky;
	top: 20px;
}

.our-service-list {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.service-item {
	position: relative;
	width: 50%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px;
	overflow: hidden;
}

.service-item:nth-child(odd) {
	border-bottom: none;
}

.service-item:nth-child(even) {
	border-left: none;
	border-bottom: none;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover::before,
.service-item.active::before {
	top: auto;
	height: 100%;
}

.service-content-box {
	display: flex;
}

.service-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.service-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box:before,
.service-item.active .icon-box::before {
	top: auto;
	height: 100%;
}

.service-item .icon-box img {
	position: relative;
	z-index: 1;
	max-width: 30px;
}

.service-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content p {
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item.active .service-item-content h3,
.service-item:hover .service-item-content p,
.service-item.active .service-item-content p {
	color: var(--white-color);
}

.service-btn {
	position: relative;
	width: 56px;
	height: 32px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-btn::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn::before,
.service-item.active .service-btn::before {
	top: auto;
	bottom: 0;
	height: 100%;
}

.service-btn img {
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.service-no {
	position: absolute;
	right: 40px;
	bottom: -40px;
	z-index: 1;
}

.service-no h2 {
	font-size: 100px;
	letter-spacing: 0.03em;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	stroke-width: 10px;
	-webkit-text-stroke-color: var(--divider-color);
	stroke: var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-no h2,
.service-item.active .service-no h2 {
	-webkit-text-stroke-color: var(--white-color);
	stroke: var(--white-color);
}

.service-footer {
	margin-top: 40px;
}

.service-footer p {
	margin-bottom: 0;
}

.service-footer p a {
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.service-footer p a:hover {
	color: var(--primary-color);
}

/************************************/
/***      07. Why Choose Us Css   ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-content {
	margin-right: 30px;
}

.why-choose-box-list {
	/*display: flex;*/
	flex-wrap: wrap;
	gap: 30px;
	/* border-bottom: 1px solid var(--divider-color); */
	/* margin-bottom: 30px; */
	/* padding-bottom: 30px; */

}

.why-choose-box {
	width: 100%;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 2px #dcdcdc;
	padding: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
}

.why-choose-box .icon-box {
	position: relative;
	width: 68px;
	height: 68px;
	/* background: var(--accent-color); */
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto 12px auto;
}

.why-choose-box .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background-color: var(--primary-color); */
	border-radius: 5px;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.why-choose-box:hover .icon-box:before {
	transform: scale(1);
}

.why-choose-box .icon-box img {
	position: relative;
	max-width: 65px;
	z-index: 1;
}

.why-choose-box-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-box-content p {
	margin: 0;
}

.why-choose-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.why-choose-list ul li {
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.why-choose-image {
	position: relative;
	padding: 0 0 165px 235px;
}

.why-choose-img-2 {
	max-width: 375px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure {
	display: block;
	border-radius: 20px;
}

.why-choose-img-1 img,
.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-contact-circle {
	position: absolute;
	right: 50px;
	bottom: 0;
	animation: infiniterotate 30s infinite linear;
}

.why-choose-contact-circle img {
	max-width: 130px;
}

/************************************/
/***      08. Our Feature Css     ***/
/************************************/

.our-feature {
	padding: 100px 0;
	background-color: var(--dark-color);
	background-image: url('../images/our-feature-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-feature-list {
	display: flex;
	flex-wrap: wrap;
}

.our-feature-item {
	width: 33.33%;
	padding: 40px;
	border-radius: 20px;
}

.our-feature-item:nth-child(odd) {
	background: var(--dark-divider-color);
}

.our-feature-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.our-feature-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.our-feature-item:hover .icon-box:before,
.our-feature-item.active .icon-box::before {
	transform: scale(1);
}

.our-feature-item:nth-child(odd) .icon-box {
	background: var(--dark-color);
}

.our-feature-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.feature-item-content h3 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.feature-item-content p {
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.our-feature-footer {
	text-align: center;
	margin-top: 60px;
}

.our-feature-footer p {
	color: var(--white-color);
	margin: 0;
}

.our-feature-footer p span {
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	line-height: 1.1em;
	padding: 2px 10px;
	margin-right: 5px;
}

.our-feature-footer a {
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.our-feature-footer a:hover {
	color: var(--primary-color);
}

/************************************/
/***     09. Fact Counter Css     ***/
/************************************/

.fact-counter {
	padding: 100px 0;
}

.fact-counter-image {
	position: relative;
	padding: 0 45px 55px 0;
}

.fact-counter-img figure {
	display: block;
	border-radius: 20px;
}

.fact-counter-img img {
	width: 100%;
	aspect-ratio: 1 / 0.945;
	object-fit: cover;
	border-radius: 20px;
}

.fact-counter-skillbar {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 350px;
	border-radius: 20px;
	animation: moveskillbar 3s infinite linear alternate;
}

@keyframes moveskillbar {
	50% {
		right: 40px;
	}
}

.fact-counter-skillbar img {
	border-radius: 20px;
}

.fact-counter-content {
	margin-left: 20px;
}

.fact-counter-box-list {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.fact-counter-box {
	width: calc(33.33% - 20px);
}

.fact-counter-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color: var(--accent-color);
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

.fact-counter-box .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 5px;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.fact-counter-box:hover .icon-box::before {
	transform: scale(1);
}

.fact-counter-box .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.fact-counter-box-content h2 {
	font-size: 46px;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.fact-counter-box-content p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.fact-counter-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.fact-counter-list ul li {
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.fact-counter-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/************************************/
/***      10. What We Do Css      ***/
/************************************/

.what-we-do {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.what-we-do-content {
	margin-right: 30px;
}

.what-we-do-list {
	margin-bottom: 40px;
}

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.what-we-do-list ul li {
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.what-we-do-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.what-we-do-images {
	position: relative;
	padding: 0 80px 100px 15px;
}

.what-do-we-img-1 figure,
.what-do-we-img-2 figure {
	display: block;
	border-radius: 20px;
}

.what-do-we-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.831;
	object-fit: cover;
	border-radius: 20px;
}

.what-do-we-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 280px;
}

.what-do-we-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 0.723;
	object-fit: cover;
	border: 9px solid var(--secondary-color);
	border-radius: 20px;
}

.experience-counter-box {
	position: absolute;
	bottom: 45px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 275px;
	background-color: var(--white-color);
	border-left: 2px solid var(--accent-color);
	border-radius: 5px;
	padding: 15px;
	overflow: hidden;
	animation: yearbox 3s infinite linear alternate;
}

@keyframes yearbox {
	50% {
		left: 30px;
	}
}

.experience-counter-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.experience-counter-box:hover::before {
	width: 100%;
}

.experience-counter-no {
	margin-right: 15px;
}

.experience-counter-no h2 {
	position: relative;
	font-size: 46px;
	line-height: normal;
	letter-spacing: -0.02em;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.experience-counter-content {
	width: 60%;
}

.experience-counter-content p {
	position: relative;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.experience-counter-box:hover .experience-counter-no h2,
.experience-counter-box:hover .experience-counter-content p {
	color: var(--white-color);
}

/************************************/
/***      11. How It Work Css     ***/
/************************************/

.how-it-work {
	padding: 100px 0;
}

.how-it-work-content {
	position: sticky;
	top: 30px;
}

.work-step-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 24px 24px 0 24px;
	margin-bottom: 30px;
	overflow: hidden;
}

.work-step-item:last-child {
	margin-bottom: 0;
}

.work-step-item::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dark-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.work-step-item:hover::before {
	height: 100%;
	top: 0;
	bottom: auto;
}

.work-step-item-content {
	position: relative;
	margin-bottom: 0px;
	z-index: 1;
}

.work-step-item-content h3 {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item-content h2 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content h3,
.work-step-item:hover .work-step-item-content h2 {
	color: var(--white-color);
}

.work-step-item-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content p {
	color: var(--white-color);
	opacity: 80%;
}

.work-step-item-no {
	position: relative;
	margin-bottom: -22px;
	z-index: 1;
}

.work-step-item-no h2 {
	font-size: 60px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: transparent;
	stroke-width: 10px;
	-webkit-text-stroke-width: 1px;
	stroke: var(--text-color);
	-webkit-text-stroke-color: var(--text-color);
	opacity: 15%;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-item-no h2 {
	stroke: var(--white-color);
	-webkit-text-stroke-color: var(--white-color);
}

/************************************/
/***      12. Our Pricing Css     ***/
/************************************/

.our-pricing {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.pricing-box {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pricing-header h2 {
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sup {
	font-size: 30px;
	top: -6px;
}

.pricing-header sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body {
	margin-bottom: 30px;
}

.pricing-list-title {
	margin-bottom: 20px;
}

.pricing-list-title h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.pricing-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-list ul li {
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 10px;
}

.pricing-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.pricing-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-btn .btn-default {
	width: 100%;
	text-align: center;
}

.pricing-box.highlighted-box {
	position: relative;
	background-color: var(--dark-color);
	overflow: hidden;
}

.highlighted-box::before {
	content: 'featured';
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dark-color);
	top: 35px;
	right: -45px;
	width: 190px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	transform: rotate(45deg);
}

.pricing-box.highlighted-box .pricing-header {
	border-color: var(--dark-divider-color);
	padding: 0 60px 30px 0;
}

.pricing-box.highlighted-box .pricing-header h3,
.pricing-box.highlighted-box .pricing-header h2,
.pricing-box.highlighted-box .pricing-header h2 sub,
.pricing-box.highlighted-box .pricing-list-title h3,
.pricing-box.highlighted-box .pricing-list ul li,
.pricing-box.highlighted-box .pricing-list ul li::before {
	color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default {
	background: var(--white-color);
	color: var(--dark-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover {
	color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover::before {
	background: var(--accent-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li {
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-image {
	position: relative;
	padding-right: 70px;
}

.our-faqs-img figure {
	display: block;
	border-radius: 20px;
}

.our-faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 1.065;
	object-fit: cover;
	border-radius: 20px;
}

.client-review-box {
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 100%;
	max-width: 210px;
	text-align: center;
	background-color: var(--dark-color);
	border-radius: 10px;
	padding: 20px;
	animation: reviewbox 3s infinite linear alternate;
}

@keyframes reviewbox {
	50% {
		right: 50px;
	}
}

.client-review-box-content {
	margin-bottom: 15px;
}

.client-review-box-content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
}

.client-review-box-content p span {
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.client-review-images {
	display: inline-flex;
}

.client-review-images .client-image {
	position: relative;
	display: inline-block;
	margin-left: -10px;
	border: 1px solid var(--dark-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.client-review-images .client-image:first-child {
	margin: 0;
}

.client-review-images .client-image figure {
	display: block;
}

.client-review-images .client-image img {
	max-width: 50px;
}

.client-image.add-more {
	width: 32px;
	height: 32px;
	background-color: var(--white-color);
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover {
	background-color: var(--accent-color);
}

.client-image.add-more p {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover p {
	color: var(--white-color);
}

.faq-accordion .accordion-item {
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 16px 45px 16px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background-color: var(--dark-color);
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	background-color: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
	position: absolute;
	right: 16px;
	top: 50%;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	transform: translate(0px, -10px);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f067';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	background-color: var(--dark-color);
	padding: 16px 45px 16px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

/************************************/
/***   14. Our Testimonial Css    ***/
/************************************/

.our-testimonial {
	padding: 100px 0;
	background: url(../images/testimonial-bg-img.svg) no-repeat;
	background-color: var(--dark-color);
	background-position: center center;
	background-size: auto;
}

.testimonial-content {
	margin-right: 40px;
}

.testimonial-slider-box {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	padding: 50px 40px;
	border-radius: 20px;
}

.testimonial-slider {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.testimonial-slider .swiper-wrapper {
	/* cursor: none; */
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.customer-logo img {
	width: 100%;
	max-width: 170px;
}

.testimonial-quotes {
	margin-left: 20px;
}

.testimonial-quotes img {
	width: 100%;
	max-width: 40px;
}

.testimonial-body {
	margin-bottom: 40px;
}

.testimonial-body p {
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.testimonial-author {
	width: 75%;
	display: flex;
	align-items: center;
}

.testimonial-author .author-image {
	margin-right: 20px;
}

.testimonial-author .author-image figure {
	display: block;
	border-radius: 5px;
}

.testimonial-author .author-image img {
	max-width: 40px;
	border-radius: 5px;
}

.testimonial-author .author-content {
	width: calc(100% - 60px);
}

.testimonial-author .author-content h3 {
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: capitalize;
	color: var(--white-color);
	padding-right: 20px;
}

.testimonial-author .author-content h3 span {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.testimonial-slider .testimonial-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	position: relative;
	height: 12px;
	width: 12px;
	background: var(--white-color);
	margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 0;
	width: 0;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
	height: 24px;
	width: 24px;
	border: 1px solid var(--accent-color);
}

.customer-rating-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.customer-rating-box {
	width: calc(33.33% - 26.67px);
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 10px;
}

.customer-rating-image {
	margin-right: 10px;
}

.customer-rating-image img {
	width: 100%;
	max-width: 40px;
}

.customer-rating-content p {
	color: var(--white-color);
	text-transform: capitalize;
	display: block;
	margin-bottom: 5px;
}

.customer-rating-counter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.customer-rating-counter h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
}

.customer-rating-star-box {
	text-align: center;
}

.customer-rating-star i {
	font-size: 12px;
	color: var(--white-color);
}

.customer-rating-counter p {
	text-transform: capitalize;
	text-align: center;
	color: var(--white-color);
	margin-right: 10px;
	margin-bottom: 0;
}

.customer-rating-counter p span {
	display: block;
	font-size: 20px;
	font-weight: 500;
}

.star-rating-img img {
	width: 100%;
	max-width: 85px;
}

.customer-rating-box.customer-rating-content p {
	margin: 0;
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image,
.post-item-body {
	width: calc(50% - 15px);
}

.post-featured-image a {
	/* cursor: none; */
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
	border-radius: 20px;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-meta {
	margin-bottom: 20px;
}

.post-item-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-item-meta ul li {
	color: var(--text-color);
	text-transform: capitalize;
	display: inline-block;
	margin-right: 15px;
}

.post-item-meta ul li:last-child {
	margin-right: 0;
}

.post-item-meta ul li i {
	color: var(--text-color);
	font-size: 16px;
	margin-right: 5px;
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.4em;
}

.post-item-content h2 a {
	color: inherit;
}

.readmore-btn {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before {
	filter: brightness(0) invert(0);
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

footer.main-footer {
	background: url('../images/footer-bg.svg'), var(--dark-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 100px 0 0 0px;
}

.footer-newsletter-box {
	margin-right: 120px;
}

.footer-newsletter-title {
	margin-bottom: 40px;
}

.footer-newsletter-title h3 {
	font-size: 34px;
	color: var(--white-color);
}

.newsletter-form .form-group {
	display: flex;
}

.newsletter-form .form-group .form-control {
	width: 85%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 15px;
	opacity: 80%;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 80%;
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--accent-color);
	width: 15%;
	border: none;
	border-radius: 0 10px 10px 0;
	padding: 15px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn img {
	max-width: 28px;
}

.footer-links h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	/* text-transform: capitalize; */
	color: var(--white-color);
	margin-bottom: 10px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
}

.footer-cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	margin-top: 60px;
	padding: 40px;
}

.footer-logo {
	width: calc(20% - 10px);
}

.footer-logo img {
	width: 100%;
	max-width: 210px;
}

.footer-contact-box {
	width: calc(80% - 10px);
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 30px 80px;
}

.footer-contact-item {
	position: relative;
}

.footer-contact-item::before {
	content: '';
	position: absolute;
	right: -40px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.footer-contact-item:last-child::before {
	display: none;
}

.footer-contact-item p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}

.footer-contact-item h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-copyright {
	padding: 15px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
	opacity: 80%;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-menu ul li {
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-right: 40px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
	margin-right: 0;
}

.footer-menu ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	height: 6px;
	width: 6px;
	transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
	display: none;
}

.footer-menu ul li:hover {
	color: var(--accent-color);
}

.footer-menu ul li a {
	color: inherit;
}

/************************************/
/***     17. About Us Page Css    ***/
/************************************/

.page-header {
	background-color: var(--dark-color);
	background-image: url('../images/page-header-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0 40px;
}

.page-header-box {
	text-align: center;
}

.page-header-box span {
	display: inline-block;
	font-size: 42px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.02em;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 10px;
	/* cursor: none; */
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	font-size: 18px;
	color: var(--white-color);
}

.our-approach {
	background: var(--secondary-color);
	padding: 100px 0 70px;
}

.mission-vission-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.mission-vission-header {
	position: relative;
	padding: 40px;
}

.mission-vission-header:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-header::after {
	top: auto;
	bottom: 0;
	height: 100%;
}

.mission-vission-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	z-index: 1;
	overflow: hidden;
}

.mission-vission-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .icon-box:before {
	top: auto;
	height: 100%;
}

.mission-vission-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.mission-vission-content {
	position: relative;
	z-index: 1;
}

.mission-vission-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.mission-vission-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-content h3,
.mission-vission-item:hover .mission-vission-content p {
	color: var(--white-color);
}

.mission-vission-image img {
	width: 100%;
	aspect-ratio: 1 / 0.59;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-image img {
	transform: scale(1.1);
}

.our-benefit {
	padding: 100px 0;
}

.our-benefit-content {
	margin-right: 30px;
}

.our-benefit-img {
	margin-top: 30px;
}

.our-benefit-img figure {
	display: block;
	border-radius: 20px;
}

.our-benefit-img img {
	width: 100%;
	aspect-ratio: 1 / 0.543;
	object-fit: cover;
	border-radius: 20px;
}

.our-benefit-box {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.our-benefit-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.our-benefit-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.our-benefit-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover::after {
	top: auto;
	bottom: 0;
	height: 100%;
}

.our-benefit-item .icon-box {
	margin-bottom: 40px;
}

.our-benefit-item .icon-box img {
	position: relative;
	z-index: 1;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.benefit-item-content {
	position: relative;
	z-index: 1;
}

.benefit-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-item-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p {
	color: var(--white-color);
}

.our-benefit-get-quote {
	text-align: center;
}

.our-benefit-get-quote p {
	margin-bottom: 0;
}

.our-benefit-get-quote p a {
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.our-benefit-get-quote p a:hover {
	color: var(--primary-color);
}

.our-partners {
	padding: 100px 0;
	background-color: var(--dark-color);
	background-image: url('../images/our-partners-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.our-partners-content {
	margin-right: 80px;
}

.our-partners-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	text-align: center;
}

.our-partner-item {
	width: auto;
	display: inline-flex;
	background: var(--dark-divider-color);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
}

.our-partner-item:first-child {
	margin-left: 1px;
}

.our-partner-item img {
	width: 100%;
	max-height: 35px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-image {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.team-image a {
	display: block;
	/* cursor: none; */
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.083;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 10px;
}

.team-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.team-social-icon ul li {
	display: inline-block;
	margin-right: 15px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a i {
	color: var(--accent-color);
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover i {
	color: var(--primary-color);
}

/************************************/
/***    18. Services Page Css     ***/
/************************************/

.page-services {
	padding: 100px 0;
}

.page-services .service-item {
	width: 100%;
	box-shadow: 0px 0px 50px 2px #04030308;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-services .service-item:before {
	background: var(--dark-color);
}

.page-services .service-item .icon-box {
	margin-right: 0;
	margin-bottom: 40px;
}

.page-services .service-item-content {
	width: 100%;
}

.page-services .service-footer {
	text-align: center;
	margin-top: 10px;
}

/************************************/
/***    19. Service Single Css    ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.service-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.service-catagery-list h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 30px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 10px;
	text-transform: capitalize;
	padding: 16px 50px 16px 20px;
	transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--white-color);
	background-color: var(--dark-color);
}

.service-catagery-list ul li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-image: url('../images/arrow-text.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
	filter: brightness(0) invert(1);
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	border-radius: 20px;
	z-index: 0;
}

.cta-box-content {
	margin-bottom: 40px;
}

.cta-box-content,
.cta-contact-info {
	position: relative;
	z-index: 1;
}

.cta-box-content img {
	max-width: 160px;
	margin-bottom: 20px;
}

.cta-box-content h3 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.cta-contact-info {
	position: relative;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 10px 0px #04030380;
}

.cta-contact-info:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	opacity: 20%;
	border-radius: 10px;
	z-index: 0;
}

.cta-info-item {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 1;
}

.cta-info-item:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.cta-info-item p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 5px;
}

.cta-info-item h3 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
}

.service-featured-image {
	margin-bottom: 40px;
}

.service-featured-image figure {
	display: block;
	border-radius: 20px;
}

.service-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 40px;
}

.service-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.service-entry-list ul li {
	/* width: calc(33.33% - 13.33px); */
	position: relative;
	/*text-transform: capitalize;*/
	padding-left: 30px;
	    line-height: 33px;
    font-weight: 300;
    font-size: 21px;
	margin-bottom: 5px;
}

.service-entry-list ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 3px;
	left: 0;
}

.service-list-video {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 40px 0;
}

.service-list-video .service-entry-list {
	width: calc(52% - 15px);
}

.service-list-video .service-entry-list ul li {
	width: 100%;
}

.service-image-video {
	position: relative;
	width: calc(48% - 15px);
}

.service-image-video .video-image a {
	display: block;
	/* cursor: none; */
}

.service-image-video .video-image figure {
	display: block;
	border-radius: 20px;
}

.service-image-video .video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.service-image-video .video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.647;
	object-fit: cover;
	border-radius: 20px;
}

.service-image-video .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.service-image-video .video-play-button a {
	border: none;
	background-color: var(--accent-color);
	width: 50px;
	height: 50px;
	margin: 0;
}

.service-image-video .video-play-button a:before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.service-image-video .video-play-button a:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.service-image-video .video-play-button a i {
	font-size: 20px;
	color: var(--white-color);
}

.service-guidance,
.services-steps {
	margin-bottom: 40px;
}

.service-guidance-box {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.service-guidance-item {
	width: calc(33.33% - 20px);
}

.service-guidance-content {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.service-guidance-content .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.service-guidance-content .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-content .icon-box::before {
	top: auto;
	height: 100%;
}

.service-guidance-content .icon-box img {
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.service-guidance-title {
	width: calc(100% - 60px);
}

.service-guidance-title h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-guidance-img figure {
	display: block;
	border-radius: 20px;
}

.service-guidance-img img {
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-img img {
	transform: scale(1.1);
}

.service-steps-box {
	background-color: var(--dark-color);
	border-radius: 20px;
	padding: 60px;
	margin-top: 40px;
}

.service-step-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-step-item {
	width: calc(33.33% - 20px);
}

.service-step-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	overflow: hidden;
}

.service-step-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.service-step-item:hover .icon-box:before {
	top: auto;
	height: 100%;
}

.service-step-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.service-step-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.service-step-item-content p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 30px;
}

.service-steps-box .service-entry-list ul li,
.service-steps-box .service-entry-list ul li:before {
	color: var(--white-color);
}

/************************************/
/***     20. Blog Archive Css     ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	gap: 20px;
}

.page-blog .post-featured-image,
.page-blog .post-item-body {
	width: 100%;
}

.page-blog .post-featured-image img {
	aspect-ratio: 1 / 0.75;
}

.page-blog .post-item-meta {
	margin-bottom: 15px;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***     21. Blog Single Css      ***/
/************************************/

.page-single-post {
	background-color: var(--white-color);
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	overflow: hidden;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 70px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--dark-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 20px;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 5px;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 5px;
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***      22. Team Page Css       ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***      23. Team Single Css     ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.team-single-img {
	margin-bottom: 60px;
}

.team-single-img figure {
	display: block;
	border-radius: 20px;
}

.team-single-img img {
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 20px;
}

.team-contact-form {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.team-single-content h3 {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 5px;
}

.team-single-content h2 {
	display: inline-block;
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	/* cursor: none; */
}

.team-single-content p {
	margin-bottom: 20px;
}

.team-single-content p:last-child {
	margin-bottom: 0;
}

.team-member-content,
.team-personal-info,
.team-expertise {
	margin-bottom: 40px;
}

.team-member-header {
	margin-bottom: 40px;
}

.team-member-body {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-contact-box {
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	overflow: hidden;
}

.team-contact-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 5px;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.team-contact-box:hover::before {
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
}

.team-contact-box .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 5px;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box:before {
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.team-contact-content {
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.team-contact-content p {
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .team-contact-content p {
	color: var(--white-color);
	opacity: 80%;
}

.team-contact-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.team-contact-box:hover .team-contact-content h3 {
	color: var(--white-color);
}

.team-member-footer {
	display: flex;
	align-items: center;
	gap: 20px;
}

.team-member-footer span {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
}

.team-member-footer ul {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-member-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.team-member-footer ul li:last-child {
	margin: 0;
}

.team-member-footer ul li a {
	color: var(--accent-color);
}

.team-member-footer ul li:hover a {
	color: var(--primary-color);
}

.team-member-footer ul li a i {
	color: inherit;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.team-expertise ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.team-expertise ul li {
	width: calc(50% - 10px);
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
}

.team-expertise ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.skills-progress-bar {
	margin-bottom: 20px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
}

.skills-progress-bar .skill-data .skill-no {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/***     24. Pricing Page Css     ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***     25. Client Page Css      ***/
/************************************/

.page-client {
	padding: 100px 0 70px;
}

.company-logo {
	background-color: var(--secondary-color);
	border-radius: 30px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 70px 60px;
}

.company-logo img {
	width: 100%;
	height: 60px;
}

/************************************/
/***   26. Testimonial Page Css   ***/
/************************************/

.page-testimonial {
	padding: 100px 0 70px;
}

.client-testimonial-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #04030308;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.client-testimonial-header {
	position: relative;
	padding: 30px 30px 60px;
	text-align: center;
	overflow: hidden;
}

.client-testimonial-header:before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header::before {
	top: 0;
}

.client-testimonial-quote {
	margin-bottom: 20px;
}

.client-testimonial-quote img {
	position: relative;
	max-width: 44px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-quote img {
	filter: brightness(0) invert(1);
}

.client-testimonial-header p {
	position: relative;
	margin: 0;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header p {
	color: var(--white-color);
}

.client-testimonial-body {
	background: var(--dark-color);
	text-align: center;
	padding: 0 30px 30px 30px;
}

.client-author-image {
	position: relative;
	top: -30px;
}

.client-author-image figure,
.client-author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 0 auto;
}

.client-author-image img {
	border: 2px solid var(--divider-color);
}

.client-author-content h3 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p {
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     27. Image Gallery Css    ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	/* cursor: none; */
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     28. Video Gallery Css    ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	/* cursor: none; */
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	/* cursor: none; */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       29. FAQs Page Css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 15px;
	text-transform: capitalize;
	padding: 15px 50px 15px 20px;
	transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--white-color);
	background-color: var(--dark-color);
}

.faq-catagery-list ul li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-image: url('../images/arrow-text.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
	filter: brightness(0) invert(1);
}

.page-faq-accordion {
	margin-bottom: 40px;
}

.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***     30. Contact Page Css     ***/
/************************************/

.page-contact-us {
	padding: 100px 0 70px;
}

.contact-info-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.contact-info-img img {
	width: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

.contact-info-body {
	position: relative;
	padding: 0 20px 30px;
	text-align: center;
}

.contact-info-body:after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-body:after {
	top: 0;
}

.contact-info-body .icon-box {
	position: relative;
	top: -30px;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 1;
	overflow: hidden;
}

.contact-info-body .icon-box:after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	border-radius: 5px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after {
	top: 0;
}

.contact-info-body .icon-box img {
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
}

.contact-info-content {
	position: relative;
	z-index: 1;
}

.contact-info-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p,
.contact-info-content p a {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	transition: all 0.4s ease-in-out;
}


.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p,
.contact-info-item:hover .contact-info-content p a {
	color: var(--white-color);
}

.contact-form-section {
	background: var(--secondary-color);
	padding: 100px 0;
}

.contact-form-img {
	margin-right: 45px;
}

.contact-form-img figure {
	display: block;
	border-radius: 20px;
}

.contact-form-img img {
	width: 100%;
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
	border-radius: 20px;
}

.google-map {
	overflow: hidden;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	height: 600px;
	width: 100%;
}

/************************************/
/***    31 . 404 Error Page Css   ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

/************************************/
/***      32. Responsive Css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-appointment-box {
		padding: 50px;
	}
}

@media only screen and (max-width: 991px) {

	.navbar {
		padding: 20px 0;
	}

	.main-menu ul li.highlighted-menu {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		font-size: 16px;
		padding: 15px 60px 15px 20px;
	}

	.btn-default::after {
		height: 24px;
		width: 24px;
		transform: translate(-20px, -50%);
	}

	.btn-default.btn-highlighted {
		padding: 15px 20px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
		padding-left: 30px;
	}

	.section-title h3::before {
		width: 20px;
		height: 20px;
	}

	.section-title h1 {
		font-size: 55px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.section-title-content {
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 30px;
	}

	.hero {
		padding: 40px 0 0;
	}

	.hero.hero-bg-image {
		padding: 205px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 205px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content-footer {
		margin-top: 30px;
	}

	.hero-content-footer h2 {
		margin-bottom: 20px;
	}

	.hero-image {
		width: 100%;
		max-width: 60%;
		margin: 0 auto;
		text-align: center;
	}

	.company-experience {
		width: 250px;
		padding: 10px;
	}

	.company-experience h3 {
		font-size: 36px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		max-width: 620px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content {
		margin-left: 0px;
	}

	.about-goal-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-goal-box .icon-box {
		margin-bottom: 20px;
	}

	.about-info-box {
		margin-bottom: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.our-service-content {
		margin-bottom: 30px;
	}

	.service-item {
		padding: 30px;
	}

	.service-no {
		bottom: -30px;
	}

	.service-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-item-content {
		width: calc(100% - 60px);
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.service-item-content p {
		margin-bottom: 20px;
	}

	.service-no h2 {
		font-size: 80px;
	}

	.service-footer {
		margin-top: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-choose-box .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-box-content h3 {
		margin-bottom: 10px;
	}

	.why-choose-image {
		max-width: 620px;
		margin: 0 auto;
	}

	.our-feature {
		padding: 50px 0;
	}

	.our-feature-item {
		padding: 20px;
	}

	.our-feature-item .icon-box {
		margin-bottom: 20px;
	}

	.feature-item-content h3 {
		margin-bottom: 10px;
	}

	.our-feature-footer {
		margin-top: 30px;
	}

	.fact-counter {
		padding: 50px 0;
	}

	.fact-counter-image {
		margin-bottom: 30px;
	}

	.fact-counter-img img {
		aspect-ratio: 1 / 0.7;
	}

	.fact-counter-skillbar {
		max-width: 300px;
	}

	.fact-counter-content {
		margin-left: 0;
	}

	.fact-counter-box-list {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.fact-counter-box-content h2 {
		font-size: 36px;
		margin-bottom: 5px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-do-list {
		margin-bottom: 30px;
	}

	.what-we-do-images {
		padding: 0 60px 80px 15px;
	}

	.what-do-we-img-1 img {
		aspect-ratio: 1 / 0.7;
	}

	.experience-counter-box {
		max-width: 245px;
		padding: 10px;
	}

	.experience-counter-no {
		margin-right: 10px;
	}

	.experience-counter-no h2 {
		font-size: 36px;
	}

	.experience-counter-content {
		width: 66%;
	}

	.how-it-work {
		padding: 50px 0;
	}

	.how-it-work-content {
		position: initial;
		margin-bottom: 30px;
	}

	.work-step-item {
		padding: 30px 30px 0 30px;
		margin-bottom: 30px;
	}

	.work-step-item-content {
		margin-bottom: 10px;
	}

	.work-step-item-no {
		margin-bottom: -30px;
	}

	.work-step-item-no h2 {
		font-size: 80px;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-box {
		padding: 20px;
	}

	.pricing-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header h3 {
		margin-bottom: 15px;
	}

	.pricing-header h2 {
		font-size: 36px;
	}

	.pricing-header sup {
		font-size: 22px;
	}

	.pricing-list-title {
		margin-bottom: 15px;
	}

	.pricing-body {
		margin-bottom: 20px;
	}

	.pricing-box.highlighted-box .pricing-header {
		padding: 0 60px 20px 0;
	}

	.highlighted-box::before {
		font-size: 12px;
		top: 22px;
		right: -65px;
		height: 26px;
		;
	}

	.pricing-benefit-list {
		margin-top: 10px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-image {
		margin-bottom: 30px;
	}

	.our-faqs-img img {
		aspect-ratio: 1 / 0.8;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button,
	.faq-accordion .accordion-item .accordion-body {
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		right: 12px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-slider {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-slider-box {
		padding: 30px;
	}

	.testimonial-header {
		margin-bottom: 20px;
	}

	.testimonial-body {
		margin-bottom: 20px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
		height: 8px;
		width: 8px;
		margin: 0 6px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
		height: 20px;
		width: 20px;
	}

	.customer-rating-boxes {
		gap: 20px;
	}

	.customer-rating-box {
		width: calc(33.33% - 13.33px);
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item {
		gap: 20px;
	}

	.post-featured-image,
	.post-item-body {
		width: 100%;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.79;
	}

	.post-item-meta {
		margin-bottom: 10px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	.readmore-btn {
		font-size: 16px;
		padding-right: 30px;
	}

	.readmore-btn::before {
		height: 20px;
		width: 20px;
	}

	footer.main-footer {
		padding: 50px 0 0 0;
	}

	.footer-newsletter-box {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-title {
		margin-bottom: 20px;
	}

	.footer-newsletter-title h3 {
		font-size: 28px;
	}

	.newsletter-form .form-group .form-control,
	.newsletter-form .form-group .newsletter-btn {
		padding: 10px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-cta-box {
		margin-top: 30px;
		padding: 30px;
	}

	.footer-logo {
		width: calc(25% - 10px);
	}

	.footer-contact-box {
		width: calc(75% - 10px);
		gap: 20px 30px;
	}

	.footer-contact-item::before {
		right: -15px;
	}

	.footer-contact-item h3 {
		font-size: 18px;
	}

	.footer-copyright {
		padding: 30px 0;
	}

	.footer-menu ul li {
		margin-right: 20px;
	}

	.footer-menu ul li::before {
		right: -14px;
	}

	.page-header {
		background-size: contain;
		padding: 80px 0;
	}

	.page-header-box span {
		font-size: 55px;
	}

	.our-approach {
		padding: 50px 0 20px;
	}

	.mission-vission-header {
		padding: 30px;
	}

	.mission-vission-item .icon-box {
		margin-bottom: 20px;
	}

	.mission-vission-content h3 {
		margin-bottom: 10px;
	}

	.our-benefit {
		padding: 50px 0;
	}

	.our-benefit-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-benefit-img {
		margin-top: 30px;
	}

	.our-benefit-list {
		margin-bottom: 30px;
	}

	.our-benefit-box {
		padding: 30px;
	}

	.our-benefit-item .icon-box {
		margin-bottom: 30px;
	}

	.benefit-item-content h3 {
		margin-bottom: 10px;
	}

	.our-partners {
		padding: 50px 0;
	}

	.our-partners-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-partners-list {
		max-width: 620px;
		margin: 0 auto;
	}

	.our-partner-item {
		padding: 20px 25px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-member-item {
		padding: 15px;
	}

	.team-image {
		margin-bottom: 20px;
	}

	.page-services {
		padding: 50px 0;
	}

	.page-services .service-item .icon-box {
		margin-bottom: 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li a {
		padding: 10px 45px 10px 15px;
	}

	.service-catagery-list ul li a::after {
		right: 15px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.cta-box-content {
		margin-bottom: 30px;
	}

	.cta-info-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.service-featured-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry h2 {
		font-size: 36px;
	}

	.service-entry-list ul {
		gap: 10px;
	}

	.service-entry-list ul li:before {
		font-size: 18px;
	}

	.service-entry-list ul li {
		width: calc(33.33% - 6.67px);
		padding-left: 30px;
	}

	.service-list-video {
		gap: 20px;
		margin: 30px 0;
	}

	.service-list-video .service-entry-list {
		width: calc(54% - 10px);
	}

	.service-image-video {
		width: calc(46% - 10px);
	}

	.service-guidance,
	.services-steps {
		margin-bottom: 30px;
	}

	.service-guidance-box {
		margin-top: 30px;
		gap: 20px;
	}

	.service-guidance-item {
		width: calc(33.33% - 13.33px);
	}

	.service-guidance-content {
		margin-bottom: 20px;
	}

	.service-steps-box {
		padding: 30px;
		margin-top: 30px;
	}

	.service-step-item-list {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-step-item .icon-box {
		width: 40px;
		height: 40px;
		margin-bottom: 20px;
	}

	.service-step-item .icon-box img {
		max-width: 25px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .post-item-meta {
		margin-bottom: 10px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 45px;
		padding: 25px 25px 25px 85px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-single-img {
		margin-bottom: 30px;
	}

	.team-single-img img {
		aspect-ratio: 1 / 0.65;
		object-position: top center;
	}

	.team-contact-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 14px 16px;
	}

	.team-single-content h2 {
		font-size: 36px;
	}

	.team-member-content,
	.team-personal-info,
	.team-expertise {
		margin-bottom: 30px;
	}

	.team-member-header {
		margin-bottom: 30px;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-client {
		padding: 50px 0 20px;
	}

	.company-logo {
		border-radius: 20px;
		padding: 20px 30px;
	}

	.company-logo img {
		width: 100%;
		height: 60px;
	}

	.page-testimonial {
		padding: 50px 0 20px;
	}

	.client-testimonial-header {
		padding: 20px 20px 50px;
	}

	.client-testimonial-body {
		padding: 0 20px 20px 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li a {
		padding: 10px 50px 10px 20px;
	}

	.page-faq-accordion {
		margin-bottom: 30px;
	}

	.page-contact-us {
		padding: 50px 0 20px;
	}

	.contact-info-body {
		padding: 0 60px 30px;
	}

	.contact-info-body .icon-box {
		top: -25px;
		width: 50px;
		height: 50px;
	}

	.contact-info-body .icon-box img {
		max-width: 28px;
	}

	.contact-form-section {
		padding: 50px 0;
	}

	.contact-form-img {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form-img img {
		aspect-ratio: 1 / 0.8;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h3 {
		padding-left: 0px;
	}

	.section-title h3:before {
		height: 18px;
		width: 18px;
	}

	.section-title h1 {
		font-size: 32px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-btn {
		margin-right: 20px;
	}

	.video-play-button a {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.video-play-button img {
		max-width: 14px;
	}

	.video-play-button p {
		font-size: 16px;
	}

	.hero-content-footer h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.hero-image {
		max-width: 100%;
		padding-left: 50px;
	}

	.company-experience {
		width: 230px;
		bottom: 10%;
	}

	.company-experience h3 {
		width: 25%;
		font-size: 26px;
	}

	.company-experience p {
		width: 75%;
	}

	.about-us-images {
		padding: 0 130px 100px 0;
	}

	.about-img-1:before {
		transform: translate(-50%, 40px);
		width: 80px;
		height: 25px;
	}

	.about-img-2 {
		width: 180px;
	}

	.contact-circle {
		top: 10px;
		right: 20px;
	}

	.contact-circle img {
		max-width: 90px;
	}

	.about-content-info {
		margin-bottom: 30px;
	}

	.about-goal-box-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-contact-content p {
		font-size: 18px;
	}

	.about-author-box {
		padding: 20px;
	}

	.about-author-content h3 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.about-info-box {
		margin-bottom: 20px;
	}

	.about-info-list ul li {
		padding-left: 25px;
	}

	.about-info-list ul li:before {
		font-size: 18px;
	}

	.service-item {
		width: 100%;
		padding: 20px;
		border-right: none;
		border-left: none;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-no {
		bottom: -25px;
	}

	.service-no h2 {
		font-size: 60px;
	}

	.service-footer {
		text-align: center;
	}

	.service-footer p {
		font-size: 12px;
	}

	.why-choose-box {
		width: 100%;
	}

	.why-choose-box-content h3 {
		font-size: 18px;
	}

	.why-choose-list ul {
		gap: 10px;
	}

	.why-choose-list ul li {
		width: 100%;
		padding-left: 25px;
	}

	.why-choose-list ul li:before {
		font-size: 18px;
	}

	.why-choose-image {
		max-width: 100%;
		padding: 0 0 100px 125px;
	}

	.why-choose-img-2 {
		max-width: 220px;
	}

	.why-choose-contact-circle {
		right: 10px;
	}

	.why-choose-contact-circle img {
		max-width: 90px;
	}

	.our-feature-item {
		width: 100%;
	}

	.feature-item-content h3 {
		font-size: 18px;
	}

	.fact-counter-image {
		padding: 0 25px 30px 0;
	}

	.fact-counter-img img {
		aspect-ratio: 1 / 0.9;
	}

	.fact-counter-skillbar {
		max-width: 250px;
	}

	.fact-counter-box-list {
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fact-counter-box {
		width: calc(33.33% - 13.33px);
	}

	.fact-counter-box .icon-box {
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
	}

	.fact-counter-box .icon-box img {
		max-width: 25px;
	}

	.fact-counter-box-content h2 {
		font-size: 26px;
		margin-bottom: 5px;
	}

	.fact-counter-list ul {
		gap: 10px;
	}

	.fact-counter-list ul li {
		width: 100%;
		padding-left: 25px;
	}

	.fact-counter-list ul li:before {
		font-size: 18px;
	}

	.what-we-do-list ul li {
		width: 100%;
		padding-left: 25px;
	}

	.what-we-do-list ul li:before {
		font-size: 18px;
	}

	.what-we-do-images {
		padding: 40px 25px 40px 15px;
	}

	.what-do-we-img-1 img {
		aspect-ratio: 1 / 0.75;
	}

	.what-do-we-img-2 {
		max-width: 200px;
	}

	.what-do-we-img-2 img {
		border-width: 5px;
		aspect-ratio: 1 / 0.68;
	}

	.experience-counter-box {
		top: 0;
		bottom: auto;
		max-width: 210px;
		padding: 5px;
	}

	.experience-counter-no h2 {
		font-size: 26px;
	}

	.experience-counter-content {
		width: 68%;
	}

	.experience-counter-content p {
		font-size: 14px;
	}

	.work-step-item {
		padding: 20px 20px 0 20px;
		margin-bottom: 20px;
	}

	.work-step-item-content h2 {
		font-size: 18px;
	}

	.work-step-item-no {
		margin-bottom: -25px;
	}

	.work-step-item-no h2 {
		font-size: 60px;
	}

	.pricing-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.pricing-header h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.pricing-header h2 {
		font-size: 26px;
	}

	.pricing-header sup {
		font-size: 18px;
		top: -3px;
	}

	.pricing-header sub {
		font-size: 14px;
	}

	.pricing-list-title h3 {
		font-size: 18px;
	}

	.pricing-list ul li {
		padding-left: 25px;
	}

	.pricing-list ul li:before {
		font-size: 18px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li {
		width: calc(50% - 7.5px);
		font-size: 12px;
		line-height: normal;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.our-faqs-image {
		padding-right: 30px;
	}

	.our-faqs-img img {
		aspect-ratio: 1 / 0.98;
	}

	.client-review-box {
		bottom: 20px;
		max-width: 180px;
		padding: 10px;
	}

	.client-review-box-content {
		margin-bottom: 10px;
	}

	.client-review-box-content p {
		font-size: 16px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
		width: 18px;
		height: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 12px 15px;
	}

	.testimonial-slider-box {
		padding: 20px;
	}

	.testimonial-header,
	.testimonial-body {
		margin-bottom: 20px;
	}

	.customer-logo img {
		max-width: 150px;
	}

	.testimonial-quotes img {
		max-width: 30px;
	}

	.testimonial-author .author-image {
		margin-right: 10px;
	}

	.testimonial-author .author-content {
		width: calc(100% - 50px);
	}

	.testimonial-author .author-content h3 {
		font-size: 16px;
		padding-right: 15px;
	}

	.testimonial-author .author-content h3::before {
		right: 5px;
		font-size: 16px;
	}

	.customer-rating-box {
		justify-content: left;
		width: 100%;
	}

	.customer-rating-counter h3 {
		font-size: 18px;
		margin-right: 5px;
	}

	.customer-rating-counter p span {
		font-size: 18px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-newsletter-title h3 {
		font-size: 22px;
	}

	.newsletter-form .form-group .newsletter-btn img {
		max-width: 22px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-cta-box {
		margin-top: 0;
		padding: 20px;
	}

	.footer-logo,
	.footer-contact-box {
		width: 100%;
	}

	.footer-logo img {
		max-width: 150px;
	}

	.footer-contact-box {
		justify-content: left;
		gap: 20px;
	}

	.footer-contact-item {
		width: calc(50% - 10px);
	}

	.footer-contact-item::before {
		right: -10px;
	}

	.footer-contact-item:nth-of-type(2n + 2)::before {
		display: none;
	}

	.footer-contact-item p {
		margin-bottom: 5px;
	}

	.footer-contact-item h3 {
		font-size: 16px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-copyright-text {
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-menu ul {
		text-align: center;
	}

	.page-header {
		padding: 60px 0;
	}

	.page-header-box span {
		font-size: 40px;
	}

	.mission-vission-header {
		padding: 20px;
	}

	.mission-vission-content h3 {
		font-size: 18px;
	}

	.our-benefit-box {
		padding: 20px;
	}

	.our-benefit-item {
		width: 100%;
	}

	.our-benefit-item .icon-box {
		margin-bottom: 20px;
	}

	.benefit-item-content h3 {
		font-size: 18px;
	}

	.our-partners-list {
		width: 100%;
		gap: 15px;
	}

	.our-partner-item {
		padding: 10px;
	}

	.our-partner-item img {
		max-height: 20px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.team-social-icon ul li {
		margin-right: 10px;
	}

	.team-social-icon ul li i {
		font-size: 18px;
	}

	.service-catagery-list h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.cta-box-content {
		margin-bottom: 20px;
	}

	.cta-box-content img {
		margin-bottom: 15px;
	}

	.cta-box-content h3 {
		font-size: 18px;
	}

	.cta-info-item h3 {
		font-size: 18px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry-list ul {
		gap: 5px;
	}

	.service-entry-list ul li {
		padding-left: 25px;
		width: 100%;
	}

	.service-entry-list ul li:before {
		font-size: 16px;
		top: 6px;
	}

	.service-list-video .service-entry-list,
	.service-image-video {
		width: 100%;
	}

	.service-list-video {
		margin: 20px 0;
	}

	.service-guidance-item {
		width: 100%;
	}

	.service-guidance-img img {
		aspect-ratio: 1 / 0.6;
	}

	.service-guidance-content {
		margin-bottom: 15px;
	}

	.service-guidance-title h3 {
		font-size: 18px;
	}

	.service-steps-box {
		padding: 20px;
	}

	.service-step-item-list {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-step-item {
		width: 100%;
	}

	.service-step-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.team-single-img img {
		aspect-ratio: 1 / 1.01;
		object-position: center center;
	}

	.team-contact-form {
		padding: 20px;
	}

	.team-single-content h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.team-single-content p {
		margin-bottom: 15px;
	}

	.team-member-body {
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.team-contact-box {
		width: 100%;
		padding: 10px 15px;
	}

	.team-contact-box .icon-box {
		width: 40px;
		height: 40px;
	}

	.team-contact-box .icon-box img {
		max-width: 25px;
	}

	.team-contact-content {
		position: relative;
		width: calc(100% - 55px);
		z-index: 1;
	}

	.team-contact-content p {
		margin-bottom: 5px;
	}

	.team-contact-content h3 {
		font-size: 18px;
	}

	.team-member-footer span,
	.team-member-footer ul li a i {
		font-size: 18px;
	}

	.team-member-footer ul li {
		margin-right: 10px;
	}

	.team-expertise ul {
		gap: 10px;
	}

	.team-expertise ul li {
		width: 100%;
		padding-left: 25px;
	}

	.team-expertise ul li:before {
		font-size: 18px;
	}

	.skills-progress-bar {
		margin-bottom: 15px;
	}

	.company-logo {
		border-radius: 15px;
		padding: 15px 20px;
	}

	.company-logo img {
		height: 30px;
	}

	.client-testimonial-header {
		padding: 20px 15px 50px;
	}

	.client-testimonial-quote {
		margin-bottom: 15px;
	}

	.client-testimonial-quote img {
		max-width: 36px;
	}

	.client-testimonial-body {
		padding: 0 15px 20px 15px;
	}

	.client-author-content h3 {
		font-size: 18px;
	}

	.faq-catagery-list {
		padding: 20px;
	}

	.contact-info-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}
}

.service-card {
	border-radius: 20px;
	box-shadow: 0px 0px 10px 2px #C1DCFF;
	padding: 18px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.top-header p {
	padding-top: 5px;
	color: #00ff00;
	text-align: center;
	text-decoration: underline;
	font-weight: 600;
	font-size: 18px;
}

.top-header img {
	width: 31px;
	/*filter: brightness(0) invert(1); */
}

.bg-color {
	background: var(--secondary-color);
}




/* ======================= */

.mca-compliance {
  padding: 80px 20px;
  background: #f8fafc;
}

.mca-compliance .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.mca-compliance h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.mca-compliance .subtitle {
  color: #475569;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.compliance-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
  transition: 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.compliance-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0f172a;
}

.compliance-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .mca-compliance h2 {
    font-size: 24px;
  }
}

.llp-info {
  padding: 80px 20px;
  background: #f8fafc;
}

.llp-info .container {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.llp-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0f172a;
}

.llp-info p {
  color: #475569;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.card, .box, .step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
}

.list li {
  margin-bottom: 8px;
}

.faq details {
  background: #fff;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 992px){
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
}

@media(max-width: 576px){
  .grid-3, .grid-2, .steps {
    grid-template-columns: 1fr;
  }
  .llp-info h2 {
    font-size: 22px;
  }
}



 .prop-ui {
  padding: 80px 0;
  background: #f6fafb;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head h2 {
  font-size: 36px;
  color: #000000;
}
.section-head p {
  color: #5f7c82;
}

/* Cards */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.prop-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.prop-card h4 {
  color: #0b7c88;
  margin-bottom: 10px;
}
.prop-card ul {
  padding-left: 18px;
}

/* Steps */
.steps-wrap {
  margin-top: 70px;
}
.steps-wrap h3 {
  text-align: center;
  margin-bottom: 30px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}
.step-card {
  background: linear-gradient(135deg,#0b7c88,#0f9ba8);
  color: #fff;
  border-radius: 16px;
  padding: 25px;
}
.step-card span {
  font-size: 28px;
  font-weight: bold;
  opacity: 0.4;
}

/* Price */
.price-box {
  margin: 70px auto;
  text-align: center;
  background: #053b44;
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
}
.price {
  font-size: 42px;
  font-weight: bold;
  margin: 10px 0;
}
.btn-main {
  display: inline-block;
  margin-top: 15px;
  background: #2bff9e;
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Table */
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  padding: 14px;
  text-align: center;
}
th {
  background: #0b7c88;
  color: #fff;
}

.steps-wrap h5{
	color: #fff;
	padding: 10px 0;
}


.msme-extra {
  padding: 80px 0;
  background: #f7fbfc;
}

.extra-block {
  margin-bottom: 70px;
}

.extra-block h2 {
  text-align: center;
  color: #053b44;
  margin-bottom: 10px;
}

.sub {
  text-align: center;
  color: #6c8a90;
  margin-bottom: 40px;
}

/* Documents */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 20px;
}

.doc-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.doc-card h4 {
  color: #0b7c88;
  margin-bottom: 6px;
}

/* Features */
.bg-light {
  background: #eaf6f7;
  padding: 60px 20px;
  border-radius: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: #053b44;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* Apply Steps */
.apply-steps {
  max-width: 800px;
  margin: auto;
}

.apply-step {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.apply-step span {
  font-size: 28px;
  font-weight: 700;
  color: #0b7c88;
}
.apply-step h4 {
  margin: 0;
  color: #053b44;
}
.apply-step p {
  margin: 4px 0 0;
  color: #6a848a;
}


.name-search-info {
  padding: 80px 0;
  background: #f7fbfc;
}

.info-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
  align-items: center;
}

.info-block.reverse {
  grid-template-columns: 1fr 1.3fr;
}

.info-text h2 {
  color: #053b44;
  margin-bottom: 15px;
}

.info-text p {
  color: #5f7f85;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Cards */
.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.info-card h4 {
  color: #0b7c88;
  margin-bottom: 10px;
}

.info-card ul {
  padding-left: 18px;
  color: #444;
}

.highlight {
  background: linear-gradient(135deg,#0b7c88,#0f9ba8);
  color: #fff;
}
.highlight h4 {
  color: #fff;
}

/* Steps */
.step-list {
  margin-top: 20px;
}

.step-item {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

.step-item span {
  font-weight: 700;
  color: #0b7c88;
}

/* Mobile */
@media(max-width: 768px){
  .info-block,
  .info-block.reverse {
    grid-template-columns: 1fr;
  }
}


.service-hero {
  background: linear-gradient(135deg,#053b44,#0b7c88);
  color:#fff;
  padding:80px 0;
}
.hero-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:40px;
}
.hero-card {
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:20px;
}

.section { margin:80px auto }
.bg-light { background:#f0f8f9; padding:60px 0 }

.feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.feature-card {
  height:120px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}
.doc-card {
  height:100px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}

.apply-steps {
  max-width:800px;
  margin:auto;
}
.apply-step {
  display:flex;
  gap:20px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.apply-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

.table-wrap { overflow-x:auto }
table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
th,td { padding:14px; text-align:center }
th { background:#0b7c88; color:#fff }

.price-box {
  background:#053b44;
  color:#fff;
  text-align:center;
  padding:50px;
  border-radius:24px;
  margin:80px auto;
}

.btn-main {
  background:#2bff9e;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
}
.btn-outline {
  border:2px solid #0b7c88;
  padding:10px 24px;
  border-radius:30px;
  text-decoration:none;
}

/* FAQ */
.faq-ui { max-width:700px; margin:auto }
.faq-item {
  background:#fff;
  margin-bottom:10px;
  border-radius:14px;
}
.faq-btn {
  width:100%;
  padding:15px;
  border:none;
  text-align:left;
}
.faq-content { display:none; padding:15px }
.faq-item.active .faq-content { display:block }

/* Responsive */
@media(max-width:768px){
  .hero-grid { grid-template-columns:1fr }
}
.gstx-wrapper { background:#f7fbfc; font-family:Inter,Arial }

.gstx-container {
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.gstx-section { margin:80px auto }

.gstx-title { color:#053b44 }
.gstx-title-center { text-align:center; color:#053b44 }
.gstx-text { color:#5f7f85; line-height:1.7 }

.gstx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

.gstx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.gstx-bg {
  background:#eaf6f7;
  padding:70px 0;
}

/* Feature */
.gstx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.gstx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Docs */
.gstx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.gstx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.gstx-steps { max-width:800px; margin:40px auto 0 }
.gstx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.gstx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Table */
.gstx-table-wrap { overflow-x:auto; margin-top:30px }
.gstx-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
.gstx-table th, .gstx-table td {
  padding:14px;
  text-align:center;
}
.gstx-table th {
  background:#0b7c88;
  color:#fff;
}

 
.gstx-faq-content { display:none; padding:15px; color:#555 }
.gstx-faq-item.active .gstx-faq-content { display:block }

/* Responsive */
@media(max-width:768px){
  .gstx-grid { grid-template-columns:1fr }
}


.tdsx-wrapper { background:#f7fbfc; font-family:Inter,Arial }

.tdsx-container { max-width:1200px; margin:auto; padding:0 20px }
.tdsx-section { margin:80px auto }

.tdsx-title { color:#053b44 }
.tdsx-title-center { text-align:center; color:#053b44 }
.tdsx-text { color:#5f7f85; line-height:1.7 }

.tdsx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

.tdsx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.tdsx-bg { background:#eaf6f7; padding:70px 0 }

/* Feature cards */
.tdsx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.tdsx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Docs */
.tdsx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.tdsx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.tdsx-steps { max-width:800px; margin:40px auto 0 }
.tdsx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.tdsx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Table */
.tdsx-table-wrap { overflow-x:auto; margin-top:30px }
.tdsx-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
.tdsx-table th, .tdsx-table td {
  padding:14px;
  text-align:center;
}
.tdsx-table th {
  background:#0b7c88;
  color:#fff;
}

/* Responsive */
@media(max-width:768px){
  .tdsx-grid { grid-template-columns:1fr }
}
.abx-wrapper { background:#f7fbfc; font-family:Inter,Arial }

.abx-container { max-width:1200px; margin:auto; padding:0 20px }
.abx-section { margin:80px auto }

.abx-title { color:#053b44 }
.abx-title-center { text-align:center; color:#053b44 }
.abx-text { color:#5f7f85; line-height:1.7 }

.abx-bg { background:#eaf6f7; padding:70px 0 }

/* Cards */
.abx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.abx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Docs */
.abx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.abx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.abx-steps { max-width:800px; margin:40px auto 0 }
.abx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.abx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Table */
.abx-table-wrap { overflow-x:auto; margin-top:30px }
.abx-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
.abx-table th, .abx-table td {
  padding:14px;
  text-align:center;
}
.abx-table th {
  background:#0b7c88;
  color:#fff;
}

/* Lists */
.abx-list { max-width:700px; margin:auto; line-height:2 }

/* Responsive */
@media(max-width:768px){
  .abx-step { flex-direction:column }
}


.itrx-wrapper { background:#f7fbfc; font-family:Inter,Arial }

.itrx-container { max-width:1200px; margin:auto; padding:0 20px }
.itrx-section { margin:80px auto }

.itrx-title { color:#053b44 }
.itrx-title-center { text-align:center; color:#053b44 }
.itrx-text { color:#5f7f85; line-height:1.7 }

.itrx-bg { background:#eaf6f7; padding:70px 0 }

.itrx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

/* Cards */
.itrx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.itrx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.itrx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Docs */
.itrx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.itrx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.itrx-steps { max-width:800px; margin:40px auto 0 }
.itrx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.itrx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Lists */
.itrx-list { max-width:700px; margin:auto; line-height:2 }

/* Responsive */
@media(max-width:768px){
  .itrx-grid { grid-template-columns:1fr }
  .itrx-step { flex-direction:column }
}
.icon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-title svg {
  width: 26px;
  height: 26px;
  stroke: #0b7c88;
  flex-shrink: 0;
}


.spitrx-wrapper { background:#f7fbfc; font-family:Inter, Arial; }

.spitrx-container { max-width:1200px; margin:auto; padding:0 20px; }
.spitrx-section { margin:80px auto; }

.spitrx-title { color:#053b44; }
.spitrx-title-center { text-align:center; color:#053b44; }
.spitrx-text { color:#5f7f85; line-height:1.7; }

.spitrx-bg { background:#eaf6f7; padding:70px 0; }

.spitrx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

/* Cards */
.spitrx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.spitrx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.spitrx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Docs */
.spitrx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.spitrx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.spitrx-steps { max-width:800px; margin:40px auto 0; }
.spitrx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.spitrx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Lists */
.spitrx-list { max-width:700px; margin:auto; line-height:2; }

/* Responsive */
@media(max-width:768px){
  .spitrx-grid { grid-template-columns:1fr; }
  .spitrx-step { flex-direction:column; }
}
.llpitrx-wrapper { background:#f7fbfc; font-family:Inter, Arial; }

.llpitrx-container { max-width:1200px; margin:auto; padding:0 20px; }
.llpitrx-section { margin:80px auto; }

.llpitrx-title { color:#053b44; }
.llpitrx-title-center { text-align:center; color:#053b44; }
.llpitrx-text { color:#5f7f85; line-height:1.7; }

.llpitrx-bg { background:#eaf6f7; padding:70px 0; }

.llpitrx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

/* Cards */
.llpitrx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.llpitrx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.llpitrx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Docs */
.llpitrx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.llpitrx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.llpitrx-steps { max-width:800px; margin:40px auto 0; }
.llpitrx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.llpitrx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Lists */
.llpitrx-list { max-width:700px; margin:auto; line-height:2; }

/* Responsive */
@media(max-width:768px){
  .llpitrx-grid { grid-template-columns:1fr; }
  .llpitrx-step { flex-direction:column; }
}


.citrx-wrapper { background:#f7fbfc; font-family:Inter, Arial; }

.citrx-container { max-width:1200px; margin:auto; padding:0 20px; }
.citrx-section { margin:80px auto; }

.citrx-title { color:#053b44; }
.citrx-title-center { text-align:center; color:#053b44; }
.citrx-text { color:#5f7f85; line-height:1.7; }

.citrx-bg { background:#eaf6f7; padding:70px 0; }

.citrx-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

/* Cards */
.citrx-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.citrx-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.citrx-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Docs */
.citrx-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.citrx-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.citrx-steps { max-width:800px; margin:40px auto 0; }
.citrx-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.citrx-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Lists */
.citrx-list { max-width:700px; margin:auto; line-height:2; }

/* Responsive */
@media(max-width:768px){
  .citrx-grid { grid-template-columns:1fr; }
  .citrx-step { flex-direction:column; }
}


.itnoticex-wrapper { background:#f7fbfc; font-family:Inter, Arial; }

.itnoticex-container { max-width:1200px; margin:auto; padding:0 20px; }
.itnoticex-section { margin:80px auto; }

.itnoticex-title { color:#053b44; }
.itnoticex-title-center { text-align:center; color:#053b44; }
.itnoticex-text { color:#5f7f85; line-height:1.7; }

.itnoticex-bg { background:#eaf6f7; padding:70px 0; }

.itnoticex-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
}

/* Cards */
.itnoticex-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}
.itnoticex-feature-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.itnoticex-card {
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Docs */
.itnoticex-doc-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}
.itnoticex-doc-card {
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* Steps */
.itnoticex-steps { max-width:800px; margin:40px auto 0; }
.itnoticex-step {
  display:flex;
  gap:18px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.itnoticex-step span {
  font-size:26px;
  font-weight:700;
  color:#0b7c88;
}

/* Lists */
.itnoticex-list { max-width:700px; margin:auto; line-height:2; }

/* Responsive */
@media(max-width:768px){
  .itnoticex-grid { grid-template-columns:1fr; }
  .itnoticex-step { flex-direction:column; }
}


 
 
 
.btn{
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  display:inline-block;
  text-decoration:none;
  font-weight:600;
}

.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}

.card{
  background: #ffff;
  padding:26px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

 

/* TRUST */
.trust{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:30px;
}
.trust div{
  background:#fff;
  padding:12px 18px;
  border-radius:30px;
  font-size:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* LIST */
ul{padding-left:18px;}
li{margin-bottom:8px;color:var(--muted);}

/* ALERT */
.alert{
  background:#fff7ed;
  border-left:5px solid #f97316;
  padding:20px;
  border-radius:10px;
}

/* FAQ */
details{
  background:#fff;
  padding:18px;
  border-radius:10px;
  margin-bottom:12px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}
summary{font-weight:600;cursor:pointer;}








.overview-section {
  background: #f5f8fc;
}

.overview-box {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-box h2 {
  font-weight: 700;
  color: #0d2b45;
}

.overview-box p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}
.pvtltd-section {
  background: #ffffff;
}

.pvtltd-box {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pvtltd-box h2 {
  font-weight: 700;
  color: #0d2b45;
}

.pvtltd-box p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.act-box {
  background: #f5f8fc;
  border-left: 4px solid #0d2b45;
  padding: 20px;
  border-radius: 8px;
}

.act-box h5 {
  font-weight: 600;
  color: #0d2b45;
}

.act-box ul li {
  margin-bottom: 8px;
  color: #444;
}
.types-section {
  background: var(--secondary-color);
  font-family: var(--default-font);
}

.section-header h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.8;
}

.type-card {
  background: var(--white-color);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.type-card p {
  color: var(--text-color);
  font-size: 15.8px;
  line-height: 1.8;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}
.requirements-section {
  background: var(--secondary-color);
  font-family: var(--default-font);
}

.requirement-card {
  background: var(--white-color);
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.requirement-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.requirement-card p {
  color: var(--text-color);
  font-size: 15.8px;
  line-height: 1.8;
}

.requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}
.process-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 14px;
  background: var(--secondary-color);
  border-left: 4px solid var(--accent-color);
}

.step-number {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h5 {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark-color);
}

.process-step p {
  margin: 0;
  color: var(--text-color);
  font-size: 15.8px;
  line-height: 1.8;
}

.process-note {
  color: var(--text-color);
  font-size: 15px;
}
.documents-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.documents-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.documents-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.doc-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--divider-color);
}

.doc-block:last-child {
  border-bottom: none;
}

.doc-block h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.doc-block ul {
  padding-left: 18px;
  margin: 0;
}

.doc-block ul li {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.timeline-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.timeline-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.timeline-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.timeline-list {
  border-top: 1px solid var(--divider-color);
}

.timeline-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--divider-color);
  font-size: 15px;
  color: var(--text-color);
}

.timeline-item strong {
  color: var(--dark-color);
}

.timeline-note {
  font-size: 14.5px;
  color: var(--text-color);
}
	.benefits-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.benefits-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.benefits-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.benefits-list {
  border-top: 1px solid var(--divider-color);
}

.benefit-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--divider-color);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.benefit-item p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.comparison-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.comparison-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.comparison-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--divider-color);
  padding: 12px;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 600;
  text-align: center;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark-color);
  width: 18%;
}

.comparison-table tbody td {
  color: var(--text-color);
}

.comparison-note {
  color: var(--text-color);
  font-size: 14.5px;
}

.comparison-cta h5 {
  font-weight: 600;
  color: var(--dark-color);
}
		.compliance-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.compliance-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.compliance-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}

.compliance-table th,
.compliance-table td {
  border: 1px solid var(--divider-color);
  padding: 12px;
  vertical-align: top;
}

.compliance-table thead th {
  background: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 600;
  text-align: center;
}

.compliance-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark-color);
  width: 18%;
}

.compliance-table tbody td {
  color: var(--text-color);
}
.faq-section {
  background: var(--secondary-color);
  font-family: var(--default-font);
}

.faq-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.faq-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--divider-color);
}

.faq-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: var(--dark-color);
  padding: 18px 0;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--dark-color);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  transform: scale(0.9);
}

.faq-accordion .accordion-body {
  padding: 0 0 18px 0;
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
}
.whyus-simple-section {
  background: var(--white-color);
  font-family: var(--default-font);
}

.whyus-simple-section .section-header h2 {
  color: var(--dark-color);
  font-weight: 700;
}

.whyus-simple-section .section-header p {
  color: var(--text-color);
  line-height: 1.8;
}

.whyus-list {
  border-top: 1px solid var(--divider-color);
}

.whyus-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--divider-color);
}

.whyus-item:last-child {
  border-bottom: none;
}

.whyus-item h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.whyus-item p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.type-card {
  position: relative;
  padding-top: 50px;
}

.type-card::before {
  content: "✔";
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--accent-color);
  font-weight: bold;
}
.sub-header-items .nav-link {
	color: #000 !important;
	font-weight: 500;
	font-size: 18px;
}
 .sub-header {
  width: 100%;
  background: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
  transition: all 0.3s ease;
}

.sub-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Nav links */
#subNav .nav-link {
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0;
  display: inline-block;
}

#subNav .nav-link.active {
  color: var(--dark-color);
  border-bottom: 3px solid var(--accent-color);
}
.llp-section {
    background-color: var(--secondary-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 600;
    color: var(--primary-color);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.llp-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.llp-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.llp-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.llp-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 204, 97, 0.15);
}
.llp-benefits {
    background-color: var(--white-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-color);
}

.benefit-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease;
}

.benefit-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.benefit-card:hover {
    background: var(--white-color);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* CTA Button */
.btn-llp {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-llp:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}
.llp-checklist-modern {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-color);
}

.timeline-wrapper {
    position: relative;
    padding : 40px;
    border-left: 3px solid var(--divider-color);
}

.timeline-item {
    display: flex;
    gap: 20px;
    
    position: relative;
}

.timeline-left {
    position: absolute;
    left: -20px;
}

.step-number {
    background: var(--accent-color);
    color: var(--white-color);
    font-weight: 600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    background: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    width: 100%;
}

.timeline-content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content ul {
    padding-left: 18px;
    margin: 0;
}

.timeline-content ul li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.llp-process-section {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.process-card {
    background: var(--white-color);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    position: relative;
    transition: 0.3s ease;
    height: 100%;
}

.process-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15.5px;
    color: var(--text-color);
    margin: 0;
}

.step-badge {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Extra Mobile Fine Tuning */
@media (max-width: 576px) {
    .process-card {
        padding: 20px 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}
.llp-annual-section {
    background: var(--white-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 600;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-color);
    margin-bottom: 25px;
}

.filing-block {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    transition: 0.3s ease;
}

.filing-block h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.filing-block ul {
    padding-left: 18px;
    margin: 0;
}

.filing-block ul li {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.filing-block:hover {
    background: var(--white-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.annual-img {
    max-width: 90%;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .annual-img {
        margin-top: 30px;
    }
}
.eligibility-section {
    background: var(--white-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 600;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 750px;
    margin: 0 auto;
}

.eligibility-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.171);
    transition: 0.3s ease;
    height: 100%;
}

.eligibility-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.eligibility-card ul {
    padding-left: 18px;
    margin: 0;
}

.eligibility-card ul li {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.documents-section {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

.section-title {
    font-weight: 600;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 750px;
    margin: 0 auto;
}

.document-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    transition: 0.3s ease;
}

.document-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.document-card ul {
    padding-left: 18px;
    margin: 0;
}

.document-card ul li {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.document-card:hover {
    background: var(--white-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.process-section {
    background: var(--white-color);
}

.process-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    position: relative;
    transition: 0.3s ease;
}
 .process-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    position: relative;
    transition: 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.process-card p {
    font-size: 14px;
    color: var(--text-color);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.deed-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.deed-card ul {
    padding-left: 18px;
    margin: 0;
}

.deed-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}
.fees-section {
    background: var(--secondary-color);
}

.fees-table {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
}

.fees-table thead {
    background: var(--dark-color);
    color: var(--white-color);
}

.fees-table th,
.fees-table td {
    padding: 15px;
    font-size: 15px;
}

.disclaimer-box {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 13px;
}
.comparison-section {
    background: var(--secondary-color);
}

.comparison-table {
    border: 1px solid var(--divider-color);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white-color);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    font-size: 16px;
}
.forms-section {
    background: var(--secondary-color);
}

.forms-table {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
}

.forms-table thead {
    background: var(--dark-color);
    color: var(--white-color);
}

.forms-table th,
.forms-table td {
    padding: 15px;
    font-size: 14px;
    vertical-align: middle;
}

.forms-table tbody tr:hover {
    background: #f9f9f9;
}
.section8-checklist {
    background: var(--secondary-color);
}

.checklist-box {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.checklist-heading {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 10px;
}

.checklist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.checklist-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.checklist-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.checklist-list p {
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
}


.section8-documents {
    background: var(--white-color);
}

.document-box {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.document-box h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 8px;
}

.document-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-box ul li {
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.document-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}


.section8-process {
    background: var(--secondary-color);
}

.section8-process h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.section8-process p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section8-process .btn-llp {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.section8-process .btn-llp:hover {
    background: var(--accent-color);
    color: var(--white-color);
}
.section8-steps {
    background: var(--secondary-color);
}

.steps-wrapper {
    max-width: 900px;
    margin: auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    background: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: var(--dark-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.step-content h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}
.info-card, .feature-box, .price-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s ease;
}

.info-card:hover,
.feature-box:hover,
.price-card:hover {
    transform: translateY(-5px);
}

.price-card h3 {
    font-size: 28px;
    color: var(--dark-color);
}

.section-title {
    font-weight: 600;
}
.sole-advantages {
    background: var(--secondary-color);
}

.benefit-box {
    background: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-4px);
}

.benefit-box h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-box p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.limitations-wrapper {
    background: #fff3f3;
    padding: 30px;
    border-radius: 12px;
}

.limitations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.limitations-list li {
    margin-bottom: 15px;
    font-size: 16px;
    position: relative;
    padding-left: 22px;
}

.limitations-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
}


.sole-checklist-section {
    background: var(--white-color);
}

.checklist-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checklist-card:hover {
    transform: translateY(-5px);
}

.checklist-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.checklist-card p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-color);
}
.eligibility-section-1 {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

.eligibility-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
}

.eligibility-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.eligibility-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.eligibility-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.documents-section {
    background-color: var(--white-color);
}

.section-title {
    font-weight: 600;
    color: var(--dark-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

.doc-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.doc-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.doc-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.doc-card ul li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.doc-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.highlight-card {
    border-left: 4px solid var(--accent-color);
}
.process-section {
    background: var(--secondary-color);
}

.section-title {
    font-weight: 600;
    color: var(--dark-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

.process-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s ease;
}

.process-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.process-card p {
    color: var(--text-color);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.process-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.process-note {
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}

.legal-section {
    background: var(--secondary-color);
}

.legal-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.legal-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.legal-card p {
    color: var(--text-color);
}

.legal-card:hover {
    background: var(--white-color);
    border: 1px solid var(--accent-color);
}
.comparison-section {
    background: var(--secondary-color);
}

.comparison-table {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--dark-color);
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    vertical-align: middle;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover {
    background: #f9f9f9;
}

.comparison-table td strong {
    color: var(--dark-color);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
        padding: 10px;
    }
}
.tax-section {
    background: var(--secondary-color);
}

.finance-section {
    background: #fff;
}

.assistance-section {
    background: var(--secondary-color);
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
}

.section-subtitle {
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

.info-card,
.finance-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.info-card h5,
.finance-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.info-card p,
.finance-card p {
    color: var(--text-color);
}

.info-card:hover,
.finance-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.assist-list {
    padding-left: 18px;
    color: var(--text-color);
}

.assist-list li {
    margin-bottom: 10px;
}

.assist-list li::marker {
    color: var(--accent-color);
}

.msme-overview {
    background: var(--white-color);
    font-family: var(--default-font);
}

/* IMAGE */
.overview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.overview-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.overview-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.overview-content h2 span {
    color: var(--accent-color);
}

.overview-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* BADGE */
.overview-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* FEATURES */
.overview-features {
    margin-top: 20px;
}

.feature-item {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .overview-content h2 {
        font-size: 30px;
    }

    .overview-content {
        text-align: center;
    }

    .feature-item {
        text-align: left;
    }
}

@media (max-width: 576px) {

    .overview-content h2 {
        font-size: 26px;
    }

    .overview-badge {
        font-size: 12px;
    }
}
.msme-documents {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* SECTION TITLE */
.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title h2 span {
    color: var(--accent-color);
}

.section-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: auto;
}

/* DOCUMENT CARD */
.doc-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

/* LEFT ACCENT STRIP */
.doc-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color);
    border-radius: 14px 0 0 14px;
}

/* HOVER EFFECT */
.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .section-title h2 {
        font-size: 24px;
    }

    .doc-card {
        font-size: 14px;
        padding: 14px 16px;
    }
}
.msme-benefits {
    background: var(--white-color);
    font-family: var(--default-font);
}

/* TITLE */
.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}
.section-title h2 span {
    color: var(--accent-color);
}
.section-title p {
    color: var(--text-color);
}

/* BENEFIT CARDS */
.benefit-card {
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-left: 4px solid var(--accent-color);
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--dark-color);
    transition: 0.3s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* INFO BOX */
.info-box {
    background: var(--secodary-color);
    border: 1px solid var(--divider-color);
    padding: 25px;
    border-radius: 14px;
}
.info-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.info-box p {
    color: var(--text-color);
}
.msme-list li {
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* TABLE */
.msme-table {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
}
.msme-table thead {
    background: var(--dark-color);
    color: var(--white-color);
}
.msme-table td,
.msme-table th {
    padding: 14px;
    vertical-align: middle;
}
.msme-table tbody tr:nth-child(even) {
    background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 24px;
    }

    .info-box {
        padding: 18px;
    }
}
.udyam-process-section {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADER */
.process-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-title span {
    color: var(--accent-color);
}

.process-subtitle {
    color: var(--text-color);
    max-width: 700px;
    margin: auto;
}

/* CARD */
.process-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-card h4 {
    color: var(--dark-color);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* STEP ITEM */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.step-item span {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .process-title {
        font-size: 28px;
    }

    .process-card {
        padding: 22px;
    }
}

@media (max-width: 576px) {

    .process-title {
        font-size: 24px;
    }

    .process-card h4 {
        font-size: 18px;
    }

    .step-item {
        font-size: 14px;
    }
}
/* SECTION BACKGROUND */
.udyam-eligibility {
    background: var(--white-color);   /* WHITE BACKGROUND */
    font-family: var(--default-font);
}

/* ENTITY CARDS */
.entity-card {
    background: var(--secondary-color); /* GRAY BOX */
    border: 1px solid var(--divider-color);
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark-color);
    transition: 0.3s;
}

/* ELIGIBILITY BOX */
.eligibility-box {
    background: var(--secondary-color); /* GRAY BOX */
    border-radius: 16px;
    padding: 25px;
}

/* INFO CARDS */
.info-card {
    background: var(--secondary-color); /* GRAY BOX */
    border-radius: 14px;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
}
.entity-card:hover,
.info-card:hover,
.eligibility-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
/* SECTION BACKGROUND */
.udyam-master-section {
    background: var(--secondary-color); /* GRAY BACKGROUND */
    font-family: var(--default-font);
}

/* TITLE */
.main-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.sub-title {
    color: var(--text-color);
}

/* WHITE BOXES */
.content-box {
    background: var(--white-color); /* WHITE BOX */
    padding: 25px;
    border-radius: 14px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* TEXT */
.content-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-box ul li {
    margin-bottom: 8px;
    color: var(--dark-color);
}

/* RESPONSIVE */
@media (max-width:576px) {
    .main-title {
        font-size: 24px;
    }
}
.cta-highlight-section {
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* TRUST CARD */
.trust-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.trust-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--dark-color);
    font-weight: 600;
}

.rating-wrap {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.rating-wrap span {
    color: var(--text-color);
    font-weight: 600;
}

/* CTA CARDS */
.cta-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--divider-color);
    transition: 0.3s;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.cta-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .trust-card h2 {
        font-size: 34px;
    }

    .cta-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .trust-card {
        padding: 22px;
    }

    .cta-card {
        padding: 22px;
    }

    .trust-card h2 {
        font-size: 28px;
    }
}
.company-search-section{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADING */
.section-header h2{
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header p{
    color: var(--text-color);
    line-height: 1.8;
}

/* HIGHLIGHT BOX */
.highlight-box{
    margin-top: 20px;
    background: var(--white-color);
    border-left: 4px solid var(--accent-color);
    padding: 15px 18px;
    border-radius: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

/* SIDE CARD */
.search-info-card{
    background: var(--white-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.search-info-card h4{
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.search-info-card ul{
    padding-left: 0;
    list-style: none;
}

.search-info-card ul li{
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* BUTTON */
.search-btn{
    display: inline-block;
    margin-top: 15px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.search-btn:hover{
    background: var(--dark-color);
    color: var(--white-color);
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-header h2{
        font-size:28px;
    }
}

@media(max-width:576px){
    .section-header h2{
        font-size:24px;
    }
}
.name-availability-section{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADER */
.section-title{
    font-size:34px;
    font-weight:700;
    color:var(--primary-color);
}

.section-subtitle{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
}

/* STEP BOX */
.step-box{
    background: var(--white-color);
    padding:25px;
    border-radius:14px;
    border-left:4px solid var(--accent-color);
}

.step-box h4{
    color:var(--primary-color);
    margin-bottom:15px;
}

.step-box ul{
    margin:0;
    padding-left:18px;
}

.step-box ul li{
    margin-bottom:8px;
    color:var(--dark-color);
}

/* RESULT CARDS */
.result-card{
    background: var(--white-color);
    border-radius:14px;
    padding:22px;
    height:100%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition:0.3s;
}

.result-card:hover{
    transform: translateY(-5px);
}

.result-card h5{
    font-weight:700;
    margin-bottom:10px;
}

/* COLOR STATES */
.result-card.high h5{
    color:#00b050;
}

.result-card.moderate h5{
    color:#ff9800;
}

.result-card.low h5{
    color:#ff3b30;
}

.result-card p{
    color:var(--text-color);
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }
}
.business-guidelines-section{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADER */
.section-title{
    font-size:34px;
    font-weight:700;
    color:var(--primary-color);
}
.section-subtitle{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
}

/* CARDS */
.guide-card{
    background: var(--white-color);
    padding:22px;
    border-radius:14px;
    border-left:4px solid var(--accent-color);
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.guide-card h4{
    color:var(--primary-color);
    margin-bottom:10px;
}

.guide-card p{
    color:var(--text-color);
    line-height:1.7;
}

/* TABLE */
.dosdonts-box{
    background: var(--white-color);
    padding:25px;
    border-radius:14px;
}

.guideline-table thead{
    background: var(--dark-color);
    color: var(--white-color);
}

.guideline-table td,
.guideline-table th{
    padding:14px;
}

/* NOTE */
.capital-note{
    background: var(--white-color);
    padding:15px 18px;
    border-radius:10px;
    border-left:4px solid var(--accent-color);
    color:var(--dark-color);
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }
}
	.business-name-tips{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADER */
.section-title{
    font-size:34px;
    font-weight:700;
    color:var(--primary-color);
}

.section-subtitle{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
}

/* TIP CARD */
.tip-card{
    background: var(--white-color);
    border-radius:14px;
    padding:22px;
    border:1px solid var(--divider-color);
    transition:0.3s;
}

.tip-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.tip-card h5{
    color:var(--primary-color);
    font-weight:700;
    margin-bottom:10px;
}

.tip-card p{
    color:var(--text-color);
    line-height:1.7;
}

/* NOTE */
.tips-note{
    background: var(--white-color);
    border-left:4px solid var(--accent-color);
    padding:15px 18px;
    border-radius:10px;
    color:var(--dark-color);
    font-weight:500;
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }
}
.company-docs-section{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADERS */
.section-title{
    font-size:20px;
    font-weight:700;
    color:var(--primary-color);
}

.section-subtitle{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
}

/* DOCUMENT CARDS */
.doc-card{
    background: var(--white-color);
    border-radius:12px;
    padding:16px;
    font-weight:600;
    color:var(--dark-color);
    border-left:4px solid var(--accent-color);
    transition:0.3s;
}

.doc-card:hover{
    transform:translateY(-4px);
}

/* TYPE CARDS */
.type-card{
    background: var(--white-color);
    border-radius:14px;
    padding:20px;
    box-shadow:0 6px 16px rgba(0,0,0,0.05);
}

.type-card h5{
    color:var(--primary-color);
    font-weight:700;
	padding-left: 20px;
    margin-bottom:10px;
}

.type-card p{
    color:var(--text-color);
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-title{font-size:28px;}
}

@media(max-width:576px){
    .section-title{font-size:24px;}
}
.company-name-search-section{
    background: var(--secondary-color);
    font-family: var(--default-font);
}

/* HEADER */
.section-title{
    font-size:20px;
    font-weight:700;
    color:var(--primary-color);
}

.section-subtitle{
    color:var(--text-color);
    max-width:720px;
    margin:auto;
}

/* CARDS */
.info-card{
    background: var(--white-color);
    border-radius:14px;
    padding:25px;
    border-left:4px solid var(--accent-color);
    box-shadow:0 6px 16px rgba(0,0,0,0.05);
}

.info-card h4{
    color:var(--primary-color);
    margin-bottom:15px;
    font-weight:700;
}

.info-card ul{
    margin:0;
    padding-left:18px;
}

.info-card ul li{
    margin-bottom:10px;
    color:var(--dark-color);
    line-height:1.7;
}

/* HIGHLIGHT CARD */
.highlight-card{
    border-left:4px solid var(--dark-color);
}

/* BUTTON */
.cta-btn{
    display:inline-block;
    background:var(--accent-color);
    color:var(--white-color);
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cta-btn:hover{
    background:var(--dark-color);
    color:var(--white-color);
}

/* RESPONSIVE */
@media(max-width:991px){
    .section-title{
        font-size:28px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:24px;
    }
}

.about-text p, .text-anime-style-2{
     font-size: 20px !important;
    font-weight: 300 !important;  
}
.about-text1 p, .dark-section P{
     font-size: 20px !important;
    font-weight: 300 !important;  
}
.about-text h2{
     font-size: 22px !important;
    font-weight: 300 !important;  
}
.page-title-1 span, .page-header-box span{
    font-size: 30px !important;
}
.section-title1{
  font-size: 30px !important;
    font-weight: 400 !important;  
}

.section-title h2 {
    font-size: 30px !important;
    font-weight: 400 !important;
}
.text-anime-style-2{
    margin-bottom: 10px !important;
}
.section-title3 h2{
   font-size: 27px !important;
    font-weight: 400 !important; 
}
.section-header h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
}
.font-list-1{
    font-size: 18px !important;
}
#Udyam{
      font-size: 33px !important;  
}
.website-logo{
    font-size: 22px;
}
.cta-card h3 {
    font-size: 22px;
    font-weight: 500;
}



@media only screen and (max-width: 767px) {
    .page-header-box span {
        font-size: 20px!important;  
    }
    .section-title h2 {
    font-size: 23px !important;
    font-weight: 400 !important;
}
.about-text p, .text-anime-style-2{
     font-size: 17px !important;
    font-weight: 300 !important;  
}
.about-text1 p, .dark-section P{
     font-size: 17px !important;
    font-weight: 300 !important;  
}
}





.pan-services {
    background: #f6f9fb;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-top: 4px solid #00c853; /* green accent */
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003c4d; /* theme dark teal */
}

.price {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

.btn-buy {
    background: #00c853;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #00a844;
    color: #fff;
}






/* POPUP OVERLAY */
.custom-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 15px;
}

/* POPUP BOX */
.popup-box{
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: popupFade .3s ease;
}

/* ANIMATION */
@keyframes popupFade{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLOSE BUTTON */
.closePopup{
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: .3s;
}

.closePopup:hover{
    color: #00b140;
    transform: rotate(90deg);
}

/* TITLE */
.popup-box h3{
    font-size: 24px;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 22px;
    text-align: center;
}

/* FORM GRID */
.popup-box form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

/* FULL WIDTH */
.popup-box .full-width{
    grid-column: span 2;
}

/* LABEL */
.popup-box label{
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
}

/* INPUT */
.popup-box .form-control{
    width: 100%;
    height: 37px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
    transition: .3s ease;
}

.popup-box .form-control:focus{
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0,200,83,0.12);
    outline: none;
}

/* READONLY */
.popup-box .form-control[readonly]{
    background: #f7fafc;
    font-weight: 600;
}

/* TOTAL FIELD */
.total-field{
    background: #effff5 !important;
    border: 1px solid #00c853 !important;
    color: #00a63f !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

/* BUTTON */
.popup-box .btn-success{
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#00c853,#00a63f);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
    margin-top: 27px;
}

.popup-box .btn-success:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,200,83,0.22);
}

/* MOBILE */
@media(max-width:767px){

    .popup-box{
        padding: 22px 18px;
    }

    .popup-box form{
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .popup-box .full-width{
        grid-column: span 1;
    }

    .popup-box h3{
        font-size: 21px;
    }

   .popup-box .form-control {
        height: 28px;
        font-size: 12px;
    }

        .popup-box .btn-success {
        height: 40px;
        font-size: 14px;
            margin-top: 3px;
    }
}


