/* ----------------------------------------------------------------------------------------
* Author        : Moses Codes
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	/* RECODA Color Theme - Deep Blue & Black: Modern & Sophisticated */
	/* Base Colors */
	--primary-color			: #0D47A1;		/* Deep Blue - Primary brand color */
	--black-primary			: #000000;		/* Pure Black - Headers, strong emphasis */
	--black-soft			: #1A1A1A;		/* Soft Black - Navigation, dark sections */
	--black-muted			: #2C2C2C;		/* Muted Black - Secondary dark elements */
	--footer-bg			: #0D47A1;		/* Deep Blue - Footer background (Matches primary color theme) */
	
	/* Header & Navigation */
	--header-bg			: #FFFFFF;		/* White - Header background (Logo stands out!) */
	--nav-text			: #000000;		/* Black - Navigation text */
	--nav-hover			: #0D47A1;		/* Deep Blue - Navigation hover */
	--nav-active-color		: var(--nav-hover);	/* Active nav + mega menu accents */
	
	/* Accents & Highlights */
	--accent-color			: #0D47A1;		/* Deep Blue - CTAs, buttons, links */
	--accent-hover			: #0A3D91;		/* Darker Blue - Hover states */
	--accent-light			: #1565C0;		/* Medium Blue - Light accents */
	--accent-bright			: #1976D2;		/* Bright Blue - Highlights */
	--accent-cyan			: #00BCD4;		/* Cyan - Fresh accents, info */
	
	/* Backgrounds */
	--white-color			: #FFFFFF;		/* Pure White */
	--bg-primary			: #FFFFFF;		/* Main background */
	--bg-secondary			: #F5F5F5;		/* Light gray background */
	--bg-dark			: #000000;		/* Black background */
	--bg-dark-soft			: #1A1A1A;		/* Soft black background */
	
	/* Text Colors */
	--text-color			: #000000;		/* Black - Primary text */
	--text-dark			: #000000;		/* Black - Headers, emphasis */
	--text-muted			: #424242;		/* Dark Gray - Muted text */
	--text-light			: #757575;		/* Medium Gray - Light text */
	--text-on-dark			: #FFFFFF;		/* White - Text on dark backgrounds */
	
	/* Dividers & Borders */
	--divider-color			: #E0E0E0;		/* Light Gray - Light dividers */
	--divider-dark			: #424242;		/* Dark Gray - Dark dividers */
	--border-color			: #E0E0E0;		/* Light Gray - Borders */
	--border-dark			: #1A1A1A;		/* Dark - Dark borders */
	--dark-divider-color	: #FFFFFF1A;	/* White with opacity - Dark dividers */
	
	/* Status Colors */
	--success-color			: #4CAF50;		/* Green - Success messages */
	--warning-color			: #FF9800;		/* Orange - Warnings */
	--error-color			: #E53935;		/* Red - Errors */
	--info-color			: #00BCD4;		/* Cyan - Info messages */
	
	/* Blue Variations */
	--blue-light			: #64B5F6;		/* Light Blue - Soft accents */
	--blue-medium			: #2196F3;		/* Medium Blue - Secondary accents */
	--blue-dark			: #0D47A1;		/* Deep Blue - Primary */
	--blue-darker			: #0A3D91;		/* Darker Blue - Hover states */
	
	/* Gray Scale */
	--gray-50			: #FAFAFA;		/* Very Light Gray */
	--gray-100			: #F5F5F5;		/* Light Gray */
	--gray-200			: #EEEEEE;		/* Lighter Gray */
	--gray-300			: #E0E0E0;		/* Light Gray */
	--gray-400			: #BDBDBD;		/* Medium Gray */
	--gray-500			: #9E9E9E;		/* Medium Gray */
	--gray-600			: #757575;		/* Dark Gray */
	--gray-700			: #616161;		/* Darker Gray */
	--gray-800			: #424242;		/* Very Dark Gray */
	--gray-900			: #212121;		/* Almost Black */
	
	--default-font			: "Hanken Grotesk", sans-serif;
}

/* Color Theme Enhancements */
/* Button Enhancements */
.btn-default{
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
	background-color: var(--accent-color);
	color: var(--text-on-dark);
}

.btn-default:hover{
	background-color: var(--accent-hover);
	box-shadow: 0 4px 16px rgba(13, 71, 161, 0.4);
	transform: translateY(-2px);
}

.btn-default:active{
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(13, 71, 161, 0.3);
}

/* Success, Warning, Info Color Utilities */
.text-success{
	color: var(--success-color) !important;
}

.text-warning{
	color: var(--warning-color) !important;
}

.text-info{
	color: var(--info-color) !important;
}

.bg-success{
	background-color: var(--success-color) !important;
}

.bg-warning{
	background-color: var(--warning-color) !important;
}

.bg-info{
	background-color: var(--info-color) !important;
}

/* Gradient Backgrounds */
.bg-gradient-primary{
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-bright) 100%);
}

.bg-gradient-blue{
	background: linear-gradient(135deg, var(--blue-dark) 0%, var(--accent-color) 100%);
}

.bg-gradient-cool{
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--blue-light) 100%);
}

.bg-gradient-modern{
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 50%, var(--accent-bright) 100%);
}

.bg-gradient-dark-blue{
	background: linear-gradient(135deg, var(--black-primary) 0%, var(--primary-color) 100%);
}

.bg-gradient-blue-black{
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--black-soft) 100%);
}

/* Utility Classes for Consistent Colors */
.bg-light-section{
	background-color: var(--bg-secondary) !important;
}

.text-muted-custom{
	color: var(--text-muted) !important;
}

.text-secondary-custom{
	color: var(--text-light) !important;
}

.border-light-custom{
	border-color: var(--divider-color) !important;
}

/* Status Badge Colors */
.status-ongoing{
	color: var(--success-color) !important;
}

.status-completed{
	color: var(--info-color) !important;
}

.status-pending{
	color: var(--warning-color) !important;
}

/* Alert Success Styling - Using Theme Colors */
.alert-success-custom{
	background-color: rgba(76, 175, 80, 0.1) !important;
	border: 1px solid rgba(76, 175, 80, 0.3) !important;
	border-radius: 4px;
	color: var(--success-color) !important;
}

.alert-success-custom i{
	color: var(--success-color) !important;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--bg-primary);
	color: var(--text-color);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--black-primary);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	font-weight: 500;
}

a:hover{
	text-decoration: none;
	outline: 0;
	color: var(--accent-hover);
	text-shadow: 0 1px 2px rgba(13, 71, 161, 0.15);
}

a:focus{
	text-decoration: none;
	color: var(--accent-hover);
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
	border-radius: 2px;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-on-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: var(--white-color);
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-18px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted::before{
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before{
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after{
	background-color: var(--accent-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn{
	text-align: end;
}

.section-title-content{
	margin-left: 120px;
}

.section-title-content p{
	margin: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.6em;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-left: 35px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
    width: 24px;
    height: 5px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 30px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

/* Top Social Bar Start */
.top-social-bar{
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 8px 0;
	display: block;
	width: 100%;
	position: relative;
	z-index: 101;
}

.top-social-text{
	display: flex;
	align-items: center;
}

.top-social-text p{
	color: var(--white-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6em;
	margin: 0;
	text-transform: capitalize;
	letter-spacing: 0.3px;
}

.top-social-links{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.top-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-social-links ul li{
	display: inline-flex;
}

.top-social-links ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	height: 32px;
	width: 32px;
	transition: all 0.3s ease-in-out;
}

.top-social-links ul li a i{
	font-size: 14px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.top-social-links ul li a:hover{
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.top-social-links ul li a:hover i{
	color: var(--white-color);
}
/* Top Social Bar End */

header.main-header{
	position: relative;
	z-index: 100;
}

/* Ensure top social bar is always visible */
.top-social-bar{
	position: relative;
	z-index: 102;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	background: var(--header-bg);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--header-bg);
	border-bottom: 1px solid var(--divider-color);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar{
	padding: 8px 0;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
}

header.main-header .header-sticky nav.container{
	padding-left: 15px;
	padding-right: 15px;
}

header.main-header .header-sticky.active .navbar{
	border-bottom: none;
}

.navbar-brand{
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.navbar-brand img{
	max-height: 50px;
	width: auto;
	object-fit: contain;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin-left: 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 4px;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 8px 12px !important;
	color: var(--nav-text);
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--nav-hover);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 10px 0;
	margin: 10px 0 0 0;
	list-style: none;
	width: 230px;
	border-radius: 8px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--white-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul.site-navigation > li.nav-has-mega:not(:hover):not(:focus-within) > ul.nav-mega-dropdown{
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--nav-text);
	padding: 10px 20px !important;
	transition: all 0.3s ease-in-out;
	background-color: transparent;
	display: block;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--nav-hover);
	background-color: rgba(13, 71, 161, 0.08);
	padding: 10px 20px 10px 25px !important;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/* Site navigation (mega menu + mobile accordion) */
.recoda-navbar{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.recoda-navbar .main-menu.navbar-collapse{
	flex: 1 1 auto;
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.recoda-navbar .nav-menu-wrapper{
	flex: 1 1 auto;
	text-align: right;
	margin-left: 24px;
}

.recoda-navbar ul.site-navigation{
	display: inline-flex !important;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.main-menu ul.site-navigation > li > a.nav-link{
	text-transform: uppercase !important;
	letter-spacing: 0.06em;
	font-size: 13px;
	font-weight: 600;
	position: relative;
	padding: 12px 14px !important;
}

.main-menu ul.site-navigation > li > a.nav-link:hover,
.main-menu ul.site-navigation > li.nav-has-mega:hover > a.nav-link{
	color: var(--nav-hover) !important;
}

.main-menu ul.site-navigation > li.active > a.nav-link,
.main-menu ul.site-navigation > li.submenu.active > a.nav-link{
	color: var(--nav-hover) !important;
	box-shadow: inset 0 -4px 0 0 var(--accent-color);
}

.main-menu ul.site-navigation > li.submenu > a.nav-link::after{
	font-size: 11px;
	margin-left: 6px;
}

.main-menu ul.site-navigation > li.nav-has-mega{
	position: relative;
}

/* Invisible bridge so moving into the panel does not close the menu */
.main-menu ul.site-navigation > li.nav-has-mega::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 14px;
	z-index: 1299;
}

.main-menu ul.site-navigation > li.nav-has-mega > ul.nav-mega-dropdown{
	display: flex !important;
	flex-wrap: nowrap;
	gap: 0;
	width: max-content;
	min-width: 320px;
	max-width: min(94vw, 960px);
	padding: 20px 16px;
	top: calc(100% + 8px);
	left: 0;
	right: auto;
	margin: 0;
	transform: translateY(6px);
	transform-origin: top left;
	border-radius: 10px;
	z-index: 1300;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-menu ul.site-navigation > li.nav-has-mega.nav-mega-cols-3 > ul.nav-mega-dropdown{
	min-width: 640px;
}

.main-menu ul.site-navigation > li.nav-has-mega.nav-mega-cols-2 > ul.nav-mega-dropdown{
	min-width: 420px;
}

.main-menu ul.site-navigation > li.nav-has-mega:hover,
.main-menu ul.site-navigation > li.nav-has-mega:focus-within{
	z-index: 1310;
}

.main-menu ul.site-navigation > li.nav-has-mega:hover > ul.nav-mega-dropdown,
.main-menu ul.site-navigation > li.nav-has-mega:focus-within > ul.nav-mega-dropdown{
	transform: translateY(0);
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

.main-menu ul.site-navigation > li.nav-mega-align-center > ul.nav-mega-dropdown{
	left: 50%;
	right: auto;
	transform: translateX(-50%) translateY(6px);
	transform-origin: top center;
}

.main-menu ul.site-navigation > li.nav-mega-align-center:hover > ul.nav-mega-dropdown,
.main-menu ul.site-navigation > li.nav-mega-align-center:focus-within > ul.nav-mega-dropdown{
	transform: translateX(-50%) translateY(0);
}

.main-menu ul.site-navigation > li.nav-mega-align-end > ul.nav-mega-dropdown{
	left: auto;
	right: 0;
	transform: translateY(6px);
	transform-origin: top right;
}

.main-menu ul.site-navigation > li.nav-mega-align-end:hover > ul.nav-mega-dropdown,
.main-menu ul.site-navigation > li.nav-mega-align-end:focus-within > ul.nav-mega-dropdown{
	transform: translateY(0);
}

.main-menu .nav-mega-dropdown > li.nav-mega-column{
	flex: 1 1 auto;
	min-width: 180px;
	max-width: 280px;
	padding: 0 18px;
	border-right: 1px solid var(--divider-color);
	margin: 0;
	list-style: none;
}

.main-menu .nav-mega-dropdown > li.nav-mega-column:last-child{
	border-right: none;
}

.main-menu .nav-mega-heading{
	display: block;
	font-family: var(--accent-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent-color);
	padding: 0 8px 12px;
	margin-bottom: 6px;
	border-bottom: 1px solid rgba(13, 71, 161, 0.2);
}

/* Prevent legacy flyout rules from breaking mega menu columns */
.main-menu ul.site-navigation > li.nav-has-mega .nav-mega-column:hover > ul,
.main-menu ul.site-navigation > li.nav-has-mega .nav-mega-links{
	position: static !important;
	left: auto !important;
	top: auto !important;
	visibility: visible !important;
	opacity: 1 !important;
	transform: none !important;
	box-shadow: none !important;
	border: none !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	display: block !important;
}

.main-menu .nav-mega-dropdown ul,
.main-menu .nav-mega-dropdown .nav-mega-column > ul,
.main-menu .nav-mega-dropdown .nav-mega-links{
	position: static !important;
	left: auto !important;
	top: auto !important;
	visibility: visible !important;
	opacity: 1 !important;
	transform: none !important;
	box-shadow: none !important;
	border: none !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	display: block !important;
}

.main-menu .nav-mega-dropdown .nav-mega-column > ul > li{
	margin: 0;
	padding: 0;
}

.main-menu .nav-mega-dropdown .nav-mega-column > ul > li > a.nav-link{
	font-size: 14px !important;
	font-weight: 400 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	padding: 7px 8px !important;
	color: var(--nav-text) !important;
	box-shadow: none !important;
}

.main-menu .nav-mega-dropdown .nav-mega-column > ul > li > a.nav-link:hover,
.main-menu .nav-mega-dropdown .nav-mega-column > ul > li > a.nav-link.active{
	color: var(--nav-hover) !important;
	background-color: rgba(13, 71, 161, 0.08) !important;
	padding-left: 12px !important;
}

.main-menu .nav-mega-dropdown .nav-mega-column > ul > li > a.nav-link::after{
	content: none !important;
}

.mobile-menu-btn{
	background: var(--accent-color);
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu-bar{
	display: block;
	width: 22px;
	height: 3px;
	background: var(--white-color);
	border-radius: 6px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(1){
	transform: translateY(7px) rotate(-45deg);
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(2){
	opacity: 0;
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(3){
	transform: translateY(-7px) rotate(45deg);
}

.responsive-menu{
	display: none;
	background: var(--white-color);
	border-top: 1px solid var(--divider-color);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.responsive-menu.is-open{
	max-height: 85vh;
	overflow-y: auto;
}

.mobile-site-nav{
	padding: 0;
}

.mobile-nav-list{
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav-item{
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link,
.mobile-nav-toggle{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 20px;
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--nav-text);
	background: transparent;
	border: none;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-toggle:hover{
	color: var(--nav-hover);
}

.mobile-nav-toggle .mobile-nav-chevron{
	font-size: 12px;
	transition: transform 0.25s ease;
}

.mobile-nav-item--has-children.is-open .mobile-nav-chevron{
	transform: rotate(180deg);
}

.mobile-nav-panel{
	padding: 0 20px 16px;
}

.mobile-nav-heading{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-color);
	margin: 12px 0 8px;
}

.mobile-nav-sublinks{
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.mobile-nav-sublinks a{
	display: block;
	padding: 8px 0;
	color: var(--text-muted);
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	text-decoration: none;
}

.mobile-nav-sublinks a:hover,
.mobile-nav-sublinks a.active{
	color: var(--nav-hover);
}

.mobile-nav-item.active > .mobile-nav-link,
.mobile-nav-item.active > .mobile-nav-toggle{
	color: var(--nav-hover);
}

@media only screen and (max-width: 991px){
	.recoda-navbar .main-menu.navbar-collapse{
		display: none !important;
	}

	.responsive-menu{
		display: block;
	}

	.navbar-toggle{
		display: block;
	}
}

@media only screen and (min-width: 992px){
	.responsive-menu{
		display: none !important;
	}
}

.page-about-us [id],
.about-us.page-about-us [id]{
	scroll-margin-top: 120px;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 50vh;
	margin-top: -118px;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(13, 71, 161, 0) 0%, rgba(13, 71, 161, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	--hero-height: clamp(520px, 78vh, 900px);
	--hero-pad-top: clamp(108px, 14vh, 150px);
	--hero-pad-bottom: clamp(88px, 12vh, 120px);
	background: none;
	padding: 0;
	min-height: var(--hero-height);
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide{
	height: var(--hero-height);
	min-height: var(--hero-height);
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
	min-height: var(--hero-height);
	height: var(--hero-height);
	box-sizing: border-box;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		105deg,
		rgba(13, 30, 45, 0.55) 0%,
		rgba(13, 30, 45, 0.2) 45%,
		rgba(13, 30, 45, 0.35) 100%
	);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .container{
	position: relative;
	z-index: 2;
	width: 100%;
}

.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,
.hero.hero-slider-layout .hero-slide .hero-slider-image picture,
.hero.hero-slider-layout .hero-slide .hero-slider-image picture img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: clamp(28px, 5vh, 52px);
	width: 100%;
	max-width: 1320px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	box-sizing: border-box;
	z-index: 3;
}

.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 6px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
	background-color: var(--accent-color);
	transform: scale(1.15);
}

.hero-content{
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding-right: 24px;
}

.hero-content .section-title{
	margin-bottom: 0;
}

.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title h1{
	font-size: clamp(2.125rem, 3.8vw + 0.75rem, 4.75rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.hero-content .section-title h3{
	margin-bottom: clamp(12px, 1.5vh, 20px);
}

.hero-content .section-title p{
	font-size: clamp(1.05rem, 1.1vw + 0.65rem, 1.375rem);
	line-height: 1.55;
	color: var(--white-color);
	width: 100%;
	max-width: 640px;
	margin-top: clamp(18px, 2.5vh, 30px);
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .hero-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 20px;
	margin-top: clamp(28px, 3.5vh, 44px);
}

.hero-content .btn-default.btn-highlighted{
	margin-left: 0;
}

/* Laptop / short viewports: keep hero tall enough */
@media only screen and (min-width: 992px) and (max-height: 820px){
	.hero.hero-slider-layout{
		--hero-height: clamp(480px, 82vh, 720px);
		--hero-pad-top: clamp(96px, 12vh, 128px);
		--hero-pad-bottom: clamp(76px, 10vh, 100px);
	}
}

@media only screen and (min-width: 1400px){
	.hero.hero-slider-layout{
		--hero-height: clamp(600px, 82vh, 920px);
	}
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us{
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	background-image: url(../images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-img-2{
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}

.about-img-2 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.experience-counter{
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3{
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p{
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter{
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
    writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p{
	background-color: var(--primary-color);
}

.feedback-counter h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before{
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info{
	width: calc(50% - 40px);
}

.about-us-content-list{
	margin-bottom: 40px;
}

.about-us-content-list ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li{
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.about-us-contact-list{
	width: calc(50% - 40px);
}

.about-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child{
	margin-bottom: 0;
}

.about-contact-item .icon-box{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box{
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img{
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content{
	width: calc(100% - 55px);
}

.about-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p{
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box{
	background-color: transparent;
}

.why-choose-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content{
	width: calc(100% - 80px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p{
	color: var(--primary-color);
	margin-bottom: 0;
}

/* Research Process Alignment */
.research-process-row{
	display: flex;
	flex-wrap: wrap;
}

.research-process-row > div{
	display: flex;
	margin-bottom: 30px;
}

.why-choose-item.text-center{
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.why-choose-item.text-center .icon-box{
	margin-bottom: 20px;
}

.why-choose-item.text-center .why-choose-item-content{
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.why-choose-item.text-center .why-choose-item-content h3{
	margin-bottom: 15px;
}

.why-choose-item.text-center .why-choose-item-content p{
	flex: 1;
	margin: 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2{
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure{
	display: block;
}

.why-choose-img-1{
	width: calc(57% - 10px);
}

.why-choose-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2{
	width: calc(43% - 10px);
}

.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3{
	width: calc(67% - 10px);
}

.why-choose-img-3 img{
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4{
	width: calc(33% - 10px);
}

.why-choose-img-4 img{
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a{
	display: block;
	cursor: none;
}

.service-image a figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-btn{
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a{
	background-color: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover{
	background-color: var(--primary-color);
}

.service-btn a img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(0)
}

.service-content{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn{
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
    overflow: hidden;
	z-index: 1;
}

.intro-video-image a{
	display: block;
	cursor: none;
}

.intro-video-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(13, 71, 161, 0) 0%, rgba(13, 71, 161, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover{
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project{
	padding: 100px 0 70px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after{
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after{
	transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn{
	position: absolute;	
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);	
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);	
}

.project-btn a{
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img{
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover{
	background: var(--primary-color);
}

.project-btn a:hover img{
	transform: rotate(0deg);
}

.project-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
}

.project-content{
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2{
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2{
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a{
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work{
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

/* Home page RIPAT "How We Work" list - center 3 cards */
.ripat-how-we-work-list{
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.ripat-how-we-work-list .how-we-work-item{
	flex: 0 0 calc(33.333% - 14px);
	max-width: calc(33.333% - 14px);
	min-width: 0;
}

.how-we-work-item{
	width: calc(25% - 22.5px);
	position: relative;
}

.how-we-work-item-inner{
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.how-we-work-item-inner::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-bright) 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.how-we-work-item:hover .how-we-work-item-inner{
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.how-we-work-item:hover .how-we-work-item-inner::before{
	transform: scaleX(1);
}

.step-number{
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 48px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.1);
	line-height: 1;
	font-family: var(--default-font);
	transition: all 0.4s ease;
}

.how-we-work-item:hover .step-number{
	color: rgba(255, 255, 255, 0.15);
	transform: scale(1.1);
}

.how-we-work-item .icon-box{
	margin-bottom: 25px;
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
}

.how-we-work-item:hover .icon-box{
	transform: translateY(-5px) scale(1.05);
}

.how-we-work-item .icon-box img{
	max-width: 70px;
	height: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	transition: all 0.4s ease;
}

.how-we-work-item:hover .icon-box img{
	opacity: 1;
	filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.how-we-work-content{
	position: relative;
	z-index: 2;
}

.how-we-work-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.how-we-work-item:hover .how-we-work-content h3{
	color: var(--accent-cyan);
}

.how-we-work-content p{
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.7;
	font-size: 15px;
	transition: color 0.3s ease;
}

.how-we-work-item:hover .how-we-work-content p{
	color: rgba(255, 255, 255, 0.95);
}

.how-work-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

/* Departments Section - White Background Styles */
.departments-list .how-we-work-item{
	width: calc(33.333% - 20px);
}

.departments-item-inner{
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.departments-item-inner::before{
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.departments-item-inner:hover{
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.12);
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.departments-step-number{
	color: rgba(0, 0, 0, 0.08);
}

.departments-list .how-we-work-item:hover .departments-step-number{
	color: rgba(0, 0, 0, 0.12);
}

.departments-list .how-we-work-item .icon-box img{
	filter: brightness(0) saturate(100%);
	opacity: 0.8;
}

.departments-list .how-we-work-item:hover .icon-box img{
	opacity: 1;
	filter: brightness(0) saturate(100%) drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}

.departments-list .how-we-work-content h3{
	color: var(--heading-color);
}

.departments-list .how-we-work-item:hover .how-we-work-content h3{
	color: var(--primary-color);
}

.departments-list .how-we-work-content p{
	color: var(--text-color);
}

.departments-list .how-we-work-item:hover .how-we-work-content p{
	color: var(--text-color);
	opacity: 0.9;
}

@media (max-width: 991px){
	.departments-list .how-we-work-item{
		width: calc(50% - 15px);
	}
	
	.ripat-how-we-work-list .how-we-work-item{
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

@media (max-width: 767px){
	.departments-list .how-we-work-item{
		width: 100%;
	}
	
	.ripat-how-we-work-list .how-we-work-item{
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.ripat-how-we-work-list{
		flex-direction: column;
		gap: 20px;
	}
	
	.how-we-work-item-inner{
		padding: 30px 20px;
	}
	
	.how-we-work-content h3{
		font-size: 20px;
	}
	
	.how-we-work-content p{
		font-size: 14px;
	}
	
	.step-number{
		font-size: 40px;
		top: 15px;
		right: 15px;
	}
	
	.how-we-work-item .icon-box{
		margin-bottom: 20px;
	}
	
	.how-we-work-item .icon-box img{
		max-width: 60px;
	}
}

.how-work-company-slider .swiper-slide{
	height: auto;
}

.how-work-company-slider .company-logo{
	text-align: center;
	padding: 30px 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	height: 100%;
	background: var(--white-color);
	border-radius: 16px;
	border: 2px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.how-work-company-slider .company-logo::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-bright) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
}

.how-work-company-slider .company-logo:hover::before{
	transform: scaleX(1);
}

.how-work-company-slider .company-logo:hover{
	background: var(--bg-secondary);
	border-color: var(--accent-color);
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(13, 71, 161, 0.2);
}

.how-work-company-slider .company-logo a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.how-work-company-slider .company-logo img{
	max-width: 85%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: none;
	opacity: 1;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.how-work-company-slider .company-logo:hover img{
	filter: none;
	opacity: 1;
	transform: scale(1.05);
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill{
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no{
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress{
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image{
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1{
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure{
	display: block;
}

.our-skill-img-1 img{
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2{
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img{
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3{
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img{
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: var(--secondery-color);
}

.our-testimonials .container-fluid{
	padding: 0;
}

.our-testimonials-image{
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

.our-testimonial-content{
	padding: 100px;
}

.our-testimonial-content .section-title{
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider{
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter{
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2{
	font-size: 58px;
}

.testimonial-client-rating{
	display: inline-block;
	background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i{
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p{
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 15px;
}

.post-item-content h3{
	color: var(--primary-color);
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a{
    color: inherit;
}

.post-item-btn a{
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px , -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after{
	transform: translate(2px , -50%);
}

/* Resource Card Enhancements */
.post-item .post-item-content p{
	margin-bottom: 15px;
}

.post-item .post-item-content .fa{
	font-size: 14px;
}

.our-blog-footer{
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer{
	padding: 80px 0 0;
	background: var(--footer-bg);
	position: relative;
}

/* Add subtle blue accent at top of footer */
.main-footer::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-bright) 100%);
}

.main-footer .footer-header{
	border-bottom: 1px solid var(--divider-dark);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-logo{
	display: inline-block;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.footer-logo:hover{
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(13, 71, 161, 0.7);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(13, 71, 161, 0.4);
}

.footer-logo img{
	max-width: 180px;
	height: auto;
	filter: brightness(1.25) contrast(1.2);
	display: block;
}

.footer-social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 50%;
    height: 36px;
    width: 36px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i{
	font-size: 18px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: var(--accent-color);
}

.footer-social-links ul li a:hover i{
	color: var(--white-color);
}

.footer-links{
	position: relative;
	padding: 0;
	margin-bottom: 30px;
}

.footer-links::before{
	display: none;
}

.footer-links:hover{
	transform: none;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
	letter-spacing: 0.02em;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease-in-out;
	margin-bottom: 8px;
	font-size: 15px;
	opacity: 0.9;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li:hover{
	color: var(--accent-color);
	opacity: 1;
	transform: translateX(3px);
}

.footer-links ul li a{
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.footer-links ul li::before{
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 11px;
	opacity: 0.7;
	transform: translateY(1px);
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i{
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content{
	width: calc(100% - 50px);
}

.footer-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form button{
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i{
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i{
	color: var(--primary-color);
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 65px;
	padding: 40px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header{
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 270px 0 180px;
	margin-top: -118px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(8, 36, 78, 0.503) 0%, rgba(13, 71, 161, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    font-size: 20px;
    color: var(--white-color);
}

.about-us.page-about-us{
	background: transparent;
}

.about-facility-list{
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item{
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before{
	transform: scale(1);
}

.about-facility-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.about-facility-content{
	width: calc(100% - 80px);
}

.about-facility-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p{
	margin-bottom: 0;
}

.vision-mission{
	padding: 100px 0;
	background: var(--primary-color);
}

.vision-mission-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.vision-mission-item{
	width: calc(50% - 15px);
}

.vision-mission-item:nth-child(3){
	width: 100%;
}

.vision-mission-item::before{
	display: none;
}

.vision-mission-item-inner{
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border-radius: 20px;
	padding: 40px 32px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(16px);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission-item-inner::before{
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(0, 188, 212, 0.35), transparent 55%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.vision-mission-item:hover .vision-mission-item-inner{
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.28);
}

.vision-mission-item:hover .vision-mission-item-inner::before{
	opacity: 1;
}

.vm-pill{
	position: absolute;
	top: 22px;
	right: 26px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white-color);
	background: rgba(0, 188, 212, 0.18);
	border: 1px solid rgba(0, 188, 212, 0.7);
	backdrop-filter: blur(12px);
}

.vm-pill-mission{
	background: rgba(25, 118, 210, 0.18);
	border-color: rgba(25, 118, 210, 0.7);
}

.vm-pill-goals{
	background: rgba(76, 175, 80, 0.18);
	border-color: rgba(76, 175, 80, 0.7);
}

.vision-mission-item .icon-box{
	margin-bottom: 26px;
	position: relative;
	z-index: 2;
}

.vision-mission-item .icon-box img{
	max-width: 56px;
	filter: brightness(0) invert(1);
	opacity: 0.92;
	transition: all 0.35s ease;
}

.vision-mission-item:hover .icon-box img{
	opacity: 1;
	transform: translateY(-3px) scale(1.05);
	filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.45));
}

.vision-mission-content{
	position: relative;
	z-index: 2;
}

.vision-mission-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.vision-mission-content p{
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.8;
	font-size: 15px;
}

.best-selling{
	background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img{
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure{
	display: block;
}

.best-selling-content-img img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title{
	margin-bottom: 0;
}

.best-selling-iamge img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image figure{
	display: block;
}

.team-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img{
	transform: scale(1.1);
}

.team-readmore-btn{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover{
	background-color: var(--primary-color);
}

.team-readmore-btn img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img{
	transform: rotate(0deg);
}

.team-content{
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p{
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	margin-right: 70px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq-accordion .accordion-body{
	padding-right: 35px;
}

.faq-accordion .accordion-body p{
	margin: 0;
}

.our-faqs-image{
	text-align: right;
}

.our-faqs-image figure{
	display: block;
}

.our-faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.our-clients{
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box{
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo{
	text-align: center;
}

.our-client-slider .client-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.what-we-do-page .what-we-do-nav{
	position: sticky;
	top: 30px;
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.what-we-do-page .what-we-do-nav h3{
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.what-we-do-page .what-we-do-nav ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-page .what-we-do-nav ul li{
	border-bottom: 1px solid var(--divider-color);
}

.what-we-do-page .what-we-do-nav ul li:last-child{
	border-bottom: none;
}

.what-we-do-page .what-we-do-nav ul li a{
	display: block;
	font-size: 16px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--text-color);
	padding: 12px 0;
	transition: all 0.3s ease-in-out;
}

.what-we-do-page .what-we-do-nav ul li a:hover{
	color: var(--accent-color);
}

.what-we-do-body .what-we-do-section{
	margin-bottom: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--divider-color);
}

.what-we-do-body .what-we-do-section:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.what-we-do-body .what-we-do-section-title{
	font-size: 28px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.what-we-do-body .what-we-do-section-intro{
	margin-bottom: 20px;
}

.what-we-do-body .what-we-do-subheading{
	font-size: 22px;
	margin: 28px 0 16px;
	text-transform: capitalize;
}

.what-we-do-body p{
	margin-bottom: 18px;
}

.what-we-do-body .what-we-do-list{
	margin: 0 0 24px;
	padding-left: 22px;
}

.what-we-do-body .what-we-do-list li{
	margin-bottom: 12px;
}

.what-we-do-back{
	margin-top: 40px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
    margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
    margin: 0;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
	font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
	transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.sidebar-cta-image figure{
	display: block;
}

.sidebar-cta-image img{
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body{
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content{
	margin-bottom: 25px;
}

.sidebar-cta-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p{
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover{
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before{
    transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.cta-contact-item-content{
	width: calc(100% - 78px);
}

.cta-contact-item-content p{
	font-weight: 500;
	margin: 0;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
	text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list{
	width: calc(50% - 15px);
}

.service-entry-image figure{
	display: block;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul{
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose{
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: none;
	padding-bottom: 0;
    margin-bottom: 0;
}

.service-entry .post-entry{
	border-bottom: none;
	padding-bottom: 0;
    margin-bottom: 0;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 80px;
    letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/* Blog Detail Enhancements */
.blog-excerpt{
    margin-bottom: 40px;
}

.blog-footer-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-footer-section .post-tags{
    margin-bottom: 0;
}

.blog-footer-section .post-social-sharing{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 991px){
    .blog-footer-section{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog-footer-section .post-social-sharing{
        width: 100%;
        justify-content: flex-start;
    }
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project{
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-single-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item{
	display: flex;
	align-items: center;
    margin-bottom: 30px;
}

.project-detail-item:last-child{
	margin-bottom: 0;
}

.project-detail-item .icon-box{
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before{
	transform: scale(1);
}

.project-detail-item .icon-box i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i{
	color: var(--white-color);
}

.project-detail-content{
	width: calc(100% - 70px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
}

.project-single-image img{
	width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.project-entry p{
	margin-bottom: 20px;
}

.project-entry p:last-child{
	margin-bottom: 0;
}

.project-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img{
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure{
    display: block;
	cursor: none;
}

.project-gallery-img figure img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-image{
	height: 100%;
}

.contact-us-image figure{
	height: 100%;
	display: block;
}

.contact-us-image img{
	height: 100%;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}

.contact-us-form{
	margin-left: 30px;
}

.contact-form .form-control{
    font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
	border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.contact-form .form-control::placeholder{
	font-weight: 400;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map .section-title{
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 500px;
}

.contact-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item{
	width: calc(33.33% - 20px);
	display: flex;
}

.contact-info-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box:before{
	transform: scale(1);
}

.contact-info-item .icon-box i{
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i{
	color: var(--white-color);
}

.contact-info-content{
	width: calc(100% - 80px);
}

.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p{
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page{
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){
	
	.our-testimonial-content{
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}

	.our-testimonial-content{
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 991px){

	.navbar{
		padding: 8px 0;
	}

	.top-social-bar{
		padding: 8px 0;
	}

	.top-social-text{
		justify-content: center;
		text-align: center;
		margin-bottom: 8px;
	}

	.top-social-text p{
		font-size: 13px;
	}

	.top-social-links{
		justify-content: center;
	}

	.top-social-links ul li a{
		height: 28px;
		width: 28px;
	}

	.top-social-links ul li a i{
		font-size: 12px;
	}
	
	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.btn-default{
		padding: 14px 42px 14px 16px;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title{
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content{
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.hero{
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout{
		--hero-height: clamp(440px, 70vh, 640px);
		--hero-pad-top: clamp(88px, 12vh, 120px);
		--hero-pad-bottom: clamp(72px, 10vh, 96px);
	}

	.hero.hero-slider-layout .swiper,
	.hero.hero-slider-layout .swiper-wrapper,
	.hero.hero-slider-layout .swiper-slide,
	.hero.hero-slider-layout .hero-slide{
		min-height: var(--hero-height);
		height: var(--hero-height);
	}

	.hero.hero-slider-layout .hero-slide{
		padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		padding-right: 15px;
		bottom: clamp(20px, 4vh, 36px);
	}

	.hero-content{
		max-width: 100%;
		padding-right: 0;
	}

	.hero-content .section-title p{
		font-size: clamp(1rem, 2.5vw, 1.25rem);
		max-width: 100%;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		margin: 0 0 30px 0;
	}

	.experience-counter{
		height: 137px;
		width: 137px;
	}

	.experience-counter h3{
		font-size: 28px;
	}

	.about-us-content-list{
		margin-bottom: 30px;
	}

	.about-contact-item{
		margin-bottom: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 70px);
	}

	.why-choose-images{
		margin-left: 0;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-image img{
		aspect-ratio: 1 / 1.2;
	}

	.service-btn{
		top: 20px;
		right: 20px;
	}

	.service-btn a{
		height: 50px;
		width: 50px;
	}

	.service-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn{
		margin-top: 10px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

	.our-project{
		padding: 50px 0 20px;
	}

	.our-Project-nav{
		margin-bottom: 50px;
	}

	.project-featured-image img{
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a{
		width: 80px;
		height: 80px;
	}

	.project-content{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work{
		padding: 50px 0;
	}

	.how-we-work-item{
		width: calc(50% - 15px);
	}
	
	.ripat-how-we-work-list .how-we-work-item{
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}

	.how-we-work-item .icon-box{
		margin-bottom: 20px;
	}

	.how-work-company-slider{
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill{
		padding: 50px 0;
	}

	.our-skill-content{
		margin-bottom: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 30px;
	}

	.our-skill-image{
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image{
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content{
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title{
		background-size: contain;
	}

	.testimonial-slider{
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating{
		margin-bottom:15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
		font-size: 48px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.our-blog .section-title{
		margin-right: 0;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer{
		margin-top: 10px;
	}

	.main-footer{
		padding: 40px 0 0;
	}

	.main-footer .footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p{
		margin-bottom: 20px;
	}

	.footer-copyright{
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header{
        padding: 180px 0 100px;
        margin-top: -92px;
    }

    .page-header-box h1{
        font-size: 50px;
    }

	.page-header-box ol li.breadcrumb-item{
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 16px;
	}

	.about-facility-list{
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item{
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img{
		max-width: 20px;
	}

	.about-facility-content{
		width: calc(100% - 55px);
	}

	.about-facility-content h3{
		font-size: 18px;
	}

	.vision-mission{
		padding: 50px 0;
	}

	.vision-mission-box{
        gap: 30px;
		margin-top: 40px;
    }

	.vision-mission-item{
		width: calc(50% - 15px);
	}

	.vision-mission-item .icon-box{
		margin-bottom: 20px;
	}

	.vision-mission-item .icon-box img{
		max-width: 50px;
	}

	.vision-mission-content h3{
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.vision-mission-content p{
		font-size: 15px;
	}

	.best-selling{
		padding: 25px 0 50px;
	}

	.best-selling-content{
		margin-bottom: 20px;
	}

	.best-selling-content-img{
		margin-bottom: 20px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-readmore-btn{
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a{
		width: 50px;
		height: 50px;
	}

	.team-content{
		margin-bottom: 15px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.our-faqs-image{
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 0.8;
	}

	.our-clients{
		padding: 50px 0;
	}

	.our-clients .our-clients-box{
		max-width: 100%;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body{
		padding: 20px;
	}

	.sidebar-cta-content{
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item{
		margin-bottom: 15px;
	}

	.service-feature-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry ul li{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose{
		margin-bottom: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

	.page-project{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-single-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
        margin-bottom: 15px;
    }

	.faq-catagery-list ul li a::before{
        width: 16px;
        height: 16px;
    }

	.our-faq-section.page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-image{
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form{
		margin-left: 0;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 400px;
	}

	.contact-info-box{
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item{
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i{
		font-size: 16px;
	}

	.contact-info-content{
		width: calc(100% - 60px);
	}

	.contact-info-content h3{
		font-size: 18px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero.hero-slider-layout{
		--hero-height: clamp(380px, 62vh, 520px);
		--hero-pad-top: clamp(80px, 11vh, 100px);
		--hero-pad-bottom: clamp(64px, 9vh, 80px);
	}

	.hero-content .section-title p{
		font-size: 1rem;
	}

	.hero-content .hero-btn{
		margin-top: 22px;
		gap: 12px;
	}

	.hero-content .btn-default{
		margin-right: 0;
		margin-bottom: 0;
	}

	.hero-content .btn-default.btn-highlighted{
		margin: 0;
	}

	.about-us-images{
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter{
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p{
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }

	.feedback-counter h3{
		font-size: 12px;
        width: calc(100% - 40px);
	}

	.about-img-2{
		max-width: 240px;
	}

	.experience-counter{
        height: 102px;
        width: 102px;
    }

	.experience-counter h3{
        font-size: 22px;
    }

	.experience-counter p{
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body{
		gap: 0px;
	}

	.about-us-content-body::before{
		display: none;
	}

	.about-us-content-info{
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list{
        margin-bottom: 20px;
    }

	.about-us-contact-list{
		width: 100%;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item{
		margin-bottom: 20px;
	}

	.about-contact-content h3{
		font-size: 18px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img{
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img{
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3{
		font-size: 18px;
	}

	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a{
        width: 60px;
        height: 60px;
    }

	.project-btn img{
		max-width: 20px;
	}

	.project-content h2{
		font-size: 18px;
	}

	.how-we-work-item{
		width: 100%;
	}
	
	.ripat-how-we-work-list .how-we-work-item{
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.ripat-how-we-work-list{
		flex-direction: column;
		gap: 20px;
	}

	.how-we-work-item .icon-box img{
		max-width: 50px;
	}

	.how-we-work-content h3{
		font-size: 18px;
	}
	
	.how-we-work-item-inner{
		padding: 30px 20px;
	}
	
	.step-number{
		font-size: 40px;
		top: 15px;
		right: 15px;
	}

	.how-work-company-slider{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image{
		padding-bottom: 83px;
	}

	.our-skill-img-1{
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2{
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3{
		width: 200px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
        font-size: 38px;
    }

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content{
		margin-bottom: 10px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-social-links{
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3{
		font-size: 18px;
	}

	.footer-links h3{
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 5px;
	}
	
	.footer-copyright{
		padding: 15px 0;
	}

	.page-header-box h1{
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 14px;
	}

	.about-facility-item{
        width: 100%;
    }

	.vision-mission{
		padding: 40px 0;
	}

	.vision-mission-box{
        gap: 30px;
		margin-top: 30px;
    }

	.vision-mission-item{
		width: 100%;
	}

	.vision-mission-item .icon-box{
		margin-bottom: 15px;
	}

	.vision-mission-item .icon-box img{
		max-width: 50px;
	}
	
	.vision-mission-content h3{
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.vision-mission-content p{
		font-size: 14px;
		line-height: 1.7;
	}

	.team-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 2px;
	}

	.faq-accordion .accordion-body{
		padding-right: 0;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }

	.service-entry-list-image{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.project-single-image{
        margin-bottom: 20px;
    }

	.project-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul li{
        margin-bottom: 10px;
    }

	.project-entry ul li::before{
        font-size: 18px;
        top: 5px;
    }

	.project-gallery-images{
		gap: 20px;
	}

	.project-gallery-img{
		width: calc(50% - 10px);
	}

	.contact-us-image img{
        aspect-ratio: 1 / 0.75;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

	.contact-info-item{
		width: 100%;
	}

	.error-page-image img{
        max-width: 100%;
    }
}

/************************************/
/***      Job Cards CSS            ***/
/************************************/

/* Stats bar */
.job-stats-bar{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: #f5f7fa;
	border: 1px solid #e9ecef;
	border-radius: 50px;
	padding: 14px 32px;
	margin: 40px auto 0;
	width: fit-content;
	flex-wrap: wrap;
}

.job-stats-item{
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #555;
	padding: 0 20px;
}

.job-stats-item i{
	color: var(--primary-color);
	font-size: 15px;
}

.job-stats-number{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.job-stats-label{
	font-size: 13px;
	color: #666;
}

.job-stats-divider{
	width: 1px;
	height: 28px;
	background: #ddd;
}

/************************************/
/***     Jobs Listing Page CSS     ***/
/************************************/

.jobs-page{
	padding: 56px 0 80px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 120px);
}

.jobs-page__intro{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
	margin-bottom: 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e8edf2;
}

.jobs-page__intro-text{
	flex: 1 1 280px;
	min-width: 0;
}

.jobs-page__heading{
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 10px;
	line-height: 1.25;
}

.jobs-page__lead{
	max-width: 540px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #5c6570;
}

.jobs-page__stats{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	flex: 0 1 auto;
}

.jobs-page__stat{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #e3e8ef;
	border-radius: 10px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
}

.jobs-page__stat-value{
	font-size: 1.375rem;
	font-weight: 800;
	line-height: 1;
	color: var(--primary-color);
}

.jobs-page__stat-label{
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6b7280;
	white-space: nowrap;
}

.jobs-page__stat--urgent .jobs-page__stat-value{
	color: #e65100;
}

.jobs-page__stat--urgent{
	border-color: #ffcc80;
	background: #fff8f0;
}

.jobs-page__stat--muted .jobs-page__stat-value{
	color: #9ca3af;
}

.jobs-page__group{
	margin-bottom: 48px;
}

.jobs-page__group--closed{
	margin-bottom: 0;
}

.jobs-page__group-head{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8edf2;
}

.jobs-page__group-title{
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--heading-color);
}

.jobs-page__group-dot{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.jobs-page__group-dot--open{
	background: #2e7d32;
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.jobs-page__group-dot--closed{
	background: #9ca3af;
}

.jobs-page__group-count{
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	padding: 5px 12px;
	background: #f1f5f9;
	border-radius: 8px;
	line-height: 1.2;
	white-space: nowrap;
}

.jobs-page__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Vacancy card — image + content, accent top border */
.job-vacancy-card{
	--job-accent: #0d47a1;
	display: grid;
	grid-template-columns: 1fr;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-top: 4px solid var(--job-accent);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 768px){
	.job-vacancy-card--with-media{
		grid-template-columns: minmax(220px, 32%) 1fr;
		align-items: stretch;
	}
}

.job-vacancy-card:hover{
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 16px 40px rgba(13, 71, 161, 0.08);
	transform: translateY(-2px);
}

.job-vacancy-card--closed{
	background: #f8fafc;
	border-top-color: #94a3b8;
}

.job-vacancy-card--closed:hover{
	transform: none;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.job-vacancy-card__media{
	display: block;
	height: 220px;
	overflow: hidden;
	background: #e8edf2;
}

@media (min-width: 768px){
	.job-vacancy-card--with-media .job-vacancy-card__media{
		height: 100%;
		min-height: 240px;
	}
}

.job-vacancy-card__media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
}

.job-vacancy-card:hover .job-vacancy-card__media img{
	transform: scale(1.03);
}

.job-vacancy-card__inner{
	padding: 24px 28px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.job-vacancy-card__header{
	margin-bottom: 14px;
}

.job-vacancy-card__badges{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.job-vacancy-card__project{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--job-accent);
	background: color-mix(in srgb, var(--job-accent) 12%, #fff);
	border: 1px solid color-mix(in srgb, var(--job-accent) 22%, transparent);
	padding: 5px 12px;
	border-radius: 6px;
	line-height: 1.3;
}

.job-vacancy-card__pill{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 5px 11px;
	border-radius: 999px;
	white-space: nowrap;
	line-height: 1.2;
}

.job-vacancy-card__pill--featured{
	background: #fef9c3;
	color: #854d0e;
	border: 1px solid #fde047;
}

.job-vacancy-card__pill--open{
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.job-vacancy-card__pill--urgent{
	background: #fff7ed;
	color: #c2410c;
	border: 1px solid #fdba74;
}

.job-vacancy-card__pill--closed{
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.job-vacancy-card__title{
	margin: 0 0 14px;
	font-size: clamp(1.125rem, 2.2vw, 1.375rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.job-vacancy-card__title a{
	color: #0f172a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.job-vacancy-card__title a:hover{
	color: var(--primary-color);
}

.job-vacancy-card--closed .job-vacancy-card__title a{
	color: #475569;
}

.job-vacancy-card__meta{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.job-vacancy-card__meta li{
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 1.45;
	color: #475569;
	max-width: 100%;
}

.job-vacancy-card__meta i{
	flex-shrink: 0;
	color: var(--job-accent);
	font-size: 14px;
	width: 16px;
	text-align: center;
}

.job-vacancy-card__excerpt{
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.7;
	color: #64748b;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.job-vacancy-card--closed .job-vacancy-card__excerpt{
	color: #94a3b8;
}

.job-vacancy-card__footer{
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid #eef2f6;
}

.job-vacancy-card__footer-bar{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 20px;
}

.job-vacancy-card__dates{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	flex: 0 1 auto;
}

.job-vacancy-card__date{
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: #64748b;
}

.job-vacancy-card__date i{
	font-size: 13px;
	color: #94a3b8;
}

.job-vacancy-card__date.is-urgent{
	color: #c2410c;
	font-weight: 600;
}

.job-vacancy-card__date.is-urgent i{
	color: #ea580c;
}

.job-vacancy-card__date.is-closed{
	color: #b91c1c;
	font-weight: 600;
}

.job-vacancy-card__date.is-closed i{
	color: #dc2626;
}

.job-vacancy-card__actions{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

@media (min-width: 576px){
	.job-vacancy-card__footer-bar{
		justify-content: flex-start;
	}

	.job-vacancy-card__actions{
		padding-left: 20px;
		margin-left: 4px;
		border-left: 1px solid #e2e8f0;
	}
}

.job-vacancy-card__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.job-vacancy-card__btn--primary{
	background: var(--primary-color);
	color: #fff !important;
	border: none;
	box-shadow: 0 2px 8px rgba(13, 71, 161, 0.25);
}

.job-vacancy-card__btn--primary:hover{
	background: #0a3d91;
	box-shadow: 0 4px 14px rgba(13, 71, 161, 0.35);
}

.job-vacancy-card__btn--secondary{
	background: #fff;
	color: var(--primary-color) !important;
	border: 2px solid var(--primary-color);
}

.job-vacancy-card__btn--secondary:hover{
	background: #eff6ff;
}

.job-vacancy-card__btn--disabled{
	background: #f1f5f9;
	color: #94a3b8 !important;
	border: 1px solid #e2e8f0;
	cursor: not-allowed;
}

.job-vacancy-card--closed .job-vacancy-card__btn--primary{
	background: #64748b;
	box-shadow: none;
}

.jobs-page__empty{
	text-align: center;
	padding: 72px 24px;
	background: #fff;
	border: 1px dashed #d1d9e6;
	border-radius: 16px;
	margin-top: 24px;
}

.jobs-page__empty-icon{
	font-size: 3rem;
	color: #cbd5e1;
	margin-bottom: 16px;
}

.jobs-page__empty h3{
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--heading-color);
}

.jobs-page__empty p{
	max-width: 420px;
	margin: 0 auto 24px;
	color: #6b7280;
	line-height: 1.7;
}

/************************************/
/***      Job Detail Page CSS      ***/
/************************************/

.job-detail-featured-image{
	margin: 0 0 28px;
	border-radius: 14px;
	overflow: hidden;
	background: #e8edf2;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.job-detail-featured-image img{
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
}

.job-detail-header{
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 40px;
	border: 1px solid #e9ecef;
}

.job-detail-badges{
	display: flex;
	gap: 10px;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.job-badge{
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.job-badge.featured{
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #7a5000;
}

.job-status-badge{
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.job-status-badge.published{
	background: #d4edda;
	color: #155724;
}

.job-detail-meta-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.job-detail-meta-item{
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.job-detail-meta-item:hover{
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-color);
}

.job-meta-icon{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-color), #0056b3);
	border-radius: 8px;
	color: #fff;
	font-size: 18px;
	flex-shrink: 0;
}

.job-meta-content{
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.job-meta-label{
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.job-meta-value{
	font-size: 15px;
	color: var(--heading-color);
	font-weight: 500;
}

.job-apply-cta{
	background: linear-gradient(135deg, var(--primary-color), #0056b3);
	border-radius: 12px;
	padding: 50px 40px;
	margin-top: 60px;
	text-align: center;
	color: #fff;
}

.job-apply-content h3{
	color: #fff;
	font-size: 28px;
	margin-bottom: 15px;
	font-weight: 600;
}

.job-apply-content p{
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.7;
}

.job-apply-actions{
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.job-apply-actions .btn-default{
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.job-apply-actions .btn-highlighted{
	background: #fff;
	color: var(--primary-color);
	border: 2px solid #fff;
}

.job-apply-actions .btn-highlighted:hover{
	background: transparent;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.job-apply-actions .btn-default:not(.btn-highlighted){
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.job-apply-actions .btn-default:not(.btn-highlighted):hover{
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.job-document-links{
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 30px;
}

.job-document-link{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid rgba(13, 74, 139, 0.15);
	border-radius: 10px;
	background: #f8fbff;
	color: var(--primary-color);
	font-weight: 600;
	transition: all 0.3s ease;
	max-width: 100%;
}

.job-document-link:hover{
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(13, 74, 139, 0.15);
}

.job-document-link i{
	font-size: 20px;
	flex-shrink: 0;
}

.job-apply-contact{
	margin-top: 24px;
	padding: 20px 24px;
	background: #f8fbff;
	border-left: 4px solid var(--primary-color);
	border-radius: 0 8px 8px 0;
}

.job-apply-contact p{
	margin-bottom: 8px;
	line-height: 1.7;
}

.job-apply-contact p:last-child{
	margin-bottom: 0;
}

.job-detail-page .job-detail-layout{
	align-items: flex-start;
}

.job-detail-section{
	margin-top: 48px;
}

.job-detail-section:first-of-type{
	margin-top: 0;
}

.job-detail-prose{
	line-height: 1.85;
	color: var(--text-color);
	font-size: 16px;
}

.job-detail-meta-item--wide{
	grid-column: 1 / -1;
}

.job-meta-value--email{
	word-break: break-word;
}

.job-detail-meta-item--deadline .job-meta-value{
	color: var(--primary-color);
	font-weight: 600;
}

.job-status-badge--closed{
	background: #f8d7da;
	color: #721c24;
}

.job-status-badge--urgent{
	background: #fff3cd;
	color: #856404;
}

.job-detail-sidebar{
	position: sticky;
	top: 100px;
}

.job-sidebar-deadline{
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 20px;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
	border: 1px solid rgba(13, 71, 161, 0.12);
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
}

.job-sidebar-deadline__icon{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: #fff;
	border-radius: 10px;
	font-size: 18px;
	flex-shrink: 0;
}

.job-sidebar-deadline__label{
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #666;
	font-weight: 600;
	margin-bottom: 4px;
}

.job-sidebar-deadline__date{
	display: block;
	font-size: 20px;
	color: var(--heading-color);
	line-height: 1.2;
}

.job-sidebar-deadline__time{
	display: block;
	font-size: 14px;
	color: #555;
	margin-top: 4px;
}

/* Vacancy PDF panel */
.job-pdf-panel{
	margin: 36px 0 44px;
	padding: 28px 28px 0;
	background: #fff;
	border: 1px solid rgba(13, 71, 161, 0.12);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.job-pdf-panel--compact{
	margin: 0 0 24px;
	padding: 20px;
}

.job-pdf-panel--compact .job-pdf-panel__head{
	flex-wrap: wrap;
}

.job-pdf-panel--compact .job-pdf-panel__actions{
	width: 100%;
	margin-top: 4px;
}

.job-pdf-panel--compact .job-pdf-panel__btn{
	flex: 1;
	min-width: 0;
	justify-content: center;
	padding: 12px 14px;
	font-size: 14px;
}

.job-pdf-panel__head{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 24px;
}

.job-pdf-panel__icon{
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #c62828, #e53935);
	color: #fff;
	border-radius: 12px;
	font-size: 26px;
	flex-shrink: 0;
}

.job-pdf-panel__intro{
	flex: 1 1 200px;
	min-width: 0;
}

.job-pdf-panel__title{
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	color: var(--heading-color);
	line-height: 1.3;
}

.job-pdf-panel__hint{
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.job-pdf-panel__actions{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-left: auto;
}

.job-pdf-panel__btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 14px;
	white-space: nowrap;
}

.job-pdf-panel__viewer{
	margin: 0 -28px;
	border-top: 1px solid #e9ecef;
	background: #f0f4f8;
}

.job-pdf-panel__iframe{
	display: block;
	width: 100%;
	height: min(72vh, 720px);
	min-height: 420px;
	border: 0;
	background: #fff;
}

.job-pdf-panel__viewer-fallback{
	margin: 0;
	padding: 12px 20px 16px;
	font-size: 13px;
	color: #666;
	text-align: center;
	background: #f8f9fa;
}

.job-pdf-panel__viewer-fallback a{
	font-weight: 600;
	color: var(--primary-color);
}

@media (max-width: 991px){
	.job-stats-bar{
		padding: 12px 16px;
		gap: 0;
	}

	.job-stats-item{
		padding: 8px 12px;
	}

	.job-stats-divider{
		height: 20px;
	}

	.jobs-page__intro{
		align-items: flex-start;
	}

	.jobs-page__stats{
		width: 100%;
	}

	.job-vacancy-card--with-media{
		grid-template-columns: 1fr;
	}

	.job-vacancy-card__media{
		height: 200px;
	}

	.job-vacancy-card__inner{
		padding: 20px 18px 22px;
	}

	.job-vacancy-card__footer-bar{
		flex-direction: column;
		align-items: stretch;
	}

	.job-vacancy-card__dates{
		flex: 1 1 auto;
	}

	.job-vacancy-card__actions{
		flex-direction: column;
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		border-left: none;
	}

	.job-vacancy-card__btn{
		width: 100%;
	}

	.jobs-page__intro{
		flex-direction: column;
	}

	.job-detail-header{
		padding: 25px;
	}

	.job-detail-meta-grid{
		grid-template-columns: 1fr;
	}

	.job-apply-cta{
		padding: 40px 25px;
	}

	.job-apply-content h3{
		font-size: 24px;
	}

	.job-apply-actions{
		flex-direction: column;
	}

	.job-apply-actions .btn-default{
		width: 100%;
	}

	.job-detail-sidebar{
		position: static;
	}

	.job-pdf-panel__head{
		flex-direction: column;
	}

	.job-pdf-panel__actions{
		margin-left: 0;
		width: 100%;
	}

	.job-pdf-panel__actions .job-pdf-panel__btn{
		flex: 1;
		justify-content: center;
	}

	.job-pdf-panel__iframe{
		min-height: 360px;
		height: 55vh;
	}
}

/* Performance: faster paint & scroll */
.gallery-item,.photo-gallery,.service-item,.post-item{
	content-visibility:auto;
	contain-intrinsic-size:280px;
}
img[loading="lazy"]{
	content-visibility:auto;
}
html.fonts-loaded body{
	font-family:"Hanken Grotesk",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}