/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Toplax - Factory & Industry HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. Our Story css
08. What We Do css
09. Our Work css
10. Our Process css
11. Our Pricing css
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Services Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css
23. Team Page css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. 404 Page css
31. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #222222;
	--secondary-color		: #F5F5F5;
	--text-color			: #81848A;
	--accent-color			: #18476c;
	--white-color			: #FFFFFF;
	--divider-color			: #EBEBEB;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Manrope", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--text-color);
	cursor: auto;
}

.cb-cursor{
	display: none !important;
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
	margin: 0;
	padding: 0;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 0.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 2px 40px 2px 2px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(-15px, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translate(-15px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default span{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 8px;
	padding: 15px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover span{
	background-color: transparent;
	color: var(--primary-color);
}

.btn-default span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover span::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-highlighted{
	background-color: var(--white-color);
}

.btn-highlighted:hover{
	background-color: var(--primary-color);
}

.btn-highlighted::before{
	background-image: url('../images/arrow-dark.svg');
}

.btn-highlighted:hover::before{
	filter: brightness(0) invert(1);
}

.btn-highlighted span{
	color: var(--white-color );
	background-color: var(--accent-color);
}

.btn-highlighted:hover span{
	color: var(--primary-color);
}

.btn-highlighted span::after{
    background: var(--white-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background-color: #ffffff;
	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(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content{
	margin-left: 90px;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 26px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1{
	font-size: 70px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 50px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}


.section-title h1 span,
.section-title h2 span{
	font-weight: 700;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h1,
.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		 ****/
/************************************/

.topbar{
	padding: 20px 0;
}

.site-logo img{
	max-height: 55px;
	width: auto;
}

.topbar-contact-info{
	display: flex;
	align-items: center;
	justify-content: end;
}

.topbar-contact-info ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.topbar-contact-info ul li{
	display: inline-block;
	margin-right: 15px;
}

.topbar-contact-info ul li:last-child{
	margin-right: 0;
}

.topbar-contact-info ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbar-contact-info ul li .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 10px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover .icon-box{
	background: var(--primary-color);
}

.topbar-contact-info li .icon-box img{
	max-width: 24px;
}

.topbar-contact-info ul li p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	width: calc(100% - 60px);
	margin: 0;
}

.topbar-qoute-btn{
	line-height: 1em;
}

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: #ffffff;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar{
	padding: 10px 0px;
	align-items: center;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.main-header .header-sticky.active-sticky-header.hide .navbar{
	padding: 20px 0;
}

.main-header .navbar-brand{
	padding: 0;
	margin: 0;
	margin-right: 40px;
	display: block;
}

.main-header .navbar-brand img{
	max-height: 50px;
	width: auto;
}

.main-header .header-sticky.active-sticky-header.hide .navbar-brand{
	display: block;
	margin-right: 40px;
}

.header-quote-btn{
	margin-left: 20px;
	flex-shrink: 0;
}

.main-menu.navbar-collapse{
	flex: 1;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item .nav-link{
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: color 0.3s ease-in-out;
	position: relative;
}

.main-menu ul li.nav-item .nav-link::after{
	content: '';
	position: absolute;
	bottom: 5px;
	left: 20px;
	right: 20px;
	height: 2px;
	background-color: var(--accent-color);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease-in-out;
}

.main-menu ul li.nav-item:first-child .nav-link{
	padding-left: 0;
}

.main-menu ul li.nav-item:first-child .nav-link::after{
	left: 0;
}

.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 .nav-link:hover,
.main-menu ul li .nav-link:focus{
	color: var(--accent-color);
}

.main-menu ul li .nav-link:hover::after,
.main-menu ul li .nav-link:focus::after{
	transform: scaleX(1);
}

.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: var(--accent-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.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;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after{
	transform: rotate(90deg);
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item .nav-link{
	color: var(--white-color);
	padding: 4px 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 .nav-link:hover,
.main-menu ul ul li .nav-link:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 4px 20px 4px 23px !important;
}

.header-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-social-links ul li{
	display: inline-block;
	margin-right: 20px;
}

.header-social-links ul li:last-child{
	margin-right: 0;
}

.header-social-links ul li a{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li:hover a{
	color: var(--white-color);
}

.header-social-links ul li a i{
	font-size: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-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: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: color 0.3s ease-in-out;
	display: inline-block;
}

.slicknav_nav li a::after{
	content: '';
	position: absolute;
	bottom: 2px;
	left: 20px;
	right: 20px;
	height: 2px;
	background-color: var(--accent-color);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--accent-color);
}

.slicknav_nav a:hover::after,
.slicknav_nav a:focus::after{
	transform: scaleX(1);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/


.hero{
	padding: 150px 0 40px;
	position: relative;
	overflow: hidden;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, transparent 42.92%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video{
	background: #111111;
	min-height: 600px;
	padding-top: 150px;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background: #111111;
}

.hero.hero-video .hero-bg-video video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero.hero-video .hero-bg-video video.is-playing{
	background: transparent;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 210px 0;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
	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: 1;
}

.excellence-innovating-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 150px;
	z-index: 1;
}

.excellence-innovating-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 100px;
}

.excellence-innovating-list ul li{
	position: relative;
	color: var(--white-color);
	padding-left: 40px;
}

.excellence-innovating-list ul li:before{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: url('../images/icon-check.svg') no-repeat center left;
	background-size: cover;
}

/************************************/
/***      05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
	background: url('../images/about-us-bg.svg') no-repeat;
	background-position: bottom left;
	background-size: auto;
}

.about-image{
	position: relative;
	display: flex;
	justify-content: end;
	padding-top: 150px;
	margin-right: 40px;
}

.about-img-1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 300px;
}

.about-img-2 figure,
.about-img-1 figure{
	display: block;
	border-radius: 40px;
}

.about-img-1 figure img{
	border-radius: 40px;
}

.about-img-2 img{
	border: 10px solid var(--white-color);
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 40px;
}

.company-experience{
	position: absolute;
	top: 50px;
	right: 0px;
	display: flex;
	align-items: center;
	max-width: 250px;
}

.company-experience-counter{
	width: 120px;
}

.company-experience-counter h2{
	font-size: 50px;
	color: var(--accent-color);
}

.company-experience-content p{
	font-size: 18px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.about-content-list{
	margin-bottom: 40px;
}

.about-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.about-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.about-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.genuine-rating-counter{
	background: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
	text-align: center;
}

.genuine-rating-counter .about-counter{
	margin-bottom: 5px;
}

.genuine-rating-counter .about-counter h2{
    background: url('../images/genuine-rating-counter-bg.jpg');
    background-size: cover;
	background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	font-weight: 900;
}

.genuine-rating{
	margin-bottom: 20px;
}

.genuine-rating ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.genuine-rating ul li{
	margin-right: 5px;
}

.genuine-rating ul li:last-child{
	margin-right: 0;
}

.genuine-rating ul li i{
	color: var(--accent-color);
}

.genuine-rating-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***    05b. Why Choose Us css    ***/
/************************************/

.why-choose-us {
    position: relative;
    background: linear-gradient(135deg, #f4f8fc 0%, #eef4ff 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* ── Animated background layer ─────────────────── */
.wcus-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wcus-bg-orb {
    position: absolute;
    border-radius: 50%;
}

.wcus-bg-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(24,71,108,0.07) 0%, transparent 65%);
    top: -250px;
    right: -150px;
    animation: wcusOrbPulse 12s ease-in-out infinite;
}

.wcus-bg-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(24,71,108,0.05) 0%, transparent 65%);
    bottom: -150px;
    left: -80px;
    animation: wcusOrbPulse 16s ease-in-out infinite reverse;
}

.wcus-bg-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(24,71,108,0.06) 0%, transparent 70%);
    top: 40%;
    left: 38%;
    animation: wcusOrbPulse 9s ease-in-out infinite 3s;
}

.wcus-bg-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24,71,108,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,71,108,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes wcusOrbPulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    50%       { transform: scale(1.12) translate(-15px, 15px); opacity: 1; }
}

/* ── Left visual ───────────────────────────────── */
.wcus-visual {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.wcus-img-wrapper {
    position: relative;
}

.wcus-img-wrapper figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24,71,108,0.18);
}

.wcus-img-wrapper figure img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.wcus-img-wrapper:hover figure img {
    transform: scale(1.05);
}

.wcus-img-wrapper figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(24,71,108,0.4) 100%);
    pointer-events: none;
}

/* Spinning dashed ring */
.wcus-deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    border-radius: 22px;
    border: 1.5px dashed rgba(24,71,108,0.25);
    animation: wcusRingSpin 28s linear infinite;
    pointer-events: none;
}

@keyframes wcusRingSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Corner brackets */
.wcus-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.wcus-corner-tl {
    top: 0;
    left: 0;
    border-top: 3px solid var(--accent-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px 0 0 0;
}

.wcus-corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    border-radius: 0 0 4px 0;
}

/* Floating solid badges (light bg friendly) */
.wcus-float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(24,71,108,0.15);
    border-radius: 14px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(24,71,108,0.14);
}

.wcus-float-badge-top {
    top: 18px;
    right: -22px;
    animation: wcusFloat 4s ease-in-out infinite;
}

.wcus-float-badge-bottom {
    bottom: 28px;
    left: -22px;
    animation: wcusFloat 5.5s ease-in-out infinite reverse;
}

@keyframes wcusFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.wcus-float-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #2468a2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(24,71,108,0.35);
}

.wcus-float-icon-wrap i {
    color: #fff;
    font-size: 17px;
}

.wcus-float-badge span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

/* ── Right content ─────────────────────────────── */
.wcus-content {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.wcus-content .section-title {
    margin-bottom: 36px;
}

/* ── Benefit list ──────────────────────────────── */
.wcus-list {
    display: flex;
    flex-direction: column;
}

.wcus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0 22px 16px;
    border-bottom: 1px solid rgba(24,71,108,0.1);
    position: relative;
    transition: transform 0.35s ease;
}

.wcus-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wcus-item:hover {
    transform: translateX(6px);
}

/* Animated left accent line */
.wcus-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #2468a2 100%);
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.35s ease;
}

.wcus-item:last-child::before {
    bottom: 0;
}

.wcus-item:hover::before {
    transform: scaleY(1);
}

/* Icon column */
.wcus-item-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.wcus-item-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(24,71,108,0.07);
    border: 1px solid rgba(24,71,108,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.wcus-item-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,71,108,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s;
}

.wcus-item:hover .wcus-item-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(24,71,108,0.3);
}

.wcus-item:hover .wcus-item-icon::before {
    opacity: 1;
}

.wcus-item-icon i {
    font-size: 22px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

.wcus-item:hover .wcus-item-icon i {
    color: #fff;
    transform: scale(1.18) rotate(-5deg);
}

.wcus-item-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(24,71,108,0.3);
}

/* Text body */
.wcus-item-body {
    flex: 1;
    padding-top: 4px;
}

.wcus-item-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.wcus-item:hover .wcus-item-body h4 {
    color: var(--accent-color);
}

.wcus-item-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-color);
    margin: 0;
}

/************************************/
/***   05c. Product Categories    ***/
/************************************/

/* Section wrapper */
.prodcat-section {
    position: relative;
    background: linear-gradient(150deg, #0f0c1a 0%, #141020 30%, #0c1a14 70%, #090f1a 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Rainbow separator line — clear visual partition from Why Choose Us above */
.prodcat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #6366f1 15%,
        #8b5cf6 35%,
        #06b6d4 55%,
        #10b981 75%,
        transparent 100%);
    z-index: 3;
}

/* ── Animated background ─────────────────────── */
.prodcat-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Subtle diagonal mesh pattern */
.prodcat-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.018) 0px,
            rgba(255,255,255,0.018) 1px,
            transparent 1px,
            transparent 44px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.018) 0px,
            rgba(255,255,255,0.018) 1px,
            transparent 1px,
            transparent 44px
        );
}

/* Diagonal sweep beam lines */
.prodcat-bg-line {
    position: absolute;
    width: 250%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.07) 30%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.07) 70%,
        transparent 100%);
    transform-origin: left center;
}

.prodcat-bg-line-1 {
    top: 28%;
    left: -60%;
    transform: rotate(-18deg);
    animation: prodcatBeamSweep 10s ease-in-out infinite;
}

.prodcat-bg-line-2 {
    top: 68%;
    left: -60%;
    transform: rotate(-18deg);
    animation: prodcatBeamSweep 13s ease-in-out infinite 5s;
}

@keyframes prodcatBeamSweep {
    0%   { opacity: 0;   transform: rotate(-18deg) translateX(0%); }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { opacity: 0;   transform: rotate(-18deg) translateX(55%); }
}

/* Three-color floating orbs */
.prodcat-bg-orb {
    position: absolute;
    border-radius: 50%;
}

/* Warm gold – top-left */
.prodcat-bg-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 65%);
    top: -180px;
    left: -180px;
    animation: prodcatOrb1Float 16s ease-in-out infinite;
}

/* Cyan – bottom-right */
.prodcat-bg-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 65%);
    bottom: -180px;
    right: -120px;
    animation: prodcatOrb2Float 20s ease-in-out infinite;
}

/* Soft purple – center */
.prodcat-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    animation: prodcatOrb3Pulse 11s ease-in-out infinite 2s;
}

@keyframes prodcatOrb1Float {
    0%, 100% { transform: translate(0,   0)   scale(1);    opacity: 0.8; }
    33%       { transform: translate(30px, -20px) scale(1.1); opacity: 1;   }
    66%       { transform: translate(10px,  30px) scale(0.95); opacity: 0.7; }
}

@keyframes prodcatOrb2Float {
    0%, 100% { transform: translate(0,    0)   scale(1);   opacity: 0.8; }
    40%       { transform: translate(-25px, 20px) scale(1.1); opacity: 1;  }
    70%       { transform: translate(15px, -15px) scale(0.9); opacity: 0.6; }
}

@keyframes prodcatOrb3Pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
    50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 1;   }
}

/* ── Section header ──────────────────────────── */
.prodcat-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.prodcat-header-desc {
    padding-left: 30px;
    border-left: 2px solid rgba(255,255,255,0.15);
}

.prodcat-header-desc p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 22px;
    line-height: 1.7;
}

/* Button variant for dark section backgrounds */
.btn-default.btn-light {
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.5);
}

/* ↓ This is the key fix: clear the white span background so white text is visible */
.btn-default.btn-light span {
    background-color: transparent;
    color: #fff;
}

/* Span hover-fill uses a soft white glow instead of accent color */
.btn-default.btn-light span::after {
    background: rgba(255,255,255,0.12);
}

/* Button fill sweeps in as a white block on hover */
.btn-default.btn-light::after {
    background: #fff;
}

/* On hover: border brightens, text goes dark against the white fill */
.btn-default.btn-light:hover {
    border-color: #fff;
}

.btn-default.btn-light:hover span {
    background-color: transparent;
    color: var(--primary-color);
}

/* Arrow swaps to dark SVG so it stays visible on the white hover fill */
.btn-default.btn-light:hover::before {
    background-image: url('../images/arrow-dark.svg');
}

/* ── Grid rows ───────────────────────────────── */
.prodcat-row {
    position: relative;
    z-index: 2;
}

.prodcat-row-1 {
    margin-bottom: 0;
}

/* ── Individual card ─────────────────────────── */
.prodcat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-height: 260px;
    display: block;
}

.prodcat-card-tall {
    min-height: 360px;
}

/* Image */
.prodcat-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.prodcat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prodcat-card:hover .prodcat-img-wrap img {
    transform: scale(1.1);
}

/* Default dark overlay */
.prodcat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,15,30,0.3) 0%,
        rgba(10,15,30,0.75) 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

/* Hover: swap in the card's unique color tint */
.prodcat-card:hover .prodcat-overlay {
    background: linear-gradient(180deg,
        rgba(10,15,30,0.1) 0%,
        var(--card-tint, rgba(24,71,108,0.9)) 100%);
}

/* Animated top accent bar (sweeps left to right on hover) */
.prodcat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prodcat-card:hover::before {
    transform: scaleX(1);
}

/* Content area */
.prodcat-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

/* Step number (top-right) */
.prodcat-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 3px 10px;
    align-self: flex-end;
    transition: all 0.35s ease;
}

.prodcat-card:hover .prodcat-num {
    color: #fff;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}

/* Info block (bottom) */
.prodcat-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prodcat-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    transition: transform 0.35s ease;
}

.prodcat-card:hover .prodcat-info h3 {
    transform: translateY(-4px);
}

/* Description — hidden by default, revealed on hover */
.prodcat-info p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.35s ease 0.05s;
}

.prodcat-card:hover .prodcat-info p {
    max-height: 80px;
    opacity: 1;
}

/* CTA link */
.prodcat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, color 0.25s ease;
}

.prodcat-card:hover .prodcat-cta {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.prodcat-cta i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.prodcat-cta:hover i {
    transform: translateX(4px);
}

/************************************/
/***     06. Our Service css      ***/
/************************************/

.our-services{
	position: relative;
	padding: 100px 0 280px;
	background: url('../images/our-service-bg.jpg') no-repeat center center;
	background-size: cover;
}

.our-services:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-services .container{
	position: relative;
	z-index: 1;
}

.our-services-list{
	position: relative;
	z-index: 2;
	margin-top: -180px;
}

.services-list-box{
	background: var(--white-color);
	border: 1px solid var(--secondary-color);
	border-radius: 40px;
	padding: 60px;
	box-shadow: 0px 4px 30px 0px #0000000A;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.services-list-box .service-item{
	width: calc(25% - 45px);
	position: relative;
}

.services-list-box .service-item:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	right: -30px;
	bottom: 0;
	left: auto;
	border-right: 1px solid var(--divider-color);
}

.services-list-box .service-item:nth-child(4n + 4):after{
	display: none;
}

.service-item .icon-box{
	margin-bottom: 30px;
}

.service-item .icon-box img{
	max-width: 60px;
}

.service-body{
	margin-bottom: 60px;
}

.service-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-item .service-footer a{
	background: var(--secondary-color);
	border-radius: 8px;
	width: 70px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-footer a{
	background: var(--accent-color);
}

.service-item .service-footer a img{
	max-width: 18px;
	transform: rotate(45deg);
	transition: all 0.3s ease-in-out;
}

.service-item .service-footer a:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***  06b. Industrial Segments    ***/
/************************************/

.why-us-section {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #ffffff; /* gaps act as white borders */
    gap: 1px;
    width: 100%;
}

.why-us-card {
    position: relative;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 35px 30px;
    overflow: hidden;
}

/* ── Title block (spans 2 columns) ── */
.why-us-info-block {
    grid-column: span 2;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px 30px 0;
}

.why-us-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.why-us-title {
    font-size: 44px;
    font-weight: 700;
    color: #1e2022;
    margin: 0;
    line-height: 1.2;
}

.why-us-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.why-us-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.why-us-view-all:hover {
    color: var(--primary-color);
    gap: 12px;
}

.why-us-view-all i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.why-us-view-all:hover i {
    transform: translateX(3px);
}

/* Dot grid decorative pattern */
.why-us-dot-grid {
    display: grid;
    grid-template-columns: repeat(5, 5px);
    grid-template-rows: repeat(6, 5px);
    gap: 12px;
    margin-top: 8px;
}

.why-us-dot-grid span {
    width: 5px;
    height: 5px;
    background-color: #4a74e7;
    border-radius: 50%;
}

/* ── Standard Image Cards ── */
.why-us-card.image-card,
.why-us-card.blueprint-card {
    color: #ffffff;
}

.why-us-card .card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-us-card .card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 28, 36, 0.76);
    z-index: 1;
    transition: background-color 0.4s ease;
}

.why-us-card:hover .card-bg-img {
    transform: scale(1.08);
}

.why-us-card:hover .card-overlay {
    background-color: rgba(22, 28, 36, 0.84);
}

/* ── Blueprint Cards (03 & 06) ── */
.why-us-card.blueprint-card .card-overlay {
    background-color: rgba(15, 33, 91, 0.88);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
}

.why-us-card.blueprint-card:hover .card-overlay {
    background-color: rgba(15, 33, 91, 0.94);
}

/* ── Card Content ── */
.why-us-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-us-card .card-num {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    display: inline-block;
}

.why-us-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.why-us-card .card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-weight: 400;
}

/* ── Solid Navy CTA Card ── */
.why-us-card.cta-card {
    grid-column: span 1;
    background-color: #19204e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 25px;
    border-bottom-right-radius: 180px;
}

.why-us-card.cta-card .cta-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-us-card.cta-card .cta-know-more {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-us-card.cta-card .cta-phone {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.why-us-card.cta-card .cta-phone:hover {
    color: #cde0ff;
}


/************************************/
/***       07. Our Story css      ***/
/************************************/

.our-story{
	padding: 100px 0;
}

.our-story-header-img{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-story-header-img figure{
	width: calc(50% - 15px);
	display: block;
	border-radius: 40px;
}

.our-story-header-img figure img{
	aspect-ratio: 1 / 0.71;
	object-fit: cover;
	border-radius: 40px;
}

.our-story-img{
	margin-right: 40px;
}

.our-story-img figure,
.our-story-img img{
	width: 100%;
	display: block;
	border-radius: 40px;
}

.our-story-img img{
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.our-story-content-body{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.our-story-content-body p:last-child{
	margin: 0;
}

.our-story-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.our-story-counter{
	width: calc(33.33% - 20px);
}

.our-story-counter h3{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.our-story-counter p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.our-story-intro-video{
	display: flex;
	align-items: center;
}

.our-story-client-img{
	margin-right: 50px;
}

.our-story-client-img .client-image{
    display: inline-block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
    margin-left: -18px;
	overflow: hidden;
}

.our-story-client-img .client-image:first-child{
    margin: 0;
}

.our-story-client-img .client-image figure{
	display: block;
}

.our-story-client-img .client-image img{
    max-width: 60px;
}

.video-play-button{
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a{
	border: 6px solid var(--accent-color);
	border-radius: 50%;
	height: 66px;
	width: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--primary-color);
}

.video-play-button a i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i{
	color: var(--primary-color);
}

.video-play-button p{
	color: var(--primary-color);
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       08. What We Do css     ***/
/************************************/

.what-we-do{
	background: url('../images/what-we-do-bg.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
}

.what-we-do .container-fluid{
	padding: 0;
}

.what-we-do-content{
	padding: 100px 120px;
	height: 100%;
}

.what-we-do-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.what-we-do-list-box-1,
.what-we-do-list-box-2{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-do-item{
	width: calc(50% - 15px);
	border: 1px solid var(--dark-divider-color);
	border-radius: 40px;
	padding: 30px;
}

.what-we-do-list-box-1 .what-we-do-item:nth-child(even){
	background: var(--dark-divider-color);
}

.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
	background: var(--dark-divider-color);
}

.what-we-do-item .icon-box{
	margin-bottom: 30px;
}

.what-we-do-item .icon-box img{
	max-width: 50px;
}

.what-we-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.what-we-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.what-we-do-footer{
	margin-top: 40px;
}

.what-we-do-footer p{
	color: var(--white-color);
	margin: 0;
}
.what-we-do-footer p span{
	color: var(--accent-color);
	text-decoration: underline;
}

.what-we-do-image{
	position: relative;
}

.contact-now-circle{
	content: '';
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	transform: translate(-50% , -50%);
	z-index: 1;
}

.contact-now-circle img{
	width: 130px;
	height: 130px;
	animation: contactrotate 20s infinite linear;
}

@keyframes contactrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.what-we-do-image,
.what-we-do-image figure,
.what-we-do-image figure img{
	width: 100%;
	height: 100%;
}

.what-we-do-image figure img{
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
}

/************************************/
/***       09. Our Work css       ***/
/************************************/

.our-work{
	padding: 100px 0 60px;
}

.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: 10px 60px;
	padding: 0;margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:before{
    content: '/';
    position: absolute;
    top: 0;
	bottom: 0;
    right: -35px;
}

.our-Project-nav ul li:last-child a:before{
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: var(--accent-color);
}

.project-item{
	position: relative;
	height: calc(100% - 40px);
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

.project-image{
	position: relative;
	margin-bottom: 30px;
}

.project-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-tag{
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 2;
}

.project-tag a{
	position: relative;
	display: block;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	color: var(--white-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	text-transform: capitalize;
	padding: 10px 12px;
	overflow: hidden;
}

.project-tag  a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
	opacity: 10%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-content{
	text-align: center;
}

.project-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.project-content h3 a{
	color: inherit;
}

/************************************/
/***      10. Our Process css     ***/
/************************************/

.our-process{
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-process-image{
	margin-right: 30px;
}

.our-process-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-process-image img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 40px;
}

.process-step-item{
	position: relative;
	/* border: 1px solid var(--divider-color); */
	border-radius: 40px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.process-step-item:last-child{
	margin-bottom: 0;
}

.process-step-item::before{
	content: '';
    display: block;
    position: absolute;
    top: auto;
	bottom: 0;
	left: 0;
    right: 0;
    background: var(--accent-color);
	width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.process-step-item.active:before,
.process-step-item:hover:before{
	height: 100%;
	top: 0;
	bottom: auto;
}

.process-step-no{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.process-step-no h2{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.process-step-content{
	position: relative;
	z-index: 1;
}

.process-step-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.process-step-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.process-step-item.active .process-step-content p,
.process-step-item.active .process-step-content h3,
.process-step-item.active .process-step-no h2,
.process-step-item:hover .process-step-content p,
.process-step-item:hover .process-step-content h3,
.process-step-item:hover .process-step-no h2{
	color: var(--white-color);
}

/************************************/
/***      11. Our Pricing css     ***/
/************************************/

.our-pricing{
    padding: 100px 0;
}

.pricing-box{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
	overflow: hidden;
}

.pricing-box::before{
	content: '';
	position: absolute;
	top: -25px;
	right: -25px;
	background-repeat: no-repeat;
	background-position: top  right;
	background-size: cover;
	width: 150px;
	height: 150px;
	z-index: 0;
}

.pricing-box.highlighted-box::before{
	filter: brightness(0) invert(1);
}

.pricing-box.box-1::before{
	background-image: url('../images/icon-pricing-box-1.svg');
}

.pricing-box.box-2::before{
	background-image: url('../images/icon-pricing-box-2.svg');
}

.pricing-box.box-3::before{
	background-image: url('../images/icon-pricing-box-3.svg');
}

.pricing-box.highlighted-box{
	background-color: var(--accent-color);
}

.pricing-title{
    margin-bottom: 60px;
}

.pricing-title h2{
    font-size: 60px;
	font-weight: 700;
    color: var(--accent-color);
	margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sup{
	font-size: 30px;
}

.pricing-title h2 sub{
    font-size: 16px;
	font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub{
	color: var(--white-color);
}

.pricing-title h3{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-list{
	margin-bottom: 60px;
}

.pricing-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-list ul li{
	width: 100%;
    position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
}

.pricing-box.highlighted-box .pricing-list ul li{
    color: var(--white-color);
}

.pricing-list ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.pricing-box.highlighted-box .pricing-list ul li::before{
    filter: brightness(0) invert(1);
}

.pricing-btn{
	line-height: 1em;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
	font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***    12. Our Testimonial css   ***/
/************************************/

.our-testimonial{
	background: url('../images/testimonial-bg.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-testimonial-image{
	margin-right: 30px;
}

.our-testimonial-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-testimonial-image img{
	aspect-ratio:  1 / 1.05;
	border-radius: 40px;
	object-fit: cover;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i{
	color: var(--accent-color);
}

.testimonial-content{
	margin-bottom: 60px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 500;
	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: 10px;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-body .author-content p{
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 56px;
	height: 56px;
	background: var(--accent-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(225deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	color: var(--primary-color);
}

.linear-client-partners{
	position: relative;
	margin-top: 80px;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(135deg, #18476c 0%, #0f2d45 55%, #18476c 100%);
	padding: 48px 0 42px;
	box-shadow: 0 20px 60px rgba(24, 71, 108, 0.25);
}

.linear-client-partners-bg{
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.linear-client-orb{
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.35;
	animation: linearClientOrb 8s ease-in-out infinite;
}

.linear-client-orb-1{
	width: 280px;
	height: 280px;
	background: rgba(255, 255, 255, 0.15);
	top: -80px;
	left: -60px;
}

.linear-client-orb-2{
	width: 220px;
	height: 220px;
	background: rgba(255, 255, 255, 0.1);
	bottom: -60px;
	right: -40px;
	animation-delay: -4s;
}

@keyframes linearClientOrb{
	0%, 100%{ transform: translate(0, 0) scale(1); }
	50%{ transform: translate(20px, 15px) scale(1.08); }
}

.linear-client-grid{
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.linear-client-partners-inner{
	position: relative;
	z-index: 1;
}

.linear-client-partners-header{
	text-align: center;
	margin-bottom: 36px;
	padding: 0 20px;
}

.linear-client-partners-label{
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
	padding: 6px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(4px);
}

.linear-client-partners-header h4{
	font-size: 22px;
	font-weight: 700;
	color: var(--white-color);
	margin: 0;
	line-height: 1.4;
}

.linear-client-marquee{
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.linear-client-marquee::before,
.linear-client-marquee::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.linear-client-marquee::before{
	left: 0;
	background: linear-gradient(90deg, #18476c, transparent);
}

.linear-client-marquee::after{
	right: 0;
	background: linear-gradient(270deg, #0f2d45, transparent);
}

.linear-client-marquee-track{
	display: flex;
	width: max-content;
	animation: linearClientMarquee 30s linear infinite;
}

.linear-client-marquee:hover .linear-client-marquee-track{
	animation-play-state: paused;
}

@keyframes linearClientMarquee{
	0%{ transform: translateX(0); }
	100%{ transform: translateX(-50%); }
}

.linear-client-logo-item{
	flex-shrink: 0;
	padding: 0 14px;
}

.linear-client-logo-card{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 90px;
	padding: 16px 24px;
	background: var(--white-color);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

.linear-client-logo-card::before{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(24, 71, 108, 0.08), transparent);
	transition: left 0.6s ease;
}

.linear-client-logo-card:hover{
	transform: translateY(-6px) scale(1.04);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
	border-color: rgba(24, 71, 108, 0.2);
}

.linear-client-logo-card:hover::before{
	left: 120%;
}

.linear-client-logo-card img{
	max-width: 100%;
	max-height: 52px;
	width: auto;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.linear-client-logo-card:hover img{
	transform: scale(1.05);
}

.testimonial-company-slider{
	border-top: 1px solid var(--divider-color);
	padding-top: 80px;
	margin-top: 80px;
}

.testimonial-company-slider .company-logo{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 12px 16px;
	background: var(--white-color);
	border-radius: 12px;
	border: 1px solid rgba(24, 71, 108, 0.08);
}

.testimonial-company-slider .company-logo img{
	width: auto;
	max-width: 100%;
	max-height: 48px;
	object-fit: contain;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 30px;
}

.post-featured-image a{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
	border-radius: 40px;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.63;
    object-fit: cover;
	border-radius: 40px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-body{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-item-content{
	width: 65%;
}

.post-item-content h2{
    font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-btn{
	text-align: right;
	margin-left: 20px;
}

.post-item-btn a{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover{
	background-color: var(--primary-color);
}

.post-item-btn a img{
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover img{
	transform: rotate(45deg);
}

/************************************/
/***        14. Footer css        ***/
/************************************/

.main-footer {
    background: #eef2f7;
    border-top: 3px solid var(--accent-color);
    padding: 70px 0 50px;
}

.about-footer {
    width: 100%;
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    max-width: 130px;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

.about-footer-content {
    margin-bottom: 0;
}

.about-footer-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

.footer-links h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 0;
    padding-bottom: 14px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.footer-links ul li {
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
    color: var(--accent-color);
    padding-left: 4px;
}

/* Contact column items with icons */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 14px;
    width: 16px;
}

.footer-contact-item a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
}

.footer-contact-item > span:last-child {
    color: var(--text-color);
}

/* Contact column layout — copyright anchored to its bottom */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Copyright inline — right side of footer body */
.footer-copyright-inline {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(24, 71, 108, 0.15);
}

.footer-copyright-inline p {
    color: var(--text-color);
    font-size: 13px;
    margin: 0;
}

/************************************/
/***     15. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat center center;
	background-size: cover;
	padding: 65px 0;
}

.page-header::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.99%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
    color: var(--white-color);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    cursor: none;
}

.page-header-box h1 span{
	font-weight: 800;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50px;
	padding: 7px 18px;
}

.page-header-box ol li.breadcrumb-item{
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 500;
}

.page-header-box ol li.breadcrumb-item a{
    color: rgba(255, 255, 255, 0.75);
	transition: color 0.25s ease;
}

.page-header-box ol li.breadcrumb-item a:hover{
	color: #ffffff;
}

.page-header-box ol li.breadcrumb-item.active{
	color: #ffffff;
	font-weight: 600;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f054";
    font-family: "FontAwesome";
	font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
	padding-right: 6px;
}

.our-mission-vision{
	position: relative;
}

.mission-vision-bg{
	position: relative;
	background: url('../images/our-service-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 200px;
}

.mission-vision-bg:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-vision-box{
	position: relative;
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
	margin-top: -200px;
	overflow: hidden;
	z-index: 1;
}

.mission-vision-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	overflow: hidden;
}

.mission-vision-nav ul li{
	width: 33.33%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.mission-vision-nav ul li:last-child{
	padding-right: 0;
}

.mission-vision-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border: none;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 30px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active,
.mission-vision-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.mission-vision-nav ul li .nav-link img{
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active img,
.mission-vision-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}

.mission-vision-item{
	background-color: var(--white-color);
	padding: 80px;
}

.mission-vision-content-header{
	margin-bottom: 40px;
}

.mission-vision-content-header p{
	margin: 0;
}

.mission-vision-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.mission-vision-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.mission-vision-content-list ul li:last-child{
	margin-bottom: 0;
}

.mission-vision-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.mission-vision-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.mission-vision-image img{
	width: 100%;
	aspect-ratio: 1 / 0.63;
	object-fit: cover;
	border-radius: 40px;
}

.our-history{
	padding: 100px 0;
}

.our-history-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.our-history-nav{
	width: calc(30% - 25px);
}

.our-history-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.our-history-nav ul li{
	width: 100%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.our-history-nav ul li:last-child{
	border: none;
}

.our-history-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
    transition: all 0.3s ease-in-out;
}

.our-history-nav ul li .nav-link.active,
.our-history-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.our-history-item{
	width: calc(70% - 25px);
}

.our-history-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.our-history-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.our-history-list ul li:last-child{
	margin-bottom: 0;
}

.our-history-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.our-history-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-history-image img{
    width: 100%;
	aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

.our-features{
	padding: 100px 0;
}

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	overflow: hidden;
}

.our-features-item{
	position: relative;
	width: 50%;
	padding: 50px;
	overflow: hidden;
}

.our-features-item:nth-child(1n + 1){
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.our-features-item:nth-child(2n + 2){
	border-right: none;
}

.our-features-item::before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -1;
}

.our-features-item:hover::before{
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.our-features-item .icon-box{
	margin-bottom: 30px;
}

.our-features-item .icon-box img{
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.our-features-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.features-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.features-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.our-features-item:hover .features-item-content p,
.our-features-item:hover .features-item-content h3{
	color: var(--white-color);
}

.our-features-item.features-image-box{
	border: none;
	padding: 0;
}

.our-features-item.features-image-box figure{
	display: block;
	height: 100%;
}

.our-features-item.features-image-box img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.485;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image figure{
	position: relative;
}

.team-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-member-item:hover .team-image figure::before{
	opacity: 1;
	visibility: visible;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	margin: 0 auto; 
	transform: translateY(100%);
	text-align: center;
	z-index: 2;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
	bottom: 20px;
	transform: translateY(0);
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 20px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    color: var(--white-color);
	cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-social-icon ul li a:hover{
	color: var(--accent-color);
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.team-content h3:hover{
	color: var(--accent-color);
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-images{
	position: relative;
}

.our-faqs-img figure{
	position: relative;
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-faqs-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-faqs-img figure img{
	width: 100%;
	aspect-ratio:  1 / 0.99;
	object-fit: cover;
}

.faqs-img-cta-box{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.faqs-img-cta-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.faqs-img-cta-box ul li{
	display: inline-block;
	margin-right: 40px;
}

.faqs-img-cta-box ul li:last-child{
	margin-right: 0;
}

.faqs-img-cta-box ul li a img{
	max-width: 30px;
	margin-right: 15px;
}

.faqs-img-cta-box ul li a{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faqs-img-cta-box ul li:hover a{
	color: var(--accent-color);
}

.our-faq-section .accordion-item{
	padding: 0;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--white-color);
	padding: 15px 50px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
	background: var(--accent-color);
   	color: var(--white-color);
   	border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: transparent;
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after, 
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body{
	background: var(--accent-color);
	padding: 15px 50px 15px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***     16. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.page-services .service-item{
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.page-services .service-item:hover{
	border-color: var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
}

/************************************/
/***   17. Services Single css    ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list{
	border: 1px solid var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	box-shadow: 0px 4px 30px 0px #0000000A;
	overflow: hidden;
}

.service-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 20px 30px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover{
    color: var(--accent-color);
}

.service-catagery-list ul li a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url(../images/arrow-dark.svg) no-repeat;
	background-size: cover;
	width: 24px;
	height: 24px;
    transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover:before{
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	position: relative;
	background-image: url(../images/sidebar-cta-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 20px;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 70%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.sidebar-cta-logo{
	position: relative;
	margin-bottom: 30px;
}

.sidebar-cta-logo img{
    width: 100%;
	max-width: 160px;	
}

.sidebar-cta-content{
	position: relative;
    margin-bottom: 30px;
}

.sidebar-cta-content h3{
    font-size: 40px;
	font-weight: 300;
	color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-cta-content h3 span{
	font-weight: 700;
}

.sidebar-cta-content p{
	color: var(--white-color);
    margin-bottom: 0;
}

.sidebar-cta-contact-list{
	position: relative;
}

.sidebar-cta-contact-item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-cta-contact-item:last-child{
    margin: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-right: 15px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 16%;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	z-index: 0;
}

.sidebar-cta-contact-item img{
	position: relative;
    max-width: 24px;
	z-index: 1;
}

.cta-contact-item-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .cta-contact-item-title h3{
	color: var(--accent-color);
}

.service-featured-image{
    margin-bottom: 30px;
}

.service-featured-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.service-featured-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 40px;
}

.service-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span{
    font-weight: 700;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
	padding: 0;
    margin-bottom: 40px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.service-entry ul li{
	position: relative;
	width: calc(33.33% - 20px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.service-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.service-entry-box{
	display: flex;
	gap: 80px 30px;
	flex-wrap: wrap;
	margin: 40px 0;
}

.service-entry-item{
	position: relative;
	width: calc(50% - 15px);
}

.service-entry-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--divider-color);
	height: 1px;
	width: 100%;
	transform: translateY(40px);
}

.service-entry-item:nth-last-child(-n + 2)::before{
	display: none;
}

.service-entry-item .icon-box{
	margin-bottom: 30px;
}

.service-entry-item .icon-box img{
	max-width: 50px;
}

.service-entry-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-entry-item-content p{
	margin-bottom: 0;
}

.service-entry-images{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-img{
	width: calc(50% - 15px);
}

.service-entry-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.service-entry-img img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/***     18. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-blog .post-featured-image img{
    aspect-ratio: 1 / 0.91;
}

.page-blog .post-item .post-item-body{
	display: block;
}

.page-blog .post-item .post-item-content{
	width: 100%;
	margin-bottom: 20px;
}

.post-readmore-btn a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: var(--accent-color);
	padding-right: 34px;
	transition: all 0.3s ease-in-out;
}

.post-readmore-btn a:hover{
	color: var(--primary-color);
}

.post-readmore-btn a::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.post-readmore-btn a:hover::before{
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(0);
}

.page-pagination{
    margin-top: 10px;
    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(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***      19. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	border-radius: 40px;
	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: 70px;
}

.post-entry h2{
	font-size: 50px;
}

.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(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 30px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	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: 10px;
    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: 10px;
    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-projects{
	padding: 100px 0 60px;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.project-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.project-detail-title{
	background-color: var(--accent-color);
	padding: 20px 30px;
}

.project-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.project-detail-list{
	padding: 30px;
}

.project-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.project-detail-item:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.project-detail-item .icon-box{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box{
	background-color: var(--primary-color);
}

.project-detail-item .icon-box img{
	max-width: 20px;
}

.project-detail-content{
	width: calc(100% - 60px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 30px;
}

.project-single-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.project-single-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.project-entry{
    margin-bottom: 60px;
}

.project-info,
.project-goal{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 700;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry ul{
	padding: 0;
    margin-bottom: 20px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.project-entry ul li{
	position: relative;
	width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.project-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.project-query-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
}

.project-query-item:last-child{
	margin-bottom: 0;
}

.project-query-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.project-query-content{
	width: calc(50% - 15px);
}

.project-query-box ul{
	margin-bottom: 0;
}

.project-query-box ul li{
	width: 100%;
}

.project-query-img{
	width: calc(50% - 15px);
}

.project-query-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-query-img img{
	width: 100%;
	aspect-ratio: 1 / 0.73;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/***      22. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***      23. Team Single css     ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-member-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.team-member-box{
	background-color: var(--white-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border: 1px solid var(--secondary-color);
	border-radius: 40px;
	padding: 30px;
	margin-bottom: 60px;
}

.team-member-image{
	margin-bottom: 30px;
}

.team-member-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.team-member-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.team-member-box:hover .team-member-image img{
    transform: scale(1.1);
}

.team-member-name{
	text-align: center;
	margin-bottom: 20px;
}
	
.team-member-name h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-member-name p{
	text-transform: capitalize;
	margin: 0;
}

.team-member-social-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.team-member-social-list ul li{
	display: inline-block;
    margin-right: 20px;
}

.team-member-social-list ul li:last-child{
	margin: 0;
}

.team-member-social-list ul li a{
	color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li a:hover{
    color: var(--primary-color);
}

.team-member-social-list ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.team-detail-title{
	background-color: var(--accent-color);
	padding: 22px 30px;
}

.team-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-detail-list{
	padding: 30px;
}

.team-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.team-detail-item:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.team-detail-item .icon-box{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.team-detail-item:hover .icon-box{
	background-color: var(--primary-color);
}

.team-detail-item .icon-box img{
	max-width: 20px;
}

.team-detail-content{
	width: calc(100% - 60px);
}

.team-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-detail-content p{
	margin-bottom: 0;
}

.team-member-info,
.team-member-skills-feature{
	margin-bottom: 60px;
}

.team-member-content h2{
	font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-member-content h2 span{
    font-weight: 700;
}

.team-member-content p{
	margin-bottom: 20px;
}

.team-member-content p:last-child{
	margin-bottom: 0;
}

.team-member-skills-feature{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skills,
.team-member-feature{
	width: calc(50% - 15px);
}

.skills-progress-bar{
    margin-bottom: 20px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
    font-size: 15px;
    font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.team-member-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member-content ul li{
    position: relative;
	width: 100%;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 40px;
}

.team-member-content ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

/************************************/
/***     24. Pricing Page css     ***/
/************************************/

.page-pricing{
	padding: 100px 0;
}

/************************************/
/***   25. Testimonial Page css   ***/
/************************************/

.page-testimonial{
	padding: 100px 0 70px;
}

.client-testimonial-item{
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 40px;
	margin-bottom: 30px;
}

.client-testimonial-item-content{
	margin-bottom: 40px;
}

.client-testimonial-rating{
	margin-bottom: 20px;
}

.client-testimonial-rating i{
	color: var(--accent-color);
}

.client-testimonial-content p{
	margin-bottom: 0;
}

.client-testimonial-author{
	display: flex;
	align-items: center;
}

.client-testimonial-author-content{
	width: calc(100% - 55px);
	display: flex;
	align-items: center;
}

.client-author-image{
	margin-right: 15px;
}

.client-author-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.client-author-content{
	width: calc(100% - 75px);
}

.client-author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	margin: 0;
}

.client-testimonial-quote{
	margin-left: 15px;
}

.client-testimonial-quote img{
	max-width: 40px;
}

/************************************/
/***     26. 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{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      28. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    background: url('../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	transform: translateY(-50%) rotate(45deg);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
	background: url(../images/about-us-bg.svg) no-repeat;
    background-position: bottom left;
    background-size: auto;
}

.contact-information{
	margin-right: 40px;
}

.contact-info-item{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
    margin-bottom: 40px;
}

.contact-info-item:last-child{
	border: none;
	padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 10px;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background: var(--primary-color);
    border-radius: 10px;
    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 img{
	position: relative;
    max-width: 30px;
	z-index: 1;
}

.contact-info-content{
    width: calc(100% - 80px);
}

.contact-info-content h3{
    font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content p{
    margin-bottom: 0;
}

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
    padding: 40px;
}

.contact-form .form-control{
    font-size: 16px;
	font-weight: 400;
    background-color: var(--white-color);
    color: var(--text-color);
	border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 17px 15px;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/***      30. 404 Page css        ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){

	.what-we-do-content{
		padding: 100px 80px 100px 15px;
	}

	.contact-now-circle img{
		width: 100px;
		height: 100px;
	}
}

@media only screen and (max-width: 1024px){

	.what-we-do-content{
		padding: 100px 50px 100px 15px;
	}

	.contact-now-circle img{
		width: 80px;
		height: 80px;
	}
}

@media only screen and (max-width: 991px){

	.btn-default span{
		padding: 12px 15px;
	}

	.topbar{
		padding: 15px 0;
	}

	.site-logo{
		display: none;
	}

	.topbar-contact-info{
		justify-content: center;
	}

	.topbar-contact-info ul{
		margin-right: 0;
		padding-right: 0;
	}

	.topbar-contact-info ul li .icon-box{
		width: 35px;
		height: 35px;
		margin-right: 15px;
	}

	.topbar-contact-info li .icon-box img{
		max-width: 20px;
	}

	.topbar-contact-info ul li p{
		font-size: 18px;
		width: calc(100% - 50px);
	}

	.navbar{
		padding: 15px 0;
	}

	.header-quote-btn{
		display: none;
	}

	.main-header .navbar-brand{
		display: block;
	}

	.main-header .navbar-brand img{
		max-width: 130px;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 50px;
	}

	.section-title-content{
		margin-left: 0px;
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 54px;
	}

	.section-title h2{
		font-size: 40px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.header-social-links{
		display: none;
	}

	.hero{
		padding: 80px 0 40px;
	}

	.hero.hero-video{
		min-height: 500px;
		padding-top: 80px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 100px 0 150px;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.excellence-innovating-list{
		padding-top: 30px;
		margin-top: 80px;
	}

	.excellence-innovating-list ul{
		gap: 20px 30px;
	}

	.excellence-innovating-list ul li{
		font-size: 14px;
		padding-left: 30px;
	}

	.excellence-innovating-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.about-us{
		padding: 50px 0;
		background-size: 50% auto;
	}

	.about-image{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
		padding-top: 120px;
	}

	.company-experience{
		top: 30px;
		max-width: 195px;
	}

	.company-experience-counter h2{
		font-size: 40px;
	}

	.company-experience-content p{
		font-size: 16px;
	}

	.about-img-2 img{
		aspect-ratio: 1 / 1.1;
	}

	.about-content-list ul li{
		margin-bottom: 15px;
	}

	.about-content-list{
		margin-bottom: 30px;
	}

	.about-content-list ul li{
		padding-left: 30px;
	}

	.about-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	/* Why Choose Us – tablet */
	.why-choose-us {
		padding: 70px 0;
	}

	.wcus-visual {
		padding: 18px;
		margin-bottom: 40px;
	}

	.wcus-img-wrapper figure img {
		height: 380px;
	}

	.wcus-float-badge-top {
		right: -8px;
	}

	.wcus-float-badge-bottom {
		left: -8px;
	}

	.wcus-content {
		padding-left: 20px;
	}

	.genuine-rating-counter{
		padding: 40px;
	}

	.genuine-rating-counter .about-counter h2{
		font-size: 60px;
	}

	.genuine-rating-counter .genuine-rating{
		margin-bottom: 10px;
	}

	.our-services{
		padding: 50px 0 180px;
	}

	.services-list-box{
		padding: 40px;
	}

	.services-list-box .service-item{
		width: calc(50% - 30px);
	}

	.services-list-box .service-item:nth-child(2n + 2):after{
		display: none;
	}

	.service-item .icon-box{
		margin-bottom: 20px;
	}

	.service-item .icon-box img{
		max-width: 50px;
	}

	.service-body{
		margin-bottom: 30px;
	}

	/* Product Categories – tablet */
	.prodcat-section {
		padding: 70px 0;
	}

	.prodcat-header {
		margin-bottom: 36px;
	}

	.prodcat-header-desc {
		padding-left: 0;
		border-left: none;
		margin-top: 20px;
	}

	.prodcat-card-tall {
		min-height: 300px;
	}

	.prodcat-card {
		min-height: 240px;
	}

	.prodcat-info h3 {
		font-size: 18px;
	}

	/* Industrial Segments – tablet */
	.why-us-section {
		padding: 70px 0;
	}

	.why-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-us-info-block {
		padding: 30px 20px;
	}

	.why-us-title {
		font-size: 36px;
	}

	.why-us-card {
		min-height: 260px;
		padding: 28px 24px;
	}

	.why-us-card.cta-card {
		padding: 30px 20px;
	}

	.why-us-card.cta-card .cta-phone {
		font-size: 20px;
	}

	.our-story{
		padding: 50px 0;
	}

	.our-story .section-row{
		margin-bottom: 30px;
	}

	.our-story-header-img{
		margin-top: 20px;
	}

	.our-story-img{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-story-img img{
		aspect-ratio: 1 / 0.55;
	}

	.our-story-content-body{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.our-story-counters{
		margin-bottom: 40px;
	}

	.our-story-counter h3{
		font-size: 40px;
	}

	.our-story-counter p{
		font-size: 18px;
	}

	.our-story-client-img .client-image img{
		max-width: 50px;
	}

	.what-we-do{
		background-position: bottom 50% left;
	}

	.what-we-do-content{
		padding: 50px 15px 70px;
		height: auto;
	}

	.what-we-do-item{
		padding: 30px 20px;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 20px;
	}

	.what-we-do-footer{
		margin-top: 30px;
	}

	.what-we-do-image,
	.what-we-do-image figure,
	.what-we-do-image figure img{
		height: auto;
	}

	.what-we-do-image figure img{
		aspect-ratio: 1 / 0.77;
	}

	.contact-now-circle{
		left: 50%;
		top: 0;
		transform: translate(-50%, -50%);
	}

	.contact-now-circle img{
        width: 100px;
        height: 100px;
    }

	.our-work{
		padding: 50px 0 20px;
	}

	.project-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.our-Project-nav{
		margin-bottom: 40px;
	}

	.our-Project-nav ul{
		gap: 10px 30px;
	}

	.our-Project-nav ul li a:before{
		right: -20px;
	}

	.our-Project-nav ul li a{
		font-size: 14px;
	}

	.project-image{
		margin-bottom: 20px;
	}

	.project-tag{
		top: 15px;
		left: 15px;
	}

	.project-tag a{
		font-size: 14px;
	}

	.project-image figure{
		border-radius: 20px;
	}

	.project-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 30px;
	}

	.our-process{
		padding: 50px 0;
	}

	.our-process-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-process-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.process-step-item{
		border-radius: 30px;
		padding: 20px;
	}

	.process-step-no h2{
		font-size: 40px;
	}

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		border-radius: 30px;
		padding: 30px;
	}

	.pricing-box::before{
		width: 100px;
		height: 100px;
	}

	.pricing-title{
		margin-bottom: 40px;
	}

	.pricing-title h2{
		font-size: 45px;
	}

	.pricing-title h2 sup{
		font-size: 24px;
	}

	.pricing-list{
		margin-bottom: 40px;
	}

	.pricing-list ul{
		gap: 15px;
	}

	.pricing-benefit-list{
		margin-top: 10px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.our-testimonial-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-testimonial-image figure,
	.our-testimonial-image img{
		aspect-ratio: 1 / 0.8;
		border-radius: 30px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-content{
		margin-bottom: 40px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 46px;
		height: 46px;
	}

	.linear-client-partners{
		margin-top: 40px;
		padding: 36px 0 32px;
		border-radius: 20px;
	}

	.linear-client-partners-header h4{
		font-size: 18px;
	}

	.linear-client-logo-card{
		width: 170px;
		height: 80px;
		padding: 14px 18px;
	}

	.linear-client-logo-card img{
		max-height: 44px;
	}

	.testimonial-company-slider{
		padding-top: 40px;
		margin-top: 40px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-featured-image figure, 
	.post-featured-image a,
	.post-featured-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.post-item-content{
		width: auto;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.post-item-btn{
		margin-left: 10px;
	}

	.post-item-btn a{
		width: 40px;
		height: 40px;
	}

	.main-footer{
		padding: 50px 0 30px;
	}

	.about-footer{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright-inline{
		margin-top: 20px;
		padding-top: 12px;
	}

	.page-header{
		padding: 50px 0;
	}

	.page-header-box h1{
		font-size: 34px;
	}

	.mission-vision-bg{
		padding: 50px 0 150px;
	}

	.mission-vision-box{
		border-radius: 30px;
		margin-top: -150px;
	}

	.mission-vision-nav ul li .nav-link{
		font-size: 18px;
		padding: 20px;
	}

	.mission-vision-nav ul li .nav-link img{
		max-width: 30px;
		margin-right: 10px;
	}

	.mission-vision-item{
		padding: 30px;
	}

	.mission-vision-content{
		margin-bottom: 30px;
	}

	.mission-vision-content-header{
		margin-bottom: 20px;
	}

	.mission-vision-content-list ul li{
		margin-bottom: 15px;
	}

	.mission-vision-image figure{
		border-radius: 30px;
	}

	.mission-vision-image img{
		aspect-ratio: 1 / 0.53;
		border-radius: 30px;
	}

	.our-history{
		padding: 50px 0;
	}

	.our-history-box{
		gap: 30px;
	}

	.our-history-item,
	.our-history-nav{
		width: 100%;
	}

	.our-history-nav ul li .nav-link{
		padding: 20px;
	}

	.our-history-content{
		margin-bottom: 30px;
	}

	.our-history-list ul li{
		margin-bottom: 15px;
	}

	.our-history-image figure{
		border-radius: 30px;
	}

	.our-history-image img{
		aspect-ratio: 1 / 0.56;
		border-radius: 30px;
	}

	.our-features{
		padding: 50px 0;
	}

	.our-features-boxes{
		border-radius: 30px;
	}

	.our-features-item{
		padding: 20px;
	}

	.our-features-item .icon-box{
		margin-bottom: 20px;
	}

	.features-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-img{
		margin-bottom: 30px;
	}

	.our-faqs-img figure{
		border-radius: 30px;
	}

	.our-faqs-img figure img{
		aspect-ratio: 1 / 0.69;
		border-radius: 30px;
	}

	.faqs-img-cta-box{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.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{
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding: 15px 30px;
	}

	.service-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.sidebar-cta-logo{
		margin-bottom: 20px;
	}

	.sidebar-cta-content{
		margin-bottom: 20px;
	}

	.sidebar-cta-content h3{
		font-size: 34px;
	}

	.service-featured-image{
		margin-bottom: 20px;
	}

	.service-featured-image figure{
		border-radius: 30px;
	}

	.service-featured-image img{
		aspect-ratio: 1 / 0.6;
		border-radius: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 40px;
	}

	.service-entry-box{
		gap: 40px 30px;
		margin: 20px 0;
	}

	.service-entry-item::before{
		transform: translateY(20px);
	}

	.service-entry-item .icon-box{
		margin-bottom: 20px;
	}

	.service-entry-item .icon-box img{
		max-width: 40px;
	}

	.service-entry-item-content h3{
		margin-bottom: 15px;
	}

	.service-entry-img figure,
	.service-entry-img img{
		aspect-ratio: 1 / 0.89;
		border-radius: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-blog .post-featured-image img{
		aspect-ratio: 1 / 0.81;
	}

	.page-blog .post-item .post-item-content{
		margin-bottom: 15px;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-projects{
		padding: 50px 0 20px;
	}

	.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: 40px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.tag-links{
		font-size: 22px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.project-detail-box{
		margin-bottom: 30px;
	}

	.project-detail-title{
		padding: 15px 30px;
	}

	.project-detail-list{
		padding: 30px;
	}

	.project-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.project-single-image{
		margin-bottom: 20px;
	}

	.project-single-image figure{
		border-radius: 30px;
	}

	.project-single-image img{
        aspect-ratio: 1 / 0.6;
		border-radius: 30px;
    }

	.project-entry{
		margin-bottom: 30px;
	}

	.project-info,
	.project-goal{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 40px;
	}

	.project-entry ul{
		gap: 10px;
	}

	.project-entry ul li{
		width: calc(50% - 5px);
		padding-left: 30px;
		font-size: 14px;
	}

	.project-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.project-query-item{
		margin-bottom: 30px;
	}

	.project-query-box ul{
		margin-bottom: 0;
	}

	.project-query-box ul li{
		width: 100%;
	}

	.project-query-img figure,
	.project-query-img img{
		border-radius: 30px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-member-box{
		padding: 20px;
		margin-bottom: 30px;
	}

	.team-member-image{
		margin-bottom: 20px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.85;
		object-position: top center;
	}

	.team-detail-title{
		padding: 15px 20px;
	}

	.team-detail-list{
		padding: 20px;
	}

	.team-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-member-info,
	.team-member-skills-feature{
		margin-bottom: 30px;
	}

	.team-member-content h2{
		font-size: 34px;
	}

	.skills-progress-bar{
		margin-bottom: 15px;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.team-member-content ul li{
		padding-left: 30px;
	}

	.team-member-content ul li::before{
		width: 20px;
		height: 20px;
	}

	.page-pricing{
		padding: 50px 0;
	}

	.page-testimonial{
		padding: 50px 0 20px;
	}

	.client-testimonial-item{
		padding: 30px;
	}

	.client-testimonial-item-content{
		margin-bottom: 30px;
	}

	.client-testimonial-rating{
		margin-bottom: 10px;
	}

	.client-author-image{
		margin-right: 10px;
	}

	.client-author-image img{
		width: 50px;
		height: 50px;
		border-radius: 10px;
	}

	.client-author-content{
		width: calc(100% - 60px);
	}

	.client-author-content h3{
		font-size: 18px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}
	
	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.faq-catagery-list{
		margin-bottom: 30px;
	}
	
	.faq-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.faq-catagery-list ul li a::after{
		width: 22px;
		height: 22px;
	}
	
	.our-faq-section.page-faq-accordion{
		margin-bottom: 30px;
	}	

	.page-contact-us{
		padding: 50px 0;
		background-size: 50% auto;
	}

	.contact-information{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-info-item{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
	}

	.contact-info-item .icon-box img{
		max-width: 24px;
	}

	.contact-info-content{
		width: calc(100% - 70px);
	}

	.contact-us-form{
		border-radius: 30px;
		padding: 30px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.hero.hero-video{
		min-height: 420px;
		padding-top: 60px;
	}

	.topbar{
        padding: 10px 0;
    }

	.topbar-contact-info ul{
        margin-right: 0px;
        padding-right: 0px;
		border: none;
    }

	.topbar-contact-info ul li .icon-box{
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

	.topbar-contact-info li .icon-box img{
        max-width: 16px;
    }

	.topbar-contact-info ul li p{
        font-size: 14px;
        width: calc(100% - 40px);
	}

	.topbar-qoute-btn{
		display: none;
	}

	.section-row{
        margin-bottom: 30px;
    }

	.section-title h1{
        font-size: 34px;
    }

	.section-title h2{
        font-size: 28px;
    }

	.excellence-innovating-list ul{
		gap: 15px;
	}

	.excellence-innovating-list ul li{
		width: 100%;
	}

	.about-image{
		max-width: 100%;
		padding-top: 90px;
	}

	.about-img-1{
		max-width: 200px;
	}

	.about-img-2 figure,
	.about-img-1 figure{
		border-radius: 30px;
	}

	.about-img-2 img,
	.about-img-1 figure img{
		border-radius: 30px;
	}

	.about-img-2{
		max-width: 250px;
	}
	
	.company-experience{
		display: block;
		top: 15px;
	}

	.company-experience-counter{
		width: 100%;
	}

	.company-experience-counter h2{
        font-size: 30px;
    }

	.company-experience-content{
		width: 100%;
	}

	.company-experience-content p{
        font-size: 14px;
    }

	.about-list-btn{
		margin-bottom: 30px;
	}

	.genuine-rating-counter{
		border-radius: 30px;
        padding: 30px;
    }

	/* Why Choose Us – mobile */
	.why-choose-us {
		padding: 60px 0;
	}

	.wcus-visual {
		padding: 12px;
		margin-bottom: 30px;
	}

	.wcus-img-wrapper figure img {
		height: 280px;
	}

	.wcus-float-badge {
		display: none;
	}

	.wcus-deco-ring {
		display: none;
	}

	.wcus-corner {
		width: 32px;
		height: 32px;
	}

	.wcus-content {
		padding-left: 0;
	}

	.wcus-item {
		padding-left: 12px;
		gap: 14px;
	}

	.wcus-item-icon {
		width: 46px;
		height: 46px;
		border-radius: 12px;
	}

	.wcus-item-icon i {
		font-size: 18px;
	}

	.wcus-item-body h4 {
		font-size: 15px;
	}

	.genuine-rating-counter .about-counter h2{
		font-size: 40px;
	}

	.services-list-box{
		border-radius: 30px;
        padding: 20px 15px;
		gap: 30px 10px;
    }

	.services-list-box .service-item{
        width: 100%;
    }

	.services-list-box .service-item:after{
		display: none;
	}

	.service-body,
	.service-item .icon-box{
        margin-bottom: 15px;
    }

	.service-body{
		margin-bottom: 20px;
	}

	.service-body h3{
        font-size: 18px;
    }

	.service-item .service-footer a{
		width: 60px;
		height: 30px;
	}

	/* Product Categories – mobile */
	.prodcat-section {
		padding: 60px 0;
	}

	.prodcat-card-tall {
		min-height: 260px;
	}

	.prodcat-card {
		min-height: 220px;
	}

	.prodcat-info h3 {
		font-size: 16px;
	}

	.prodcat-header-desc p {
		font-size: 14px;
	}

	/* Industrial Segments – mobile */
	.why-us-section {
		padding: 50px 0;
	}

	.why-us-grid {
		grid-template-columns: 1fr;
	}

	.why-us-info-block {
		grid-column: span 1;
		padding: 20px 10px;
	}

	.why-us-title-row {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 15px;
	}

	.why-us-title {
		font-size: 30px;
	}

	.why-us-card {
		grid-column: span 1 !important;
		min-height: 240px;
		padding: 24px 20px;
	}

	.why-us-card.cta-card {
		padding: 24px 20px;
		border-bottom-right-radius: 60px;
	}

	.why-us-card.cta-card .cta-phone {
		font-size: 26px;
	}

	.our-story-img figure,
	.our-story-img img,
	.our-story-header-img figure,
	.our-story-header-img figure img{
		border-radius: 20px;
	}

	.our-story-content-body{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.our-story-counters{
		gap: 15px;
		margin-bottom: 30px;
	}

	.our-story-counter{
		width: calc(33.33% - 10px);
	}

	.our-story-counter h3{
        font-size: 30px;
    }

	.our-story-counter p{
		font-size: 16px;
	}

	.our-story-client-img{
		margin-right: 30px;
	}

	.video-play-button a{
		height: 56px;
		width: 56px;
		margin-right: 10px;
	}

	.what-we-do-item{
		border-radius: 30px;
		width: 100%;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
		background: transparent;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(even){
		background: var(--dark-divider-color);
	}

	.what-we-item-content h3{
		font-size: 18px;
	}

	.project-tag a{
		padding: 8px 10px;
	}

	.project-content h3{
		font-size: 18px;
	}

	.process-step-no{
		margin-right: 10px;
	}

	.process-step-no h2{
        font-size: 30px;
    }

	.process-step-content h3{
		font-size: 18px;
	}

	.pricing-box{
        padding: 30px 20px;
    }

	.pricing-title{
        margin-bottom: 30px;
    }

	.pricing-title h2{
        font-size: 30px;
    }

	.pricing-title h2 sup{
        font-size: 18px;
    }

	.pricing-title h3{
		font-size: 18px;
	}

	.pricing-list{
        margin-bottom: 30px;
    }

	.pricing-list ul li{
		padding-left: 30px;
	}

	.pricing-list ul li::before{
		width: 20px;
		height: 20px;
	}

	.pricing-benefit-list ul{
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
		font-size: 16px;
	}

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
		position: initial;
		justify-content: left;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next{
		margin-left: 15px;
	}

	.linear-client-partners{
		margin-top: 40px;
		padding: 36px 0 32px;
		border-radius: 20px;
	}

	.linear-client-partners-header h4{
		font-size: 18px;
	}

	.linear-client-logo-card{
		width: 170px;
		height: 80px;
		padding: 14px 18px;
	}

	.linear-client-logo-card img{
		max-height: 44px;
	}

	.testimonial-company-slider{
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 17px;
        margin-bottom: 15px;
    }

	.footer-copyright-inline{
		margin-top: 16px;
		padding-top: 10px;
	}

	.page-header-box h1{
        font-size: 26px;
    }

	.page-header-box ol{
		padding: 6px 14px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 13px;
	}

	.mission-vision-nav ul li .nav-link{
		display: grid;
		justify-content: center;
        font-size: 16px;
        padding: 10px;
    }

	.mission-vision-nav ul li .nav-link img{
        max-width: 25px;
        margin: 0 auto;
		margin-bottom: 5px;
    }

	.mission-vision-item{
        padding: 20px 15px;
    }

	.mission-vision-content-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.mission-vision-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.mission-vision-image img{
        aspect-ratio: 1 / 0.73;
    }

	.our-history-nav ul li .nav-link{
        padding: 10px;
		font-size: 18px;
    }

	.our-history-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.our-history-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.our-history-image img{
        aspect-ratio: 1 / 0.76;
    }

	.our-features-item{
       width: 100%;
    }

	.our-features-item:nth-child(1n + 1){
		border-right: none;
	}

	.our-features-item.features-image-box img{
		aspect-ratio: 1 / 0.81;
	}

	.team-content h3{
		font-size: 18px;
	}

	.our-faqs-img figure img{
        aspect-ratio: 1 / 0.89;
    }

	.faqs-img-cta-box ul li{
		margin-right: 0px;
		margin-bottom: 5px;
	}

	.faqs-img-cta-box ul li:last-child{
		margin-bottom: 0;
	}

	.faqs-img-cta-box ul li a img{
		max-width: 24px;
		margin-right: 10px;
	}

	.faqs-img-cta-box ul li a{
		font-size: 18px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 35px 12px 12px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 12px;
		font-size: 14px;
	}

	.our-faq-section .accordion-item .accordion-body{
		background: var(--accent-color);
		padding: 12px;
	}

	.page-services .service-item{
		border-radius: 30px;
		padding: 20px 15px;
	}

	.service-catagery-list h3{
		font-size: 18px;
		padding: 15px 20px;
	}

	.service-catagery-list ul{
		padding: 20px;
	}

	.service-catagery-list ul li a::before{
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-box{
        padding: 20px;
    }

	.sidebar-cta-content h3{
        font-size: 28px;
    }

	.cta-contact-item-title h3{
		font-size: 18px;
	}

	.service-featured-image img{
        aspect-ratio: 1 / 0.85;
    }

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry-item{
		width: 100%;
	}

	.service-entry-item:nth-last-child(-n + 2)::before{
		display: block;
	}

	.service-entry-item:last-child::before{
		display: none;
	}

	.service-entry-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service-entry ul{
		gap: 10px;
		margin-bottom: 30px;
	}

	.service-entry ul li{
		width: 100%;
		padding-left: 30px;
	}

	.service-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.service-entry-img{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
		border-radius: 30px;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
        padding: 65px 15px 15px 15px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-detail-title{
        padding: 15px 20px;
    }

	.project-detail-title h3{
		font-size: 18px;
	}

	.project-detail-list{
        padding: 20px;
    }

	.project-detail-content h3{
		margin-bottom: 0;
	}

	.project-single-image img{
        aspect-ratio: 1 / 0.85;
    }

	.project-entry h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul{
        margin-bottom: 15px;
    }

	.project-entry ul li{
		width: 100%;
    }

	.project-query-content,
	.project-query-img{
		width: 100%;
	}

	.project-query-item{
		gap: 20px;
	}

	.project-query-box ul{
        margin-bottom: 0;
    }

	.team-member-image img{
        aspect-ratio: 1 / 0.99;
    }

	.team-member-name{
		margin-bottom: 15px;
	}

	.team-member-name h3{
		font-size: 18px;
	}

	.team-detail-title h3{
		font-size: 18px;
	}

	.team-member-info,
	.team-member-skills-feature{
        margin-bottom: 20px;
    }

	.team-member-content h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

	.team-member-content p{
		margin-bottom: 15px;
	}

	.team-member-skills-feature{
		gap: 20px;
	}

	.team-member-skills,
	.team-member-feature{
		width: 100%;
	}

	.client-testimonial-item{
		border-radius: 30px;
		padding: 20px;
	}

	.client-testimonial-item-content{
        margin-bottom: 20px;
    }

	.faq-catagery-list{
		padding: 20px;
	}

	.contact-info-item{
        margin-bottom: 20px;
    }

	.contact-info-item .icon-box{
		margin-right: 10px;
    }

	.contact-info-content{
        width: calc(100% - 60px);
    }

	.contact-info-content h3{
		font-size: 18px;
	}

	.contact-us-form{
        padding: 20px;
    }

	.contact-form .form-control{
		padding: 12px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }
}

/************************************/
/***   Linear About Home Section    ***/
/************************************/

.linear-about{
	position: relative;
	overflow: hidden;
}

.linear-about-visual{
	position: relative;
	padding: 30px 20px 30px 0;
}

.linear-about-visual-inner{
	position: relative;
	min-height: 520px;
}

.linear-about-img figure{
	display: block;
	border-radius: 24px;
	overflow: hidden;
	margin: 0;
	box-shadow: 0 20px 60px rgba(24, 71, 108, 0.15);
}

.linear-about-img figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.linear-about-img-main{
	position: absolute;
	top: 0;
	left: 0;
	width: 58%;
	max-width: 320px;
	z-index: 2;
}

.linear-about-img-main figure{
	aspect-ratio: 1 / 1.15;
}

.linear-about-img-secondary{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 62%;
	max-width: 340px;
	z-index: 3;
}

.linear-about-img-secondary figure{
	border: 8px solid var(--white-color);
	aspect-ratio: 1 / 1.1;
}

.linear-about-badge{
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 15px 40px rgba(24, 71, 108, 0.35);
	animation: linearAboutPulse 3s ease-in-out infinite;
}

@keyframes linearAboutPulse{
	0%, 100%{ box-shadow: 0 15px 40px rgba(24, 71, 108, 0.35); }
	50%{ box-shadow: 0 20px 50px rgba(24, 71, 108, 0.5); }
}

.linear-about-badge-number{
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
}

.linear-about-badge-number sup{
	font-size: 16px;
	top: -0.8em;
}

.linear-about-badge-text{
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 4px;
}

.linear-about-partners{
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 5;
	background: var(--white-color);
	border-radius: 16px;
	padding: 16px 22px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--accent-color);
}

.linear-about-partners-label{
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-color);
	margin-bottom: 6px;
}

.linear-about-partners-logos{
	display: flex;
	align-items: center;
	gap: 14px;
}

.linear-about-partners-logos span{
	font-size: 18px;
	font-weight: 800;
	color: var(--accent-color);
}

.linear-about-partners-divider{
	width: 1px;
	height: 22px;
	background: var(--divider-color);
}

.linear-about-shape{
	position: absolute;
	top: 10%;
	right: -30px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(24, 71, 108, 0.08) 0%, rgba(24, 71, 108, 0.02) 100%);
	z-index: 1;
}

.linear-about-content .section-title{
	margin-bottom: 24px;
}

.linear-about-lead{
	font-size: 17px;
	line-height: 1.8em;
	color: var(--text-color);
	margin-bottom: 28px;
}

.linear-about-strengths{
	margin-bottom: 28px;
}

.linear-about-strengths-inner{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.linear-about-strength-item{
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: linear-gradient(135deg, var(--white-color) 0%, var(--secondary-color) 100%);
	border-radius: 16px;
	border: 1px solid rgba(24, 71, 108, 0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.linear-about-strength-item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent-color);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s ease;
}

.linear-about-strength-item:hover{
	box-shadow: 0 14px 40px rgba(24, 71, 108, 0.12);
	transform: translateY(-4px);
}

.linear-about-strength-item:hover::before{
	transform: scaleY(1);
}

.linear-about-strength-icon{
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--accent-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: transform 0.4s ease;
}

.linear-about-strength-item:hover .linear-about-strength-icon{
	transform: rotate(8deg) scale(1.05);
}

.linear-about-strength-info h4{
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 4px;
	line-height: 1.3;
}

.linear-about-strength-info p{
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text-color);
	margin: 0;
}

.linear-about-capabilities{
	background: var(--accent-color);
	border-radius: 20px;
	padding: 24px 28px;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
}

.linear-about-capabilities::before{
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
}

.linear-about-capabilities::after{
	content: '';
	position: absolute;
	bottom: -30px;
	left: 30%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.linear-about-capabilities-header{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.linear-about-capabilities-label{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
}

.linear-about-capabilities-line{
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
}

.linear-about-capabilities-tags{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.linear-about-tag{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--white-color);
	backdrop-filter: blur(4px);
	transition: all 0.35s ease;
	animation: linearTagFade 0.6s ease backwards;
}

.linear-about-tag:nth-child(1){ animation-delay: 0.1s; }
.linear-about-tag:nth-child(2){ animation-delay: 0.2s; }
.linear-about-tag:nth-child(3){ animation-delay: 0.3s; }
.linear-about-tag:nth-child(4){ animation-delay: 0.4s; }
.linear-about-tag:nth-child(5){ animation-delay: 0.5s; }

@keyframes linearTagFade{
	from{ opacity: 0; transform: translateY(12px); }
	to{ opacity: 1; transform: translateY(0); }
}

.linear-about-tag i{
	font-size: 12px;
	opacity: 0.85;
}

.linear-about-tag:hover{
	background: var(--white-color);
	color: var(--accent-color);
	border-color: var(--white-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.linear-about-closing{
	font-size: 15px;
	line-height: 1.75em;
	color: var(--text-color);
	margin-bottom: 16px;
}

.linear-about-closing:last-of-type{
	margin-bottom: 28px;
}

@media only screen and (max-width: 991px){
	.linear-about-visual{
		padding: 0 0 40px;
		margin-bottom: 20px;
	}

	.linear-about-visual-inner{
		min-height: 460px;
		max-width: 500px;
		margin: 0 auto;
	}

	.linear-about-img-main{
		width: 55%;
	}

	.linear-about-img-secondary{
		width: 58%;
	}

	.linear-about-badge{
		width: 110px;
		height: 110px;
	}

	.linear-about-badge-number{
		font-size: 34px;
	}
}

@media only screen and (max-width: 767px){
	.linear-about-visual-inner{
		min-height: 380px;
	}

	.linear-about-img-main{
		width: 52%;
		max-width: 200px;
	}

	.linear-about-img-secondary{
		width: 55%;
		max-width: 220px;
	}

	.linear-about-badge{
		width: 95px;
		height: 95px;
	}

	.linear-about-badge-number{
		font-size: 28px;
	}

	.linear-about-badge-text{
		font-size: 10px;
	}

	.linear-about-partners{
		padding: 12px 16px;
	}

	.linear-about-partners-logos span{
		font-size: 15px;
	}

	.linear-about-strengths-inner{
		grid-template-columns: 1fr;
	}

	.linear-about-capabilities{
		padding: 20px 22px;
	}

	.linear-about-tag{
		font-size: 12px;
		padding: 8px 14px;
	}
}

/* --------------------------------------------------------
   31. Technical Services Section
   -------------------------------------------------------- */
.tech-services-section {
    position: relative;
    background: linear-gradient(135deg, #f4f8fc 0%, #eef4ff 100%);
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

/* Background glows */
.tech-services-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 71, 108, 0.03) 0%, rgba(24, 71, 108, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.tech-services-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, rgba(6, 182, 212, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Light Glassmorphic Cards */
.tech-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(24, 71, 108, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 340px;
    box-shadow: 0 10px 30px rgba(24, 71, 108, 0.03);
}

.tech-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #06b6d4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-service-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: rgba(24, 71, 108, 0.25);
    box-shadow: 0 20px 40px rgba(24, 71, 108, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tech-service-card:hover::before {
    opacity: 1;
}

/* Top part of card */
.tech-service-top {
    position: relative;
}

/* Floating index number */
.tech-service-number {
    position: absolute;
    top: -15px;
    right: 0;
    font-size: 72px;
    font-weight: 800;
    color: rgba(24, 71, 108, 0.04);
    line-height: 1;
    font-family: var(--default-font);
    user-select: none;
    transition: all 0.5s ease;
}

.tech-service-card:hover .tech-service-number {
    color: rgba(24, 71, 108, 0.1);
    transform: translateY(-5px);
}

/* Icon Box styling */
.tech-service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(24, 71, 108, 0.04);
    border: 1px solid rgba(24, 71, 108, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: all 0.5s ease;
    color: var(--accent-color);
}

.tech-service-card:hover .tech-service-icon-box {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: scale(1.05);
}

/* SVG Animations */
.tech-service-icon-box svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.5s ease;
}

/* Application Support Gear spin */
@keyframes gear-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.tech-service-card:hover .svg-gear {
    animation: gear-spin 8s linear infinite;
    transform-origin: 18px 18px;
}
/* Wrench swing */
@keyframes wrench-swing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}
.tech-service-card:hover .svg-wrench {
    animation: wrench-swing 2s ease-in-out infinite;
    transform-origin: 24px 24px;
}

/* Product Selection Magnifying lens bounce/pulse */
@keyframes lens-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-2px, -2px); }
}
.tech-service-card:hover .svg-lens {
    animation: lens-pulse 2s ease-in-out infinite;
}

/* Checkmark draws */
@keyframes check-draw {
    0% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}
.tech-service-card:hover .svg-check {
    stroke-dasharray: 20;
    animation: check-draw 0.8s ease-out forwards;
}

/* Maintenance Queries Chat/Pulse */
@keyframes bubble-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.tech-service-card:hover .svg-bubble {
    animation: bubble-pulse 2s ease-in-out infinite;
}

/* Ball Screw Servicing */
@keyframes ball-circulate {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}
.tech-service-card:hover .svg-ballpath {
    stroke-dasharray: 6 4;
    animation: ball-circulate 1.5s linear infinite;
}
@keyframes screw-turn {
    0% { transform: translateY(0); }
    50% { transform: translateY(2px); }
    100% { transform: translateY(0); }
}
.tech-service-card:hover .svg-screw-shaft {
    animation: screw-turn 2s ease-in-out infinite;
}

/* Titles and description text */
.tech-service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.tech-service-card:hover .tech-service-title {
    color: var(--accent-color);
}

.tech-service-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* Title colors/styles matching theme */
.tech-services-section .section-title h3 {
    color: var(--accent-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-services-section .section-title h2 {
    color: var(--primary-color) !important;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tech-services-section .section-title h2 span {
    color: var(--accent-color) !important;
}

.tech-services-desc-top {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
    max-width: 600px;
}

/* Responsive CSS */
@media (max-width: 1199px) {
    .tech-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tech-services-grid {
        grid-template-columns: 1fr;
    }
    .tech-services-section {
        padding: 80px 0;
    }
    .tech-services-section .section-title h2 {
        font-size: 34px;
    }
}

/* ===================================================
   KEY STRENGTHS SECTION
   =================================================== */
.key-strengths-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(150deg, #19204e 0%, #18476c 55%, #19204e 100%);
    overflow: hidden;
    z-index: 1;
}

/* Decorative Background */
.ks-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ks-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ks-ring-1 {
    width: 620px;
    height: 620px;
    top: -200px;
    right: -160px;
    animation: ks-ring-spin 28s linear infinite;
}

.ks-ring-2 {
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: -120px;
    border-color: rgba(255, 255, 255, 0.035);
    animation: ks-ring-spin 38s linear infinite reverse;
}

.ks-ring-3 {
    width: 950px;
    height: 950px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.025);
    animation: ks-ring-pulse 9s ease-in-out infinite;
}

@keyframes ks-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes ks-ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
    50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
}

.ks-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
}

.ks-bg-shine {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(24, 71, 108, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Section Title */
.ks-section-title h3 {
    color: rgba(255, 255, 255, 0.55) !important;
    letter-spacing: 3px;
}

.ks-section-title h2 {
    color: #ffffff !important;
}

.ks-section-title h2 span {
    color: #5baede !important;
}

.ks-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.85;
    margin-top: 22px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Row */
.ks-cards-row {
    margin-top: 62px;
    position: relative;
    z-index: 2;
}

/* Card Base */
.ks-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    padding: 52px 36px 46px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

/* Top-edge shimmer line */
.ks-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

/* Bottom-right ambient glow */
.ks-card::after {
    content: '';
    position: absolute;
    bottom: -70px; right: -70px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 71, 108, 0.25) 0%, transparent 70%);
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.ks-card:hover {
    transform: translateY(-18px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.ks-card:hover::before { opacity: 1; }
.ks-card:hover::after  { transform: scale(1.5); opacity: 0.8; }

/* Featured Card */
.ks-card-featured {
    background: rgba(24, 71, 108, 0.35);
    border-color: rgba(91, 174, 222, 0.28);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(91, 174, 222, 0.12);
}

.ks-card-featured::before {
    background: linear-gradient(90deg, transparent, rgba(91, 174, 222, 0.6), transparent);
    opacity: 1;
}

.ks-card-featured:hover {
    background: rgba(24, 71, 108, 0.5);
    border-color: rgba(91, 174, 222, 0.45);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), 0 0 30px rgba(24, 71, 108, 0.25);
}

/* Ghost Number */
.ks-card-deco-num {
    position: absolute;
    top: -6px; right: 16px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: var(--default-font);
    user-select: none;
    pointer-events: none;
    transition: color 0.5s ease, transform 0.5s ease;
}

.ks-card:hover .ks-card-deco-num {
    color: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px) scale(1.04);
}

/* Icon Wrap */
.ks-card-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.ks-card-icon-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 96px; height: 96px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: ks-icon-ring-orbit 12s linear infinite;
}

@keyframes ks-icon-ring-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg);   border-color: rgba(255, 255, 255, 0.1);  }
    50%  {                                                   border-color: rgba(91, 174, 222, 0.45); }
    to   { transform: translate(-50%, -50%) rotate(360deg); border-color: rgba(255, 255, 255, 0.1);  }
}

.ks-card-icon {
    position: relative;
    width: 76px; height: 76px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ks-card-icon i {
    font-size: 30px;
    color: #ffffff;
    transition: all 0.5s ease;
}

.ks-card:hover .ks-card-icon {
    background: var(--accent-color);
    border-color: #5baede;
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 12px 32px rgba(24, 71, 108, 0.5);
}

.ks-card:hover .ks-card-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Featured icon pre-filled */
.ks-card-featured .ks-card-icon {
    background: var(--accent-color);
    border-color: rgba(91, 174, 222, 0.45);
    box-shadow: 0 8px 24px rgba(24, 71, 108, 0.4);
}

/* Card Title */
.ks-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.ks-card:hover .ks-card-title { color: #5baede; }

/* Responsive */
@media (max-width: 1199px) {
    .ks-card { padding: 44px 28px 38px; }
    .ks-card-deco-num { font-size: 78px; }
}

@media (max-width: 991px) {
    .key-strengths-section { padding: 90px 0; }
    .ks-cards-row { margin-top: 48px; }
}

@media (max-width: 767px) {
    .key-strengths-section { padding: 72px 0; }
    .ks-cards-row { margin-top: 36px; }
    .ks-card { padding: 38px 24px 32px; }
    .ks-card-title { font-size: 18px; }
    .ks-subtitle { font-size: 15px; }
    .ks-ring-1, .ks-ring-2, .ks-ring-3 { display: none; }
}

/* ===================================================
   WHATSAPP STICKY BUTTON
   =================================================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0);
}

.whatsapp-sticky.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: wa-entrance 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes wa-entrance {
    from { transform: scale(0) rotate(-180deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}

.whatsapp-sticky:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #20ba59;
}

/* Icon */
.whatsapp-sticky-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Ripple pulse rings */
.whatsapp-sticky-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-ripple 2.5s ease-out infinite;
    pointer-events: none;
}

.whatsapp-sticky-ripple-2 {
    animation-delay: 1.2s;
}

@keyframes wa-ripple {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0;   }
}

/* Tooltip */
.whatsapp-sticky-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1a1a1a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    letter-spacing: 0.3px;
}

.whatsapp-sticky-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
}

.whatsapp-sticky:hover .whatsapp-sticky-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive */
@media (max-width: 767px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .whatsapp-sticky-icon {
        width: 26px;
        height: 26px;
    }

    .whatsapp-sticky-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-sticky {
        width: 46px;
        height: 46px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-sticky-icon {
        width: 24px;
        height: 24px;
    }
}

/* ===================================================
   GOOGLE MAP SECTION
   =================================================== */
.gmap-section {
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: block;
}

.gmap-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 991px) {
    .gmap-section { height: 380px; }
}

@media (max-width: 767px) {
    .gmap-section { height: 300px; }
}

@media (max-width: 480px) {
    .gmap-section { height: 240px; }
}


/* ===================================================
   SERVICES PAGE
   =================================================== */

/* ── Overview Section ── */
.svc-overview {
    position: relative;
    padding: 110px 0 90px;
    background: linear-gradient(150deg, #19204e 0%, #18476c 55%, #19204e 100%);
    overflow: hidden;
    z-index: 1;
}

.svc-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.svc-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
}

.svc-bg-shine {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(24, 71, 108, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.svc-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-ring-1 {
    width: 620px;
    height: 620px;
    top: -200px;
    right: -160px;
    animation: ks-ring-spin 28s linear infinite;
}

.svc-ring-2 {
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: -120px;
    border-color: rgba(255, 255, 255, 0.035);
    animation: ks-ring-spin 38s linear infinite reverse;
}

.svc-ring-3 {
    width: 950px;
    height: 950px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.025);
    animation: ks-ring-pulse 9s ease-in-out infinite;
}

.svc-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.85;
    margin-top: 22px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.svc-cards-row {
    margin-top: 62px;
    position: relative;
    z-index: 2;
}

/* ── Overview Cards ── */
.svc-card {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 52px 36px 46px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 71, 108, 0.25) 0%, transparent 70%);
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.svc-card:hover {
    transform: translateY(-18px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { transform: scale(1.5); opacity: 0.8; }

.svc-card-deco-num {
    position: absolute;
    top: -6px;
    right: 16px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.5s ease, transform 0.5s ease;
}

.svc-card:hover .svc-card-deco-num {
    color: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px) scale(1.04);
}

.svc-card-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.svc-card-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: ks-icon-ring-orbit 12s linear infinite;
}

.svc-card-icon {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.svc-card-icon i {
    font-size: 30px;
    color: #ffffff;
    transition: all 0.5s ease;
}

.svc-card:hover .svc-card-icon {
    background: var(--accent-color);
    border-color: #5baede;
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 12px 32px rgba(24, 71, 108, 0.5);
}

.svc-card:hover .svc-card-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.svc-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-card-title { color: #5baede; }

.svc-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.svc-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5baede;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.svc-explore-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.svc-explore-link:hover {
    color: #ffffff;
    gap: 14px;
}

.svc-explore-link:hover i {
    transform: translateX(4px);
}

/* ── Detail Sections ── */
.svc-detail {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.svc-detail-alt {
    background: #f4f8fc;
}

.svc-detail-content {
    position: relative;
    padding-right: 30px;
}

.svc-detail-alt .svc-detail-content {
    padding-right: 0;
    padding-left: 30px;
}

.svc-decor-bg-num {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(24, 71, 108, 0.05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.svc-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(24, 71, 108, 0.35);
}

.svc-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #19204e, var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(24, 71, 108, 0.3);
}

.svc-detail-icon i {
    font-size: 26px;
    color: #ffffff;
}

.svc-detail-content .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.svc-detail-desc {
    color: var(--text-color);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.svc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    position: relative;
    z-index: 1;
}

.svc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(24, 71, 108, 0.07);
    line-height: 1.5;
}

.svc-feature-list li:last-child {
    border-bottom: none;
}

.svc-feature-list li i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Image Side ── */
.svc-detail-img-wrap {
    position: relative;
    padding: 16px;
}

.svc-detail-figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 1;
}

.svc-detail-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-detail-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--accent-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px 0 0 0;
    z-index: 2;
    transition: width 0.4s ease, height 0.4s ease;
}

.svc-detail-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid var(--accent-color);
    border-right: 4px solid var(--accent-color);
    border-radius: 0 0 6px 0;
    z-index: 2;
    transition: width 0.4s ease, height 0.4s ease;
}

.svc-detail-img-wrap:hover::before,
.svc-detail-img-wrap:hover::after {
    width: 90px;
    height: 90px;
}

/* ── Stats Strip ── */
.svc-stats-strip {
    padding: 80px 0;
    background: #18476c;
    position: relative;
    overflow: hidden;
}

.svc-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.svc-stat-item {
    text-align: center;
    padding: 24px 20px;
    position: relative;
}

.svc-stat-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.svc-stat-item h3 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.svc-stat-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ── CTA Section ── */
.svc-cta-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.svc-cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 71, 108, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 71, 108, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.svc-cta-eyebrow {
    display: inline-block;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(24, 71, 108, 0.2);
    border-radius: 50px;
    background: rgba(24, 71, 108, 0.05);
}

.svc-cta-heading {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.svc-cta-heading span {
    color: var(--accent-color);
}

.svc-cta-sub {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 44px;
}

.svc-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .svc-card { padding: 44px 28px 38px; }
    .svc-card-deco-num { font-size: 78px; }
    .svc-detail-content { padding-right: 10px; }
    .svc-detail-alt .svc-detail-content { padding-left: 10px; }
    .svc-cta-heading { font-size: 36px; }
}

@media (max-width: 991px) {
    .svc-overview { padding: 80px 0 60px; }
    .svc-cards-row { margin-top: 40px; }
    .svc-detail,
    .svc-detail-alt { padding: 80px 0; }
    .svc-detail-content { padding-right: 0; }
    .svc-detail-alt .svc-detail-content { padding-left: 0; }
    .svc-detail-img-wrap { margin-top: 40px; }
    .svc-detail-alt .svc-detail-img-wrap { margin-top: 0; margin-bottom: 40px; }
    .svc-stat-item h3 { font-size: 38px; }
    .svc-cta-heading { font-size: 30px; }
    .svc-cta-section { padding: 80px 0; }
    .svc-ring-1,
    .svc-ring-2,
    .svc-ring-3 { display: none; }
}

@media (max-width: 767px) {
    .svc-overview { padding: 70px 0 50px; }
    .svc-card { padding: 38px 24px 32px; }
    .svc-card-title { font-size: 18px; }
    .svc-subtitle { font-size: 15px; }
    .svc-detail,
    .svc-detail-alt { padding: 60px 0; }
    .svc-decor-bg-num { font-size: 110px; }
    .svc-stat-item h3 { font-size: 34px; }
    .svc-stat-divider::before { display: none; }
    .svc-stats-strip { padding: 60px 0; }
    .svc-cta-heading { font-size: 26px; }
    .svc-cta-section { padding: 70px 0; }
    .svc-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .svc-card { padding: 32px 20px 28px; }
    .svc-stat-item h3 { font-size: 30px; }
    .svc-cta-heading { font-size: 22px; }
    .svc-detail-img-wrap::before,
    .svc-detail-img-wrap::after { width: 40px; height: 40px; }
}
