/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design 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. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	--primary-color: #192324;
	--secondery-color: #F8F8F8;
	--text-color: #283132;
	--accent-color: #ff5e14;
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Raleway", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/


body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	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.1em;
	/* color: var(--primary-color); */
	font-size: 24px;
}

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;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 46px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: rgba(0, 43, 77, 0.96);
	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 2.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 1.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: 3px;
	margin-right: 30px;
	padding: 41px 0px;
}

.section-btn {
	text-align: end;
}

.section-title-content {
	margin-left: 120px;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	/* display: inline-block; */
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-left: 35px;
	margin-bottom: 20px;
}

.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: 5px;
}

.section-title h1 {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	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: 30px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.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;
	z-index: 100;
	margin-top: 0px;
	/* background: white; */
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	background: transparent;
}

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(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	/* padding: 30px 0; */
	align-items: center;
	/* border-bottom: 1px solid var(--dark-divider-color); */
}

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	padding: 15px 14px !important;
	color: white;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	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;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--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-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 100vh;
	margin-top: -84px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(25 35 36 / 12%) 80.94%);
	height: 500px;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

/* Yellow LEEYD line style */
.highlight-line {
	display: inline-block;
	color: #ffc107;
	/* yellow */
	font-weight: 600;
	padding-left: 10px;
	border-left: 4px solid #ffc107;
}

.highlight {
	color: #ff5722;
	font-weight: 700;
}

/* Stylish divider line with dots */
.border-divider {
	height: 4px;
	width: 30px;
	background: #2575fc;
	border-radius: 2px;
	position: relative;
	margin: 15px auto;
	/* Center horizontally */
}

.border-divider::before {
	content: "";
	position: absolute;
	color: #0c5adb;
	left: -27px;
	top: 0;
	display: inline-block;
	height: 4px;
	width: 4px;
	border-radius: 50%;
	background-color: #0c5adb;
	-webkit-box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
	box-shadow: 9px 0 0 0 currentColor, 18px 0 0 0 currentColor;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 200px 0 150px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(109deg, rgb(25 35 36 / 0%) 0%, rgb(25 35 36 / 0%) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.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-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 17px;
	color: var(--white-color);
	width: 100%;
	/* max-width: 600px; */
}

.hero-content .section-title h3::before {
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
	margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 54px 0;
}

.about-us-images {
	position: relative;
	/* background-image: url(../images/about-us-bg-shape.svg); */
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img {
	border-radius: 30px;
	width: 70%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
	height: 300px;
}

.about-img-2 img {
	border: 8px solid white;

	border-radius: 30px;
	width: 100%;
	height: 400px;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.experience-counter {
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: -15px;
	right: 0;
	left: 385px;
	transform: rotate(-90deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.about-us-content-list {
	margin-bottom: 40px;
}

.about-us-content-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.about-us-contact-list {
	width: calc(50% - 40px);
}

.about-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child {
	margin-bottom: 0;
}

.about-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img {
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content {
	width: calc(100% - 55px);
}

.about-contact-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

.why-choose-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2 {
	width: calc(43% - 10px);
}

.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3 {
	width: calc(67% - 10px);
}

.why-choose-img-3 img {
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4 {
	width: calc(33% - 10px);
}

.why-choose-img-4 img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
	cursor: none;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a {
	background-color: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.intro-video-image a {
	display: block;
	cursor: none;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project {
	padding: 100px 0 70px;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
	transform-origin: bottom right;
	transition: transform 0.4s ease-in-out;
	transform: scaleX(0);
}

.our-Project-nav ul li a:after {
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.project-btn a {
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img {
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
	background: var(--primary-color);
}

.project-btn a:hover img {
	transform: rotate(0deg);
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
}

.project-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2 {
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2 {
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a {
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work {
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item {
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box {
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
	max-width: 60px;
}

.how-we-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p {
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo {
	text-align: center;
}

.how-work-company-slider .company-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress {
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image {
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1 {
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
	display: block;
}

.our-skill-img-1 img {
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2 {
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img {
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3 {
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img {
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: var(--secondery-color);
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	padding: 100px;
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider {
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--accent-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 33px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

.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-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	color: inherit;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer {
	padding: 80px 0 0;
	background: #111;
	/* Jet Black */
	color: #fff;
	padding-top: 50px;

}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li {
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	height: 36px;
	width: 36px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: white;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	background: var(--accent-color);
}

.footer-social-links ul li a:hover i {
	color: var(--white-color);
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li a {
	display: block;
	color: inherit;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form button {
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: white;
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 65px;
	padding: 40px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/kl.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 144px 0 128px;
	margin-top: -118px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 700;
	color: var(--white-color);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	/* justify-content: center; */
}

.page-header-box ol li.breadcrumb-item {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.bread {
	font-size: 22px;
	text-transform: capitalize;
	color: #ff5e14;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	font-size: 20px;
	color: var(--white-color);
}

.about-us.page-about-us {
	background: transparent;
	height: auto;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-facility-item:hover .icon-box:before {
	transform: scale(1);
}

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
	display: none;
}

.vision-mission-item .icon-box {
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
	transform: scale(1);
}

.vision-mission-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

.faq-accordion .accordion-body p {
	margin: 0;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}


.client-logo {
	/* height: 80px; */
	object-fit: contain;
	transition: all 1.3s ease;
}

.client-logo:hover {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.carousel-item>.row {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 20px 0;
}


/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.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: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.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(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.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: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	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: 20px;
	font-weight: 700;
	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: 0;
	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: 0;
	width: 36px;
	height: 36px;
	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;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. 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;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}

.contact-us-form {
	margin-left: 30px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: var(--white-color);
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 15px;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i {
	color: var(--white-color);
}

.contact-info-content {
	width: calc(100% - 80px);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {

	.our-testimonial-content {
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 991px) {

	.navbar {
		padding: 11px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
		font-size: 14px;
	}

	.hero {
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

	.service-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill {
		padding: 50px 0;
	}

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header {
		padding: 180px 0 100px;
		margin-top: -92px;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 16px;
	}

	.about-facility-list {
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item {
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img {
		max-width: 20px;
	}

	.about-facility-content {
		width: calc(100% - 55px);
	}

	.about-facility-content h3 {
		font-size: 18px;
	}

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 30px 15px;
		gap: 30px 40px;
	}

	.vision-mission-item {
		width: calc(50% - 20px);
	}

	.vision-mission-item::before {
		right: -20px;
	}

	.vision-mission-item .icon-box {
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img {
		max-width: 30px;
	}

	.vision-mission-content h3 {
		margin-bottom: 15px;
	}

	.best-selling {
		padding: 25px 0 50px;
	}

	.best-selling-content {
		margin-bottom: 20px;
	}

	.best-selling-content-img {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-readmore-btn {
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a {
		width: 50px;
		height: 50px;
	}

	.team-content {
		margin-bottom: 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.our-faqs-image {
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.8;
	}

	.our-clients {
		padding: 50px 0;
	}

	.our-clients .our-clients-box {
		max-width: 100%;
	}

	.page-services {
		padding: 50px 0 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 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body {
		padding: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.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: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-project {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li {
		margin-bottom: 15px;
	}

	.faq-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-image {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form {
		margin-left: 0;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.contact-info-box {
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item {
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i {
		font-size: 16px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.hero-content .btn-default {
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.hero-content .btn-default.btn-highlighted {
		margin: 0;
	}

	.about-us-images {
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter {
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p {
		font-size: 12px;
		height: 38px;
		width: 38px;
		margin: 0 0 6px 0;
	}

	.feedback-counter h3 {
		font-size: 12px;
		width: calc(100% - 40px);
	}

	.about-img-2 {
		max-width: 240px;
	}

	.experience-counter {
		height: 102px;
		width: 102px;
	}

	.experience-counter h3 {
		font-size: 22px;
	}

	.experience-counter p {
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body {
		gap: 0px;
	}

	.about-us-content-body::before {
		display: none;
	}

	.about-us-content-info {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-contact-list {
		width: 100%;
	}

	.about-us-content-list ul li {
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item {
		margin-bottom: 20px;
	}

	.about-contact-content h3 {
		font-size: 18px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img {
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn img {
		max-width: 20px;
	}

	.project-content h2 {
		font-size: 18px;
	}

	.how-we-work-item {
		width: 100%;
	}

	.how-we-work-item .icon-box img {
		max-width: 50px;
	}

	.how-we-work-content h3 {
		font-size: 18px;
	}

	.how-work-company-slider {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image {
		padding-bottom: 83px;
	}

	.our-skill-img-1 {
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2 {
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3 {
		width: 200px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 38px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-social-links {
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3 {
		font-size: 18px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 14px;
	}

	.about-facility-item {
		width: 100%;
	}

	.vision-mission {
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box {
		padding: 20px;
		gap: 40px;
	}

	.vision-mission-item {
		width: 100%;
	}

	.vision-mission-item::before {
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before {
		display: block;
	}

	.vision-mission-item:last-child::before {
		display: none;
	}

	.vision-mission-content h3 {
		font-size: 18px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 2px;
	}

	.faq-accordion .accordion-body {
		padding-right: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry-list-image {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 5px;
	}

	.project-gallery-images {
		gap: 20px;
	}

	.project-gallery-img {
		width: calc(50% - 10px);
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.75;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-info-item {
		width: 100%;
	}

	.error-page-image img {
		max-width: 100%;
	}
}

.solutionHead {
	/* border-bottom: 1px solid #1b1b1b; */
}

.solutionHead {
	/* border-bottom: 1px solid #1b1b1b; */
}

.overviewSection,
.solutionHead {
	float: left;
	width: 100%;
	padding-bottom: 0;
}

.solutionHead {
	background-color: transparent;
}

.solutionHead,
.solutionImgCard {
	padding: 49px 0 19px;
	margin-top: -10px;
}

.solutionImgCard {
	padding: 49px 0 50px;
	margin: 0 0 50px;
}

.solutionImg_otr {
	position: relative;
}

.solutionImg_otr img {
	border-radius: 30px;
}

.solutionContentBg {
	max-width: 544px;
	min-height: 320px;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url(../images/contentBg.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
	margin: 20px;
	padding: 50px;
	color: #000;
}

.solutionContentBg h3 {
	font-family: DM Sans, sans-serif;
	margin-bottom: 30px;
}

.solutionContentBg .paragraph {
	width: 75% !important;
}


.paragraph {
	font-weight: 400;
	line-height: 32px;
	width: 90% !important;
}

.solutionContentBg:after {
	width: 111px;
	height: 91px;
	background: url(../images/contentBg_btn.svg) 100% 100% no-repeat;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.py-128 {
	padding-bottom: 128px;
}

.pt-128,
.py-128 {
	padding-top: 128px;
}

.black-100-bg {
	background-color: var(--black-100);
}

.project-card {
	overflow: hidden;
	border-radius: 12px;
	background-color: #1e1e1e;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease;
	margin-bottom: 30px;
	border-radius: 50px 0px;
}

.project-card:hover {
	transform: translateY(-5px);
}

.project-card img {
	width: 100%;
	height: 301px;
	display: block;
	transition: transform 0.4s ease;
}

.project-card:hover img {
	transform: scale(1.03);
}

.project-info {
	padding: 20px;
	text-align: center;
}

.project-info h5 {
	margin-bottom: 5px;
	color: #fff;
}

.project-info span {
	color: #ff7549;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

.our-services {
	padding: 80px 0;
	background: #f8f9fa;
}

.section-title h3 {
	text-transform: uppercase;
	font-weight: 600;
	color: #ff5e14;
	margin-bottom: 10px;
	margin-top: 49px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 700;
}

.section-title-content p {
	font-size: 16px;
	color: #555;
}

.project-info {
	padding: 20px;
	text-align: center;
}

.project-info h5 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.all-services-btn {
	text-align: center;
	margin-top: 40px;
}

.btn-default {
	display: inline-block;
	padding: 12px 30px;
	background: #cc5b2b;
	color: white;
	/* border-radius: 30px; */
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-default:hover {
	background: #e04d0c;
}

.project-card {
	background: #18191d;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform-style: preserve-3d;
	perspective: 1200px;
	transform: rotateX(0deg) rotateY(0deg);
	position: relative;
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
	pointer-events: none;
	z-index: 2;
	transition: opacity 0.3s;
}

.project-card:hover {
	transform: rotateX(10deg) rotateY(10deg) scale(1.04);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
	backface-visibility: hidden;
}

.project-card:hover img {
	transform: scale(1.1);
}

.project-info {
	padding: 6px;
	text-align: center;
	/* background: white; */
	position: relative;
	z-index: 3;
	font-size: 25px;
	color: white;
	margin-top: 17px;
}

.project-info h5 {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	color: #333;
}



















.whoWe .serviceContent {
	height: 90vh;
	padding: 0 0 150px;
}

.matterSection,
.serviceContent {
	width: 100%;
	padding: 0 0 150px;
	padding-bottom: 0 !important;
	float: left;
	min-height: 681px;
	display: flex;
	align-items: center;
	position: relative;
}

.serviceContent {
	background: #24232a;
}

.dFlex {
	display: flex;
	align-items: center;
}

.contentArea {
	z-index: 10;
}

.contentArea .transparent-tittle {
	color: #ffffff0d;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 90px;
	position: absolute;
	top: -70px
}

.contentArea h2,
.contentArea p {
	color: #fff;
}

.contentArea h2 {
	font-size: 41px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.deviceList {
	float: left;
	width: 100%;
	color: #fff
}

.deviceList ul {
	margin-bottom: 25px !important
}

.deviceList ul li {
	text-align: center;
	padding: 25px 0;
	border-radius: 5px;
	list-style: none;
	margin: 0 15px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 0
}

.deviceList ul li:before {
	content: "";
	position: absolute;
	z-index: -2;
	background: #1d1b22;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.deviceList ul li.scroll-up {
	transform: translateY(1);
	-ms-transform: translateY(1);
	-o-transform: translateY(1);
	-webkit-transform: translateY(1);
	opacity: 1
}

.deviceList ul li:after {
	background-color: #302f36;
	border-top-right-radius: 50%;
	content: "";
	display: block;
	height: 120%;
	width: 130%;
	position: absolute;
	left: 0;
	top: -15%;
	transform: translate(-100%, 75%) rotate(0deg);
	transform-origin: bottom left;
	transition: transform .4s ease-out;
	will-change: transform;
	z-index: -1
}

.deviceList ul li.active:after {
	transform: translate(0) !important
}

.deviceList i {
	font-size: 17px;
	color: #ffffff8f
}

.deviceList h5 {
	font-weight: 300;
	font-size: 14px;
	padding: 5px 0;
	margin-bottom: 0;
	color: white;
}


.counterSection:after,
.serviceContent:after {
	width: 273px;
	height: 205px;
	content: "";
	background: url(../images/pattern1.png) 0 0 no-repeat;
	position: absolute;
	top: 20px;
	left: 20px;
	-webkit-animation: glide 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glide {
	0% {
		left: 20px;
		top: 20px
	}

	to {
		left: 20px;
		top: 50px
	}
}

.deviceList ul li:after {
	background-color: #302f36;
	border-top-right-radius: 50%;
	content: "";
	display: block;
	height: 120%;
	width: 130%;
	position: absolute;
	left: 0;
	top: -15%;
	transform: translate(-100%, 75%) rotate(0deg);
	transform-origin: bottom left;
	transition: transform .4s ease-out;
	will-change: transform;
	z-index: -1
}


.deviceList ul li.scroll-up {
	transform: translateY(1);
	-ms-transform: translateY(1);
	-o-transform: translateY(1);
	-webkit-transform: translateY(1);
	opacity: 1;
}

.deviceList ul li,
.fadeUpholder .aos-item,
.speed-0-3 {
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}

.deviceList ul li.active:after {
	transform: translate(0) !important
}

@keyframes yellow-flicker {
	0% {
		opacity: 1;
		color: #ffd700;
		/* Gold */
	}

	20% {
		opacity: 0.6;
		color: #fffacd;
		/* Lemon Chiffon */
	}

	40% {
		opacity: 1;
		color: #ffea00;
		/* Vivid Yellow */
	}

	60% {
		opacity: 0.5;
		color: #ffc107;
		/* Amber */
	}

	80% {
		opacity: 0.9;
		color: #ffb300;
		/* Orange-Yellow */
	}

	100% {
		opacity: 1;
		color: #ffffe0;
		/* Light Yellow */
	}
}

.flicker-icon {
	animation: yellow-flicker 2s infinite;
}










.reasons-section {
	padding: 60px 20px;
	background: #fff;
}



.timeline {
	position: relative;
	max-width: 1200px;
	margin: auto;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: #ddd;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.timeline-block {
	padding: 20px 30px;
	position: relative;
	width: 50%;
}

.timeline-block .icon {
	position: absolute;
	top: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	color: white;
	text-align: center;
	line-height: 50px;
	z-index: 1;
}

.timeline-block .content {
	background: white;
	padding: 20px 25px;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	position: relative;
}

.timeline-block.left {
	left: 0;
}

.timeline-block.right {
	left: 50%;
}

.timeline-block.left .icon {
	right: -25px;
}

.timeline-block.right .icon {
	left: -25px;
}

.timeline-block.left .content {
	margin-left: 40px;
}

.timeline-block.right .content {
	margin-right: 40px;
}

.red .icon {
	background: #d32f2f;
}

.orange .icon {
	background: #f57c00;
}

.yellow .icon {
	background: #fbc02d;
}

.green .icon {
	background: #388e3c;
}

@media screen and (max-width: 768px) {
	.timeline::after {
		left: 10px;
	}

	.timeline-block {
		width: 100%;
		padding-left: 30px;
		margin-bottom: 30px;
	}

	.timeline-block.left,
	.timeline-block.right {
		left: 0;
	}

	.timeline-block .icon {
		left: -25px;
	}

	.timeline-block .content {
		margin-left: 40px;
	}
}

.headingg {
	color: #1b1b1b;
	font-size: 52px;
	font-weight: 600;
	/* font-family: DM Sans, sans-serif; */
}


@media screen and (max-width: 490px) {
	.solutionContentBg {
		padding: 35px !important;
	}
}

@media screen and (max-width: 652px) {
	.solutionContentBg {
		background-size: cover;
		background-position: 0;
		background-image: none;
		background-color: hsla(0, 0%, 98%, .9);
	}
}

.solutionContentBg:after {
	background: url(../images/contentBg.svg) 100% 100% no-repeat !important;
	bottom: 0;
	right: 0
}

.solutionImg_otr {
	margin: 40px 0
}

.solutionImgCard {
	margin: 0 0 50px !important
}

@media screen and (max-width: 1440px) {
	.deviceList ul li {
		padding: 15px 0;
	}
}

@media screen and (max-width: 992px) {
	.dFlex {
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.serviceContent {
		min-height: 612px;
		padding: 126px 0 150px;
	}
}

.col {
	flex: 1 0;
}

@media screen and (max-width: 490px) {

	.bannerImage,
	.mainHeader {
		width: 100%
	}

	.solutionContentBg {
		padding: 35px !important
	}

	.solutionContentBg .paragraph {
		width: 100% !important
	}

	.solutionContentBg:after {
		bottom: 40px;
		right: 50px
	}

	.solutionContentBg h3 {
		font-size: 19px;
		font-weight: 600;
		margin-bottom: 10px
	}

	.solutionContentBg .paragraph {
		font-size: 15px
	}

	.productBanner h2 {
		font-size: 70px
	}

	.productBanner {
		padding: 65px
	}

	.solutionImg-holder h3 {
		font-size: 20px
	}

	.doorplateImg img {
		margin-top: 30px
	}

	.adminDashboard {
		padding: 50px
	}

	.adminDashboard .headingg {
		font-size: 45px
	}

	.brochureDownload {
		margin: 30px 0
	}

	.solutionImg-holder h3 {
		top: 60px;
		left: 50px
	}

	.productBanner {
		padding: 40px
	}

	.productBanner .paragraph {
		margin-top: 20px;
		padding-bottom: 100px
	}

	.solutionImgCard {
		padding-top: 0 !important
	}

	.headOuter .paragraph,
	.headOuter h2.w-75 {
		width: 100% !important
	}

	.paragraph,
	p {
		line-height: 32px !important
	}

	.headOuter {
		padding: 20px 0
	}

	.logoHolder img {
		width: 180px
	}

	.container-fluid {
		width: 100% !important
	}

	.solutionHead .headingg {
		font-size: 46px !important
	}

	.solutionHead,
	.solutionImgCard {
		padding: 60px 0 50px
	}

	.menuContainer {
		padding: 0 5px
	}

	.exploreBtn {
		margin-bottom: 50px !important
	}

	.solutionDetails h2 {
		font-size: 32px
	}

	.brochureDownload h3 {
		font-size: 45px
	}

	.varients h2 {
		font-size: 38px
	}

	.footerSection .paragraph {
		margin-top: 30px
	}
}

.flip-card {
	background: transparent;
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 300px;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 15px;
	overflow: hidden;
}

.flip-card-front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flip-card-front .project-info,
.flip-card-back .project-info {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	width: 100%;
	padding: 15px;
	text-align: center;
}

.flip-card-back {
	background: #111;
	color: white;
	transform: rotateY(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	left: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}

.client-logo {
	max-width: 234px;
	max-height: 124px;
	object-fit: contain;
	margin: auto;
	padding: 15px;
	transition: transform 0.3s ease;
}

.client-logo:hover {
	transform: scale(1.1);
}

.client-card {
	border: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.client-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.video-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

/* Animated background shapes */
.video-section::before,
.video-section::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(247, 148, 29, 0.1);
	animation: float 8s infinite ease-in-out;
}

.video-section::before {
	top: -100px;
	left: -100px;
}

.video-section::after {
	bottom: -100px;
	right: -100px;
	animation-delay: -4s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(30px, 30px);
	}
}

.video-card {
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.video-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(247, 148, 29, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-card:hover::after {
	opacity: 1;
}

.video-container {
	position: relative;
	overflow: hidden;
	border-radius: 15px 15px 0 0;
	width: 100%;
	/* height: 266px; */
}

.video-container video {
	width: 100%;
	height: 222px;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover video {
	transform: scale(1.1);
	filter: brightness(1.1);
}

.video-content {
	padding: 25px;
	background: #fff;
	border-radius: 0 0 15px 15px;
	position: relative;
	z-index: 2;
}

.video-title {
	color: #2d3436;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.video-card:hover .video-title {
	color: #f7941d;
}

.video-description {
	color: #636e72;
	font-size: 0.95rem;
	line-height: 1.6;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

.video-card:hover .video-description {
	transform: translateY(-3px);
}

.section-title {
	position: relative;
	margin-bottom: 50px;
	text-align: center;
	animation: fadeInUp 1s ease-out;
}


/* .section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #f7941d;
	margin: 15px auto;
	animation: expandWidth 1s ease-out;
} */

@keyframes expandWidth {
	from {
		width: 0;
	}

	to {
		width: 60px;
	}
}

.play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 60px;
	height: 60px;
	background: rgba(247, 148, 29, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.video-container:hover .play-overlay {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.play-overlay:hover {
	background: rgba(247, 148, 29, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
	color: white;
	font-size: 24px;
	margin-left: 5px;
	animation: pulse 2s infinite;
}

@media(max-width:767px) {
	.client-logo {
		max-width: 169px !important;
		max-height: 124px !important;
	}
}

.automation-section.vd {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.background-video.vd {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-overlay.vd {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.overlay-image.vd {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.content.vd {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	z-index: 2;
	width: 100%;
	padding: 20px;
}

.content.vd p {
	font-size: 1.2rem;
	max-width: 600px;
	color: #E7DEDE;
	margin: 10px auto 20px;
}

.features.vd {
	justify-content: center;
	display: flex;
	gap: 30px;
	margin-top: 20px;
}

.feature.vd img {
	width: 50px;
	height: 50px;
}

.backtotop-wrap {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	z-index: 999;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.backtotop-circle {
	transform: rotate(-90deg);
}

.card-title {
	font-weight: 600;
}

.card-text {
	font-size: 0.95rem;
	color: #555;
}

.features-section {
	padding: 60px 0;
	background: white;
	box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.features-section h6 {
	color: #ff6600;
	font-weight: bold;
	letter-spacing: 1px;
}

.features-section h2 {
	font-weight: 700;
	margin-bottom: 40px;
}


.hero-section {
	display: flex;
	flex-wrap: wrap;
	min-height: 500px;
}

.hero-img {
	background-image: url('../images/electric.jpeg');
	/* Replace with your image */
	background-size: cover;
	background-position: center;
	min-height: 500px;
}

.testimonial-section {
	padding: 60px 20px;
	text-align: center;
}

.testimonial-section h6 {
	color: #ff5722;
	font-weight: bold;
	text-transform: uppercase;
}

.testimonial-section h2 {
	font-weight: 700;
	margin-bottom: 40px;
}

.testimonial-card {
	background-color: #2e3d5d;
	color: white;
	padding: 30px;
	border-radius: 16px;
	height: 100%;
}

.stars {
	color: #ffb400;
	font-size: 16px;
	margin-bottom: 15px;
}

.btn-default,
.btn-primary {
	/* background: linear-gradient(135deg, #007bff, #00c6ff); */
	border: none;
	color: white;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-default:hover,
.btn-primary:hover {
	background: linear-gradient(135deg, #0056b3, #0096c7);
}

.quote-icon {
	color: #ff5722;
	font-size: 28px;
	text-align: right;
	margin-top: 20px;
}

#new {
	color: #00ffff;
	text-shadow: 0 0 15px #00ffff;
}

.feature-section {
	background: #fff;
	padding: 40px 0;
	box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.product-card {

	border-radius: 20px;
	padding: 20px;
	margin-top: 30px;
	transition: transform 0.6s ease, box-shadow 0.6s ease;
	transform-style: preserve-3d;
	perspective: 1000px;
	position: relative;
	overflow: hidden;
	animation: float 6s ease-in-out infinite;
}

.product-card:hover {
	transform: rotateY(12deg) rotateX(6deg) scale(1.05);

}

.product-image {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	animation: 5s infinite ease-in-out;
}

.product-image img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	transition: transform 0.3s;
}


.product-card:hover img {
	transform: scale(1.05) rotateZ(1deg);
}

.progress-section {
	position: relative;
	background: url('../images/Rectangle_2897.webp') center center/cover no-repeat;
	color: #fff;
}

.progress-overlay {
	background-color: rgba(0, 43, 77, 0.96);
	/* Close to Yokins overlay */
	position: absolute;
	inset: 0;
	z-index: 1;
}

.progress-content {
	position: relative;
	z-index: 2;
	padding: 100px 0;
}

.section-label {
	color: #ff6f00;
	font-size: 0.9rem;
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.main-heading {
	font-size: 2.8rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 50px;
}

.stats-box {
	text-align: center;
	color: #fff;
}

.stats-number {
	font-size: 3.2rem;
	font-weight: 700;
	color: #ff6f00;
}

.stats-label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 0.95rem;
	font-weight: 500;
	margin-top: 10px;
	color: #ffffffb3;
}

@media (max-width: 767px) {
	.stats-label {
		writing-mode: horizontal-tb;
		transform: none;
		margin-top: 10px;
	}

	.main-heading {
		font-size: 2rem;
	}
}

@keyframes glowPulse {

	0%,
	100% {
		box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
	}

	50% {
		box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), 0 0 70px rgba(0, 255, 255, 0.2);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.testimonial-author {
	font-weight: bold;
	margin-top: 15px;
}

.testimonial-role {
	font-size: 14px;
	color: #ccc;
}

.carousel-indicators [data-bs-target] {
	background-color: #ff5722;
}

.hero-content-11 {
	background-color: #002b49;
	color: #fff;
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-content h6 {
	color: #ff6600;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-content h2 {
	font-weight: 700;
	font-size: 32px;
	margin: 20px 0 10px;
}

.hero-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.btn-orange {
	background-color: #ff6600;
	color: #fff;
	border: none;
	font-weight: 600;
	padding: 10px 20px;
	text-transform: uppercase;
	transition: 0.3s;
}

.btn-orange:hover {
	background-color: #e95a00;
}

.custom-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #ff6600;
	transform: rotate(45deg);
	margin-left: 8px;
}

@media (max-width: 767px) {
	.hero-content {
		padding: 40px 20px;
	}
}

.backtotop-wrap::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: "\f178";
	text-align: center;
	line-height: 46px;
	font-size: 16px;
	font-weight: 400;
	color: white;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.backtotop-wrap svg path {
	fill: none;
	stroke: #ff5e14;
	stroke-width: 6;
	stroke-linecap: round;
	stroke-dasharray: 307.919;
	stroke-dashoffset: 307.919;
	transition: stroke-dashoffset 0.1s linear;
}

.vd {
	color: white;
}

.feature.vd span {
	margin-top: 5px;
	font-size: 1rem;
}

.feature.vd {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.hero-img {
		display: none !important;
	}
}

.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover img {
	transform: scale(1.1);
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: white;
	padding: 20px;
	transition: opacity 0.4s ease;
}

.overlay h5 {
	color: white;
	margin: 0;
	font-weight: 600;
	font-size: 2.0rem;
}

@media only screen and (max-width: 991px) {
	.our-history {
		padding: 50px 0 !important;
	}
}

@media only screen and (max-width: 991px) {
	.our-history-box {
		gap: 30px !important;
	}
}

@media only screen and (max-width: 991px) {

	.our-history-item,
	.our-history-nav {
		width: 100% !important;
	}
}

@media only screen and (max-width: 767px) {
	.our-history-nav ul li .nav-link {
		padding: 10px !important;
		font-size: 18px !important;
	}
}

@media only screen and (max-width: 991px) {

	.our-history-item,
	.our-history-nav {
		width: 100% !important;
	}
}

@media only screen and (max-width: 991px) {
	.section-title {
		margin-bottom: 30px !important;
	}
}

@media only screen and (max-width: 767px) {
	.section-title h2 {
		font-size: 28px !important;
	}
}

@media only screen and (max-width: 767px) {
	.our-history-list ul li {
		font-size: 14px !important;
		padding-left: 30px !important;
		margin-bottom: 10px !important;
	}
}



@media only screen and (max-width: 991px) {
	.our-history-image figure {
		border-radius: 30px !important;
	}
}

@media only screen and (max-width: 767px) {
	.our-history-image img {
		aspect-ratio: 1 / 0.76 !important;
	}
}

@media only screen and (max-width: 991px) {
	.our-history-content {
		margin-bottom: 30px !important;
	}
}

@media only screen and (max-width: 991px) {
	.section-title h3 {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.section-title h2 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 991px) {
	.section-title-content {
		margin-left: 0px !important;
		margin-top: 15px;
	}

	.section-row .section-title {
		margin-bottom: 3px;
		margin-right: 30px;
		padding: 1px 0px !important;
	}
}

section {
	padding: 60px 0;
	/* background: #fff; */
}

.section-title {
	text-align: center;
	margin-bottom: 30px;
}

.section-title h5 {
	color: #ff6600;
	text-transform: uppercase;
	font-weight: bold;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
}

.read-more-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 10px 24px;
	margin-top: 10px;
	font-weight: bold;
	cursor: pointer;
}

.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 15px;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	font-weight: bold;
	font-size: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
	background-color: #ff6600;
	padding: 10px;
	border-radius: 50%;
	color: #fff;
	top: 35%;
}

/* Base Styles */
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	/* icon color */
	background: rgba(0, 0, 0, 0.6);
	/* semi-transparent dark background */
	padding: 15px;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	z-index: 10;
}

/* Next Button Position */
.swiper-button-next {
	right: 10px;
}

/* Prev Button Position */
.swiper-button-prev {
	left: 10px;
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #ff6600;
	/* orange hover background */
	color: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hide default arrows if you use your own icons (optional) */
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
	/* smaller icon size */
	font-weight: bold;
}
















.section-title h5 {
	color: #f26522;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
}

.read-more-btn {
	background-color: #cc5b2b;
	color: #fff;
	border: none;
	padding: 10px 25px;
	font-weight: 600;
	margin-top: 15px;
}

.our {
	display: block;
	color: #cc5b2b;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 3.36px;
}

.our-products {
	/* background-color: #001f3f; */
	padding: 54px 0;
}

.section-title h3 {
	color: #d35400;
	text-transform: uppercase;
	font-size: 20px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	/* color: white; */
}

.section-title-content p {
	font-size: 16px;
	/* color: white; */
}

.swiper {
	padding: 40px 0;
}

.swiper-slide {
	background: #fff;
	border-radius: 10px;
	text-align: center;
	transition: 0.3s ease;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.swiper-slide:hover {
	transform: translateY(-5px);
}

.swiper-slide img {
	width: 100%;
	height: 342px;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.product-info {
	padding: 15px;
}

.product-info h5 {
	margin: 0;
	color: #001f3f;
	font-weight: 600;
	font-size: 19px;
}

.btn-primary {
	background-color: #ff6600;
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
}

.btn-primary:hover {
	background-color: #e65c00;
}

.feature-box {
	padding: 18px 20px;
	background: #fff;
	/* border: 1px solid #f0f0f0; */
	height: 100%;
}

.icon-circle {
	width: 80px;
	height: 80px;
	/* border: 2px solid #d35400; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 36px;
	color: #d35400;
}

.feature-box h4 {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 23px;
}

.feature-box p {
	font-size: 14px;
	color: #555;
}

.feature-highlight {
	background: #d35400;
}

.feature-highlight .icon-circle {
	border-color: #fff;
	color: #fff;
}

.feature-highlight h4,
.feature-highlight p {
	color: #fff;
}












.text-white-85 {
	color: rgba(255, 255, 255, 0.85);
}



.product-card img {
	max-height: 400px;
	object-fit: contain;
}

.cta {
	background: var(--accent);
	border: none;
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	transition: 0.3s;
}

.cta:hover {
	background: #ff5500;
	/* Example hover color */
}

.features {
	font-size: 0.95rem;
	line-height: 1.5;
}

.dot::before {
	content: "Ã¢â‚¬Â¢";
	margin: 0 4px;
	color: var(--accent);
}



.features {
	margin-top: 1.25rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
}

.features .dot {
	color: var(--accent);
	font-weight: 700;
}

/* product image */
.product-wrap {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	max-width: 560px;
	width: 42%;
	pointer-events: none;
	display: flex;
	justify-content: center;
}

.dimension-table,
.dimension-table th,
.dimension-table td {
	font-size: 15px;
	border: 1px solid #d2d2d3;
	padding: 10px;
}

.dimension-table th {
	background: #626262;
	color: #fff;
	font-weight: 300;
}

.dimension-table,
.dimension-table th,
.dimension-table td {
	font-size: 15px;
	border: 1px solid #d2d2d3;
	padding: 10px;
}

/* Contact bubble bottom-right */
.contact-bubble {
	position: fixed;
	right: 20px;
	bottom: 22px;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
	color: #222;
	padding: 10px 14px;
	border-radius: 28px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	font-weight: 600;
	cursor: pointer;
}

.chat-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-weight: 800;
}

/* responsive tweaks */
@media (max-width: 991px) {
	.product-wrap {
		position: relative;
		transform: none;
		right: auto;
		top: auto;
		width: 56%;
		margin-left: auto;
		margin-top: 18px;
	}

	.hero-inner {
		padding: 48px 18px;
	}
}

@media (max-width: 576px) {
	.hero {
		min-height: 80vh;
	}

	.product-wrap {
		display: none;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.subhead {
		font-size: 1rem;
	}

	@media (max-width: 576px) {
		.hero .cta {
			font-size: 14px;
			padding: 10px 16px;
			width: 100%;
			/* full width on mobile */
			max-width: 250px;
			/* but limit it */
		}
	}

}












#pre-load {
	background: #000;
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999
}

#pre-load .loader-inner {
	--loader-background: linear-gradient(0deg, rgba(50, 50, 50, .2) 0%, rgba(100, 100, 100, .2) 100%);
	position: relative;
	height: 250px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center
}

#pre-load .loader-inner .loader-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: color-change 2s infinite ease-in-out;
	z-index: 999
}

#pre-load .loader-inner .loader-logo svg {
	width: 100%;
	height: 100%
}

#pre-load .loader-inner .box {
	position: absolute;
	background: var(--loader-background);
	border-radius: 50%;
	border-top: 1px solid rgb(100, 100, 100);
	box-shadow: rgba(0, 0, 0, .3) 0 10px 10px 0;
	backdrop-filter: blur(5px);
	animation: ripple 2s infinite ease-in-out
}

#pre-load .loader-inner .box:nth-child(1) {
	width: 25%;
	aspect-ratio: 1/1;
	z-index: 99
}

#pre-load .loader-inner .box:nth-child(2) {
	inset: 30%;
	z-index: 98;
	border-color: rgba(100, 100, 100, .8);
	animation-delay: .2s
}

#pre-load .loader-inner .box:nth-child(3) {
	inset: 20%;
	z-index: 97;
	border-color: rgba(100, 100, 100, .6);
	animation-delay: .4s
}

#pre-load .loader-inner .box:nth-child(4) {
	inset: 10%;
	z-index: 96;
	border-color: rgba(100, 100, 100, .4);
	animation-delay: .6s
}

#pre-load .loader-inner .box:nth-child(5) {
	inset: 0;
	z-index: 95;
	border-color: rgba(100, 100, 100, .2);
	animation-delay: .8s
}

@keyframes ripple {
	0% {
		transform: scale(1);
		box-shadow: rgba(0, 0, 0, .3) 0 10px 10px 0
	}

	50% {
		transform: scale(1.3);
		box-shadow: rgba(0, 0, 0, .3) 0 30px 20px 0
	}

	100% {
		transform: scale(1);
		box-shadow: rgba(0, 0, 0, .3) 0 10px 10px 0
	}
}

@keyframes color-change {
	0% {
		opacity: .7
	}

	50% {
		opacity: 1
	}

	100% {
		opacity: .7
	}
}



















/* Footer Styling */

.navbar-brand img {


	filter: brightness(0) invert(1);
	/* à¤…à¤—à¤° logo black à¤¹à¥ˆ à¤¤à¥‹ white à¤¬à¤¨à¤¾ à¤¦à¥‡à¤—à¤¾ */

}

.main-footer h3 {
	color: #d35400;
	/* Flame Orange */
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 600;
}



.footer-social-links ul {
	display: flex;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d35400;
	color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	transition: 0.3s;
}

.footer-social-links ul li a:hover {
	background: #FFD700;
	/* Yellow Hover */
	color: #111;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 8px;
}

.footer-links ul li a {
	color: #ccc;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #FFD700;
	padding-left: 5px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.footer-contact-item .icon-box {
	margin-right: 10px;
	color: #d35400;
	font-size: 18px;
}

.footer-newsletter-form {
	margin-top: 10px;
}

.footer-newsletter-form .form-group {
	position: relative;
}

.footer-newsletter-form input {
	width: 100%;
	padding: 10px 45px 10px 15px;
	border-radius: 30px;
	border: none;
	outline: none;
}

.footer-newsletter-form button {
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	background: #d35400;
	border: none;
	color: #fff;
	padding: 8px 12px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.footer-newsletter-form button:hover {
	background: #FFD700;
	color: #111;
}

.footer-copyright {
	background: #000;
	padding: 15px 0;
	margin-top: 30px;
	text-align: center;
}

.footer-copyright p {
	margin: 0;
	color: #aaa;
	font-size: 14px;
}

@media(max-width:767px) {
	.top-bar {
		display: none !important;
	}

	.hero-content h1 {
		font-size: 30px !important;
	}

}

/* Slider container ke liye */
.product-slider {
	margin-bottom: 60px;
	/* neeche space */
}

/* Agar Swiper ya Owl Carousel use ho raha hai */
.swiper {
	margin-bottom: 60px;
}

.owl-carousel {
	margin-bottom: 60px;
}

.features-section {
	background: #f9f9f9;
}

.feature-box {
	border-radius: 15px;
	padding: 30px 20px;
	transition: all 0.4s ease;
	height: 100%;
	color: #fff;
}

.feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-box h4 {
	margin-top: 15px;
	font-weight: 600;
}

.feature-box p {
	font-size: 15px;
	margin-bottom: 0;
	color: #ffffff;
}

.icon-circle {
	width: 70px;
	height: 70px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
}

/* Gradient backgrounds */
.box-1 {
	background: linear-gradient(135deg, #ff7a18, #af002d 80%);
}

.box-2 {
	background: linear-gradient(135deg, #0061ff, #08444b 80%);
}

.box-3 {
	background: linear-gradient(135deg, #053e18, #21d3b4 80%);
}

.box-4 {
	background: linear-gradient(135deg, #f7971e, #d1b221 80%);
}

.hero-slide {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

/* Background */
.hero-slider-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: brightness(0.5);
}

/* Title Section */
.section-title h3 {
	font-size: 20px;
	font-weight: 500;
	color: #ffb100;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.section-title h1 {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.section-title p {
	font-size: 16px;
	color: #ccc;
	line-height: 1.6;
}

/* Buttons */
.btn-default {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary {
	background: #d89400;
	color: #fff;
	margin-right: 12px;
}

.btn-primary:hover {
	background: #b37600;
}

.btn-highlighted {
	border: 2px solid #fff;
	color: #fff;
	background: transparent;
}

.btn-highlighted:hover {
	background: #fff;
	color: #000;
}

.main-footer {
	background: #111111;
	/* Deep Charcoal */
	color: #ffffff;
	padding: 40px 0;
}

.footer-logo img {
	max-width: 120px;
	filter: brightness(0) invert(1);
	/* à¤…à¤—à¤° logo black à¤¹à¥ˆ à¤¤à¥‹ white à¤¬à¤¨à¤¾ à¤¦à¥‡à¤—à¤¾ */
}

.footer-copyright {
	background: #111111;
	/* Same as .main-footer */
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
	margin: 0;
	color: #ffffff;
	font-size: 14px;
}

.faq-section {
	padding: 60px 20px;
	background: #fff;
}

.faq-section h2 {
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
}

/* Remove Bootstrap default arrow */
.accordion-button::after {
	display: none;
}

/* Add custom + and - icons */
.accordion-button::before {
	content: '+';
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.accordion-button::before {
	content: "+";
	font-weight: bold;
	margin-right: 10px;
	color: rgb(0, 123, 255);
	transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
	content: "–";
	/* proper minus sign */
	color: rgb(0, 123, 255);
}

.accordion-button {
	background: none;
	box-shadow: none;
	font-weight: 600;
	color: #000;
}

.accordion-button:not(.collapsed) {
	color: #007bff;
}

.clients {
	background: #f1f1f1;
	padding: 50px 20px;
	text-align: center;
}

.clients h3 {
	font-weight: 700;
	margin-bottom: 25px;
}

.client-logos img {
	max-height: 50px;
	margin: 15px 25px;
	transition: all 0.3s ease;
}

.client-logos img:hover {
	filter: grayscale(0%);
	transform: scale(1.1);
}

tbody tr:nth-child(odd) {
	background-color: #f6f6f6;
}

td {
	padding: 11px 30px;
}

table {
	caption-side: bottom;
	border-collapse: collapse;

	/* border: 4px solid grey; */
	width: 100%;
}

.dimension-table,
.dimension-table th,
.dimension-table td {
	font-size: 15px;
	border: 1px solid #d2d2d3;
	padding: 10px;
}

.dimension-table th,
.dimension-table td {
	font-size: 15px;
	border: 1px solid #d2d2d3;
	padding: 10px;
}

.sidebar-wrapper {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #eee;
}

.product-menu li {
	margin-bottom: 10px;
}

.product-menu li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	color: #333;
	background: #fafafa;
	transition: all 0.3s ease;
	box-shadow: inset 0 0 0 transparent;
}

.product-menu li a img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.product-menu li a:hover {
	background: linear-gradient(135deg, #f8f9fa, #eaf3ff);
	color: #007bff;
	transform: translateX(5px);
	box-shadow: inset 3px 0 0 #007bff;
}

.product-menu li a.active {
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: #fff;
	box-shadow: inset 3px 0 0 #003f7f;
}

.product-menu li a.active img {
	filter: brightness(0) invert(1);
}



/* Scroll support */
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Optional "Card View" on small screens */
@media (max-width: 768px) {
	.dimension-table thead {
		display: none;
		/* Hide table header */
	}

	.dimension-table,
	.dimension-table tbody,
	.dimension-table tr,
	.dimension-table td {
		display: block;
		width: 100%;
	}

	.dimension-table tr {
		margin-bottom: 1rem;
		border: 1px solid #dee2e6;
		border-radius: 8px;
		padding: 0.75rem;
		background: #f8f9fa;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	}

	.dimension-table td {
		text-align: left;
		padding: 0.5rem;
		border: none !important;
		position: relative;
		padding-left: 50%;
	}

	.dimension-table td::before {
		content: attr(data-label);
		position: absolute;
		left: 1rem;
		font-weight: bold;
		white-space: nowrap;
	}
}

.product-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08) !important;
}


.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 63px;
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	color: white;
	text-transform: capitalize;
	line-height: 1.2em;
	letter-spacing: -1px;
}

.hero-content h5 {

	font-weight: bold;
	text-transform: cap italize;
	font-weight: 600;

	font-size: 20px;
	color: white;

	margin-bottom: 15px;
}

.sidebar-wrapper {
	position: sticky;
	top: 90px;
	/* header ke niche kitna gap chahiye */
	z-index: 10;
	background: #fff;
	/* sticky ke liye background dena zaroori hai */
}


.highlight {
	color: #ff6600;
	font-weight: bold;
}

.heading-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--bs-orange);
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 8px;
}

.heading-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 60px;
	background: linear-gradient(90deg, var(--bs-orange), #ff6600);
	border-radius: 2px;
}

.section-title {
	font-size: 2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #222;
	position: relative;
	/* display: inline-block; */
	padding-bottom: 10px;
}

.section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	height: 4px;
	width: 80px;
	background: linear-gradient(90deg, #ff6600, #ff9900);
	border-radius: 2px;
}

.section-title span {
	color: #ff6600;
	/* Orange highlight word */
}


.btn-quote {
	background: #ffb400;
	color: #000;
	font-weight: 600;
	padding: 12px 25px;
	border-radius: 5px;
	transition: 0.3s;
}

.btn-quote:hover {
	background: #ff9900;
	color: #fff;
}

.product-img {
	max-width: 100%;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

/* Animations */
@keyframes slideInLeft {
	0% {
		transform: translateX(-80px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	0% {
		transform: translateX(80px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeUp {
	0% {
		transform: translateY(40px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Buttons */
.btn-default {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary {
	background: #ff6600;
	color: #fff;
}

.btn-primary:hover {
	background: #e05500;
}

.btn-highlighted {
	background: #fff;
	color: #333;
	margin-left: 15px;
}

.btn-highlighted:hover {
	background: #f0f0f0;
}




/* Form container styling */
.contact-form {
	background: #ffffff;
	border: 1px solid #f1f1f1;
	transition: all 0.3s ease;
}

.contact-form:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Input fields */
.custom-input {
	border-radius: 12px;
	border: 1px solid #ddd;
	padding: 12px 15px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.custom-input:focus {
	border-color: #007bff;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Button styling */
.custom-btn {
	border-radius: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.custom-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dimension-table th,
.dimension-table td {
	white-space: nowrap;
	/* Prevents text wrapping */
}

.product-menu li {
	margin-bottom: 12px;
}

.product-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	text-decoration: none;
	border-radius: 5px;
	color: #333;
	transition: 0.3s;
	font-weight: 500;
}

.product-menu li img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.product-menu li a:hover {
	background: #f5f5f5;
	color: #007bff;
}

.diagram-box {
	border: 1px solid #e0e0e0;
	transition: transform 0.3s, box-shadow 0.3s;
	background: #f9f9f9;
}

.diagram-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.animate-sidebar {
	animation: slideIn 0.8s ease-out;
}

/* Slide in from left */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Menu styles */
.product-menu li {
	margin-bottom: 12px;
}

.product-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

/* Image style */
.product-menu li a img {
	width: 28px;
	height: 28px;
	transition: transform 0.3s ease;
}

/* Hover effects */
.product-menu li a:hover {
	background: #f0f8ff;
	color: #007bff;
	transform: translateX(6px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.product-menu li a:hover img {
	transform: scale(1.2) rotate(8deg);
}

















.text-gradient {
	background: linear-gradient(90deg, #ff6f61, #6a5acd, #20c997);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.accordion-button {
	transition: all 0.3s ease;
}

.accordion-button:hover {
	filter: brightness(1.1);
	transform: scale(1.02);
}

.accordion-body {
	font-size: 1rem;
	line-height: 1.6;
}


.custom-list {
	list-style: none;
	padding-left: 0;
}

.custom-list li {
	margin-bottom: 10px;
	padding-left: 5px;
	font-size: 15px;
	display: flex;
	align-items: center;
	transition: transform 0.2s ease;
}

.custom-list li:hover {
	transform: translateX(6px);
	color: #007bff;
}

/* Hover effect for diagram boxes */
.hover-box {
	transition: all 0.3s ease;
	background: #fff;
}

.hover-box:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: #f9fbff;
}

/* Image effect */
.hover-box img {
	transition: transform 0.3s ease;
}

.hover-box:hover img {
	transform: scale(1.1) rotate(2deg);
}

/* Hover box styling */
.hover-box {
	transition: all 0.3s ease;
	background: #fff;
}

.hover-box:hover {
	transform: translateY(-6px) scale(1.05);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	background: #f9fbff;
}

/* Image hover effect */
.hover-box img {
	transition: transform 0.3s ease;
}

.hover-box:hover img {
	transform: scale(1.1) rotate(1deg);
}

.product-title a {
	color: black;
}

.our-progress {
	background: linear-gradient(135deg, #002b45, #014b6e);
	color: white;
	padding: 60px 0;
}

.progress-title h6 {
	color: #fbb034;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.progress-title h2 {
	font-weight: 700;
	font-size: 2rem;
}

.progress-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px 15px;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-card i {
	font-size: 2.5rem;
	color: #fbb034;
	margin-bottom: 15px;
}

.progress-card h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: white;
}

.progress-card p {
	color: #dcdcdc;
	font-size: 1rem;
	margin: 0;
}

.progress-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

/* Common Style for Next/Prev */
.swiper-button-next,
.swiper-button-prev {
	width: 50px;
	height: 50px;
	background: #ff6600;
	/* Orange Button */
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	/* White Arrow */
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #e65100;
	/* Darker Orange */
	transform: scale(1.1);
}

.highlight {
	color: orange;
	font-weight: bold;
}

.btn-quote {
	background: #f9a825;
	color: #fff;
	padding: 12px 25px;
	font-weight: bold;
	border-radius: 5px;
	text-transform: uppercase;
}

.btn-quote:hover {
	background: #ff8f00;
	color: white;
}

.hero-img {
	position: relative;
	z-index: 2;
}

.hero-img img {
	max-width: 100%;
}