/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #000000;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #e02042;
	--brand-red				: #e02042;
	--brand-black			: #000000;
	--white-color			: #FFFFFF;
	--divider-color			: #f0f0f0;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
	margin: 0;
	padding: 0;
}

html{
	margin: 0;
	padding: 0;
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: var(--white-color);
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-18px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted::before{
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before{
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after{
	background-color: var(--accent-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: 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: 150px;
	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		 ****/
/************************************/

/* Fixed Social Media Icons */
.social-fixed {
	position: fixed;
	right: 33px;
	bottom: 90px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-fixed a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #e02042;
	color: #ffffff;
	border-radius: 50%;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(224, 32, 66, 0.3);
}

.social-fixed a:hover {
	background-color: #ffffff;
	color: #e02042;
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(224, 32, 66, 0.5);
}

/* Hide on mobile */
@media (max-width: 768px) {
	.social-fixed {
		display: none;
	}
}

/* Top Bar Styles */
.top-bar {
	background-color: #ffffff;
	padding: 10px 0;
	position: relative;
	z-index: 101;
	transition: all 0.3s ease-in-out;
	border-bottom: 3px solid #e02042;
}

/* Top bar becomes sticky */
.active-sticky-header + .top-bar,
body .top-bar.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 101;
	border-bottom: none;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-logo {
	display: flex;
	align-items: center;
}

.top-bar-logo img {
	max-width: 180px;
	height: auto;
}

.top-bar-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.top-bar-text {
	color: #283132;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.top-bar-btn {
	display: inline-block;
	padding: 1px 20px;
	background-color: #e02042;
	color: #ffffff;
	border: 1px solid #e02042;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.top-bar-btn:hover {
	background-color: #c01838;
	border-color: #c01838;
	color: #ffffff;
	text-decoration: none;
}

.top-bar-btn i {
	margin-right: 5px;
}

header.main-header{
	position: relative;
	z-index: 100;
	margin-top: 0;
	padding-top: 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	margin-top: 0;
	padding-top: 0;
	overflow: visible;
}

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: 80px;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: #e02042;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	z-index: 100;
}

header.main-header .header-sticky.active .navbar{
	border-bottom: none;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img{
	/* Logo uses brand colors: #e02042 (red) and #000000 (black) */
	/* Logo PNG file should contain these colors */
	max-width: 180px;
	height: auto;
}

/* Logo switching - show white logo initially, dark logo on sticky */
.navbar-brand .logo-dark{
	display: none;
}

.navbar-brand .logo-white{
	display: block;
}

header.main-header .header-sticky.active .navbar-brand .logo-dark{
	display: block;
}

header.main-header .header-sticky.active .navbar-brand .logo-white{
	display: none;
}

/* Change menu link colors when sticky (red background) */
header.main-header .header-sticky.active .main-menu ul li a{
	color: #ffffff;
}

header.main-header .header-sticky.active .main-menu ul li a:hover,
header.main-header .header-sticky.active .main-menu ul li a:focus{
	color: #ffffff;
	opacity: 0.8;
}

/* Sticky navbar dropdown menu styles */
header.main-header .header-sticky.active .main-menu ul ul{
	background-color: #ffffff;
	border: 1px solid var(--divider-color);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

header.main-header .header-sticky.active .main-menu ul ul li a{
	color: var(--text-color);
}

header.main-header .header-sticky.active .main-menu ul ul li a:hover,
header.main-header .header-sticky.active .main-menu ul ul li a:focus{
	color: #e02042;
	background-color: #f8f8f8;
}

header.main-header .header-sticky.active .main-menu ul li.submenu > a:after{
	color: #ffffff;
}

/* Header button style when sticky (white button on red background) */
header.main-header .header-sticky.active .header-btn .btn-default{
	background: #ffffff;
	color: #e02042;
}

header.main-header .header-sticky.active .header-btn .btn-default::before{
	background-image: url(../images/arrow-accent.svg);
}

header.main-header .header-sticky.active .header-btn .btn-default:hover{
	background: #000000;
	color: #ffffff;
}

header.main-header .header-sticky.active .header-btn .btn-default:hover::before{
	filter: brightness(0) invert(1);
}

header.main-header .header-sticky.active .header-btn .btn-default::after{
	background: #000000;
}

.main-menu{
	width: 100%;
	display: flex !important;
	visibility: visible !important;
	align-items: center;
	justify-content: space-between;
	overflow: visible;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
	margin-left: 0;
	display: flex;
	justify-content: flex-start;
	overflow: visible;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: flex;
	width: auto;
	margin: 0;
}

.navbar{
	display: flex;
	width: 100%;
	padding: 15px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	overflow: visible;
}

.navbar-expand-lg{
	width: 100%;
	overflow: visible;
}

.header-btn{
	margin-left: 20px;
}

.main-menu ul li{
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	padding: 15px 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 10px 0 0 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: calc(100% - 10px);
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 15px 0 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 15px 0 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

/* Mega Menu Styles */
.main-menu ul li.mega-menu {
	position: static;
}

.mega-menu-container {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	width: 100%;
	background-color: var(--white-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 999;
	padding: 10px 0 0 0;
	border-radius: 0;
	text-align: left;
	pointer-events: auto;
}

.main-menu ul li.mega-menu:hover .mega-menu-container {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 0;
	pointer-events: auto;
}

.mega-menu-container:hover {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	pointer-events: auto;
}

.mega-menu-content {
	display: flex;
	justify-content: space-between;
	padding: 40px 60px;
	max-width: 1320px;
	margin: 0 auto;
	gap: 30px;
}

.mega-menu-column {
	flex: 1;
	min-width: 0;
}

.mega-menu-column h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--divider-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mega-menu-column ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	position: static !important;
	visibility: inherit !important;
	opacity: inherit !important;
	transform: none !important;
	width: auto !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.mega-menu-column ul li {
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
}

.mega-menu-column ul li a {
	display: block !important;
	padding: 8px 0 !important;
	color: var(--text-color) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	transition: all 0.3s ease !important;
	position: relative !important;
	padding-left: 0 !important;
	background-color: transparent !important;
	text-transform: none !important;
	white-space: normal !important;
}

.mega-menu-column ul li a:hover,
.mega-menu-column ul li a:focus {
	color: var(--accent-color) !important;
	padding-left: 10px !important;
	background-color: transparent !important;
}

.mega-menu-column ul li a:before {
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	margin-right: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mega-menu-column ul li a:hover:before {
	opacity: 1;
}

/* Mega Menu - Override submenu arrow for mega menu */
.main-menu ul li.mega-menu > a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

/* Mega Menu - Remove borders and fix styling when sticky header is active */
header.main-header.active-sticky-header .mega-menu-container {
	border: none !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

header.main-header.active-sticky-header .mega-menu-column {
	border: none !important;
}

header.main-header.active-sticky-header .mega-menu-column h4 {
	border-bottom: 2px solid var(--divider-color) !important;
	border-left: none !important;
	border-right: none !important;
	border-top: none !important;
}

header.main-header.active-sticky-header .mega-menu-column ul {
	border: none !important;
}

header.main-header.active-sticky-header .mega-menu-column ul li {
	border: none !important;
}

header.main-header.active-sticky-header .mega-menu-column ul li a {
	border: none !important;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.responsive-menu .slicknav_nav {
	display: none;
}

/* Hide SlickNav default icon completely */
.slicknav_btn {
	display: none !important;
}

.slicknav_icon,
.slicknav_icon-bar {
	display: none !important;
}

/* Custom Hamburger Menu Icon */
.navbar-toggle {
	display: none;
	background: transparent;
	border: 2px solid #e02042;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: relative;
	padding: 0;
	transition: all 0.3s ease;
}

.navbar-toggle:hover {
	background: #e02042;
}

.navbar-toggle:hover span {
	background: #ffffff;
}

.navbar-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #e02042;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}

.navbar-toggle span:nth-child(1) {
	top: 10px;
}

.navbar-toggle span:nth-child(2) {
	top: 18px;
}

.navbar-toggle span:nth-child(3) {
	top: 26px;
}

.navbar-toggle.active span:nth-child(1) {
	top: 18px;
	transform: translateX(-50%) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
	opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
	top: 18px;
	transform: translateX(-50%) rotate(-45deg);
}

/* Custom toggle for sticky state */
header.main-header .header-sticky.active .navbar-toggle {
	border-color: #e02042;
}

header.main-header .header-sticky.active .navbar-toggle span {
	background-color: #e02042;
}

header.main-header .header-sticky.active .navbar-toggle:hover {
	background: #e02042;
}

header.main-header .header-sticky.active .navbar-toggle:hover span {
	background-color: #ffffff;
}

.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: 16px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 12px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: #000;
	padding: 0;
	min-height: 0;
	height: auto;
	margin-top: -118px;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	z-index: 0;
}

.hero.hero-video .hero-bg-video video,
.hero.hero-video .hero-bg-video iframe{
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: calc(100% + 300px);
	border: 0;
	pointer-events: none;
	display: block;
	object-fit: cover;
}

/* Hide YouTube logo and info overlay - covers entire video to block controls */
.hero.hero-video .hero-bg-video::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 10;
	pointer-events: auto;
	cursor: default;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 280px 0 250px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero.hero-video .container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	max-width: 1320px;
	padding: 0 15px;
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted{
	margin-left: 30px;
}

/* Override button text colors for hero animated section */
.hero.hero-animated .hero-content .section-title h3,
.hero.hero-animated .hero-content .section-title h1,
.hero.hero-animated .hero-content .section-title p{
	color: var(--white-color) !important;
}

/* Hero Animated Section */
.hero.hero-animated{
	background: var(--accent-color);
	padding-top: 0;
	padding-bottom: 0;
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: -88px;
	padding-top: 88px;
	animation: backgroundColorChange 30s step-end infinite;
	box-sizing: border-box;
}

/* Remove gradient overlay for animated hero */
.hero.hero-animated::before{
	display: none;
}

.hero.hero-animated::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--accent-color);
	z-index: 3;
}

.hero.hero-animated .container{
	position: relative;
	z-index: 2;
}

/* Smaller heading sizes for animated hero */
.hero.hero-animated .section-title h1{
	font-size: 50px;
}

.hero.hero-animated .section-title h3{
	font-size: 14px;
}

.hero.hero-animated .section-title p{
	font-size: 18px;
}

/* Content slides in from left - removed global animation */
.hero-content-left{
	opacity: 1;
}

/* Individual content animations - one by one */
.hero.hero-animated .section-title h3{
	opacity: 0;
}

.hero.hero-animated .section-title h1{
	opacity: 0;
}

.hero.hero-animated .section-title p{
	opacity: 0;
}

.hero.hero-animated .hero-btn{
	opacity: 0;
}

/* Change Learn More About Us button color in hero section */
.hero.hero-animated .btn-default:not(.btn-highlighted){
	background: var(--primary-color) !important;
	color: var(--white-color) !important;
}

.hero.hero-animated .btn-default:not(.btn-highlighted)::after{
	background: var(--white-color) !important;
}

.hero.hero-animated .btn-default:not(.btn-highlighted)::before{
	background-image: url(../images/arrow-white.svg) !important;
}

.hero.hero-animated .btn-default:not(.btn-highlighted):hover{
	color: var(--primary-color) !important;
	background: transparent !important;
}

.hero.hero-animated .btn-default:not(.btn-highlighted):hover::before{
	filter: brightness(0) !important;
}

/* Fix View Products button hover in hero section */
.hero.hero-animated .btn-default.btn-highlighted{
	background-color: var(--white-color) !important;
	color: var(--accent-color) !important;
}

.hero.hero-animated .btn-default.btn-highlighted::after{
	background: var(--primary-color) !important;
}

.hero.hero-animated .btn-default.btn-highlighted::before{
	background-image: url(../images/arrow-accent.svg) !important;
}

.hero.hero-animated .btn-default.btn-highlighted:hover{
	background: var(--white-color) !important;
	color: var(--white-color) !important;
}

.hero.hero-animated .btn-default.btn-highlighted:hover::before{
	filter: brightness(0) invert(1) !important;
}

/* Forklift image slides in from right */
.hero-image-right{
	position: relative;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	min-height: 500px;
	width: 100%;
}

.hero-image-right img{
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 600px;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
}

/* Forklift Image 1 - shows first cycle */
.hero-image-right .forklift-img-1{
	opacity: 1;
	transform: translate(-50%, -50%);
}

/* Forklift Image 2 - shows second cycle */
.hero-image-right .forklift-img-2{
	opacity: 0;
	transform: translate(-50%, -50%);
}

/* First forklift image with slide animation */
@keyframes forkliftImage1Slide {
	0% {
		transform: translate(100%, -50%);
		opacity: 0;
		z-index: 2;
	}
	10% {
		transform: translate(-50%, -50%);
		opacity: 1;
		z-index: 2;
	}
	35% {
		transform: translate(-50%, -50%);
		opacity: 1;
		z-index: 2;
	}
	45% {
		transform: translate(100%, -50%);
		opacity: 0;
		z-index: 2;
	}
	50% {
		opacity: 0;
		z-index: 1;
	}
	100% {
		opacity: 0;
		z-index: 1;
	}
}

/* Second forklift image with slide animation */
@keyframes forkliftImage2Slide {
	0% {
		opacity: 0;
		z-index: 1;
	}
	50% {
		transform: translate(100%, -50%);
		opacity: 0;
		z-index: 2;
	}
	60% {
		transform: translate(-50%, -50%);
		opacity: 1;
		z-index: 2;
	}
	85% {
		transform: translate(-50%, -50%);
		opacity: 1;
		z-index: 2;
	}
	95% {
		transform: translate(100%, -50%);
		opacity: 0;
		z-index: 2;
	}
	100% {
		opacity: 0;
		z-index: 1;
	}
}

/* Keyframe Animations */
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInFromRight {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Animation loop - slow motion effect (15 seconds total) */
.hero.hero-animated .hero-image-right .forklift-img-1{
	animation: forkliftImage1Slide 30s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.hero.hero-animated .hero-image-right .forklift-img-2{
	animation: forkliftImage2Slide 30s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.hero.hero-animated .section-title h3{
	animation-iteration-count: infinite;
	animation-duration: 15s;
	animation-name: slideLoopContent1;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.hero-animated .section-title h1{
	animation-iteration-count: infinite;
	animation-duration: 15s;
	animation-name: slideLoopContent2;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.hero-animated .section-title p{
	animation-iteration-count: infinite;
	animation-duration: 15s;
	animation-name: slideLoopContent3;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.hero-animated .hero-btn{
	animation-iteration-count: infinite;
	animation-duration: 15s;
	animation-name: slideLoopContent4;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Forklift slides in first - slow motion */
@keyframes slideLoopRight {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	20% {
		transform: translateX(0);
		opacity: 1;
	}
	70% {
		transform: translateX(0);
		opacity: 1;
	}
	90% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* H3 slides in second - slow motion */
@keyframes slideLoopContent1 {
	0%, 10% {
		transform: translateX(-100%);
		opacity: 0;
	}
	25% {
		transform: translateX(0);
		opacity: 1;
	}
	70% {
		transform: translateX(0);
		opacity: 1;
	}
	85% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

/* H1 slides in third - slow motion */
@keyframes slideLoopContent2 {
	0%, 15% {
		transform: translateX(-100%);
		opacity: 0;
	}
	30% {
		transform: translateX(0);
		opacity: 1;
	}
	70% {
		transform: translateX(0);
		opacity: 1;
	}
	87% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

/* Paragraph slides in fourth - slow motion */
@keyframes slideLoopContent3 {
	0%, 20% {
		transform: translateX(-100%);
		opacity: 0;
	}
	35% {
		transform: translateX(0);
		opacity: 1;
	}
	70% {
		transform: translateX(0);
		opacity: 1;
	}
	88% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

/* Buttons slide in last - slow motion */
@keyframes slideLoopContent4 {
	0%, 25% {
		transform: translateX(-100%);
		opacity: 0;
	}
	40% {
		transform: translateX(0);
		opacity: 1;
	}
	70% {
		transform: translateX(0);
		opacity: 1;
	}
	90% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

/* Background color animation - alternates between red and blue only */
@keyframes backgroundColorChange {
	0%, 49.99% {
		background: #e02042; /* Theme Red - First cycle */
	}
	50%, 100% {
		background: #0054aa; /* Blue - Second cycle */
	}
}

/************************************/
/***       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;
}

/************************************/
/*** 05.1 Certifications Logos css ***/
/************************************/

.certifications-logos-section{
	padding: 60px 0;
	background: #ffffff;
	position: relative;
}

.certifications-logos-section::before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-color) 20%, var(--accent-color) 80%, transparent);
}

.certifications-logos-section::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-color) 20%, var(--accent-color) 80%, transparent);
}

.certifications-logos-slider{
	position: relative;
}

.certification-logo-box{
	text-align: center;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.certification-logo-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent-color), transparent, var(--accent-color)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.certification-logo-box:hover::before{
	opacity: 1;
}

.certification-logo-box:hover{
	background: var(--secondery-color);
}

.certification-logo-box img{
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.certification-logo-box:hover img{
	transform: scale(1.05);
}

.certification-logo-box i{
	margin-bottom: 15px;
	transition: all 0.3s ease;
	font-size: 80px !important;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
}

.certification-logo-box:hover i{
	transform: scale(1.05);
}

.certification-logo-box p{
	font-size: 11px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

/************************************/
/*** 05.2 MPPL in Numbers css    ***/
/************************************/

.mppl-numbers-section{
	padding: 80px 0;
	background-color: var(--white-color);
	position: relative;
}

.mppl-numbers-section .section-title{
	margin-bottom: 60px;
}

/************************************/
/***   Key Features Section css   ***/
/************************************/

.key-features-section{
	padding: 100px 0;
	background-color: var(--white-color);
}

.feature-item{
	padding: 35px 30px;
	background: var(--secondery-color);
	border-radius: 12px;
	margin-bottom: 30px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}

.feature-item:hover{
	background: var(--white-color);
	border-color: var(--accent-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon{
	width: 70px;
	height: 70px;
	background: var(--white-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
}

.feature-item:hover .feature-icon{
	background: var(--accent-color);
	transform: scale(1.1);
}

.feature-icon img{
	width: 40px;
	height: 40px;
	object-fit: contain;
	transition: all 0.4s ease;
}

.feature-item:hover .feature-icon img{
	filter: brightness(0) invert(1);
}

.feature-content h3{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.3;
	transition: all 0.3s ease;
}

.feature-item:hover .feature-content h3{
	color: var(--accent-color);
}

.feature-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-content ul li{
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.feature-content ul li::before{
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: 700;
	font-size: 18px;
}

/* Responsive Design for Key Features */
@media (max-width: 991px){
	/* Hero Animated - Tablet */
	.hero.hero-animated{
		margin-top: -88px;
		padding-top: 88px;
		padding-bottom: 20px;
		min-height: 100vh;
		height: 100vh;
		box-sizing: border-box;
	}

	.hero-image-right{
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 400px;
		overflow: visible;
	}

	.hero-image-right img{
		width: 100%;
		max-width: 450px;
		max-height: 450px;
	}

	.hero.hero-animated .section-title h1{
		font-size: 42px !important;
	}

	.hero.hero-animated .section-title h3{
		font-size: 13px !important;
	}

	.hero.hero-animated .section-title p{
		font-size: 16px !important;
	}

	.key-features-section{
		padding: 80px 0;
	}

	.feature-item{
		padding: 30px 25px;
		min-height: 260px;
	}

	.feature-content h3{
		font-size: 18px;
	}

	.feature-content ul li{
		font-size: 13.5px;
	}
}

@media (max-width: 767px){
	.key-features-section{
		padding: 60px 0;
	}

	.feature-item{
		padding: 25px 20px;
		min-height: auto;
		margin-bottom: 20px;
	}

	.feature-icon{
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}

	.feature-icon img{
		width: 35px;
		height: 35px;
	}

	.feature-content h3{
		font-size: 17px;
		margin-bottom: 12px;
	}

	.feature-content ul li{
		font-size: 13px;
		margin-bottom: 6px;
	}
}

@media (max-width: 575px){
	.key-features-section{
		padding: 50px 0;
	}

	.feature-item{
		padding: 20px 18px;
	}

	.feature-icon{
		width: 55px;
		height: 55px;
	}

	.feature-icon img{
		width: 30px;
		height: 30px;
	}

	.feature-content h3{
		font-size: 16px;
	}

	.feature-content ul li{
		font-size: 12.5px;
	}
}

.mppl-counter-box{
	text-align: center;
	padding: 40px 20px;
	background-color: var(--secondery-color);
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	margin-bottom: 30px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mppl-counter-box:hover{
	background-color: var(--accent-color);
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(224, 32, 66, 0.2);
}

.mppl-counter-box:hover .counter-icon i{
	color: var(--white-color);
}

.mppl-counter-box:hover .counter-content h3,
.mppl-counter-box:hover .counter-content p{
	color: var(--white-color);
}

.counter-icon{
	margin-bottom: 20px;
}

.counter-icon i{
	font-size: 50px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.counter-content h3{
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1;
	transition: all 0.3s ease-in-out;
}

.counter-content p{
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 0;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.mppl-numbers-btn{
	margin-top: 30px;
}

/************************************/
/*** Company Timeline Vertical ***/
/************************************/

/* Custom Scroll Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes dotPulse {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideReveal {
	from {
		opacity: 0;
		transform: translateX(-30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes rotateIn {
	from {
		opacity: 0;
		transform: rotate(-180deg) scale(0.5);
	}
	to {
		opacity: 1;
		transform: rotate(0deg) scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3) translateY(-40px);
	}
	50% {
		transform: scale(1.05) translateY(5px);
	}
	70% {
		transform: scale(0.95) translateY(-5px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes flipIn {
	from {
		opacity: 0;
		transform: perspective(1000px) rotateY(-90deg);
	}
	to {
		opacity: 1;
		transform: perspective(1000px) rotateY(0deg);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.1);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes expandIn {
	from {
		opacity: 0;
		transform: scaleX(0);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}

@keyframes blurIn {
	from {
		opacity: 0;
		filter: blur(20px);
		transform: scale(1.2);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: scale(1);
	}
}

@keyframes swingIn {
	0% {
		opacity: 0;
		transform: translateX(-100px) rotate(-30deg);
	}
	60% {
		transform: translateX(20px) rotate(5deg);
	}
	100% {
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
}

@keyframes spiralIn {
	from {
		opacity: 0;
		transform: translate(-50px, 50px) rotate(-360deg) scale(0.5);
	}
	to {
		opacity: 1;
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
}

@keyframes glowPulse {
	0% {
		opacity: 0;
		box-shadow: 0 0 0 rgba(255, 255, 255, 0);
	}
	50% {
		box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
	}
	100% {
		opacity: 1;
		box-shadow: 0 0 0 rgba(255, 255, 255, 0);
	}
}

/* Continuous In-Out Animations */
@keyframes floatUpDown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes scaleBreath {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes rotateContinuous {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes slideLeftRight {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

@keyframes pulseGlow {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}
	50% {
		box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

@keyframes wobble {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(3deg);
	}
	75% {
		transform: rotate(-3deg);
	}
}

@keyframes heartbeat {
	0%, 100% {
		transform: scale(1);
	}
	10% {
		transform: scale(1.1);
	}
	20% {
		transform: scale(1);
	}
	30% {
		transform: scale(1.1);
	}
	40% {
		transform: scale(1);
	}
}

@keyframes fadeInOut {
	0%, 100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* Timeline Section - Fixed Height to Show At Least One Item */
.company-timeline-section{
	padding: 0;
	background: var(--primary-color);
	overflow: hidden;
	position: relative;
	height: 900px;
	display: flex;
	flex-direction: column;
}

.company-timeline-section .container{
	padding-top: 60px;
	padding-bottom: 0;
	flex-shrink: 0;
}

.company-timeline-section .section-title h3,
.company-timeline-section .section-title h2{
	color: var(--white-color);
}

.company-timeline-section .section-row{
	margin-bottom: 30px;
}

/* Timeline Filter Buttons */
.timeline-filters{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.timeline-filter-btn{
	padding: 14px 32px;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.timeline-filter-btn:hover{
	background: rgba(255, 255, 255, 0.12);
	color: var(--white-color);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.timeline-filter-btn.active{
	background: rgba(255, 255, 255, 0.15);
	color: var(--white-color);
	border-color: var(--white-color);
}

/* Timeline Wrapper - Scrollable 700px Section */
.timeline-wrapper{
	position: relative;
	padding: 40px 0 60px;
	max-width: 1600px;
	margin: 0 auto;
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

/* Hide scrollbar completely */
.timeline-wrapper::-webkit-scrollbar{
	width: 0;
	display: none;
}

/* Hide scrollbar for Firefox */
.timeline-wrapper{
	scrollbar-width: none;
}

/* Hide scrollbar for IE/Edge */
.timeline-wrapper{
	-ms-overflow-style: none;
}

/* Timeline Container */
.timeline-items-container{
	position: relative;
	padding: 0 60px;
	min-height: 100%;
}

/* Vertical LEFT Line - Subtle gray */
.timeline-line{
	position: absolute;
	left: 80px;
	top: 20px;
	bottom: 20px;
	width: 2px;
	background: rgba(255, 255, 255, 0.15);
	z-index: 1;
}

/* Timeline Item - Clean Layout */
.timeline-item{
	position: relative;
	margin-bottom: 120px;
	padding-left: 140px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"dot dot"
		"year image"
		"desc image";
	gap: 0 60px;
	align-items: start;
}

.timeline-item.hidden{
	display: none !important;
}

/* Timeline Dot - Small circle on line */
.timeline-dot{
	grid-area: dot;
	position: absolute;
	top: 8px;
	left: -60px;
	width: 14px;
	height: 14px;
	background: rgba(255, 255, 255, 0.25);
	border: 3px solid var(--primary-color);
	border-radius: 50%;
	z-index: 10;
	opacity: 0;
	transform: scale(0.3);
}

.timeline-item.animate-in .timeline-dot{
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
	animation: dotPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, glowPulse 1s ease-out;
}

/* Alternate dot animations for variety with continuous loops */
.timeline-item:nth-child(3n+1).animate-in .timeline-dot{
	animation:
		bounceIn 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
		pulseGlow 3s ease-in-out infinite 0.7s;
}

.timeline-item:nth-child(3n+2).animate-in .timeline-dot{
	animation:
		zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
		scaleBreath 2s ease-in-out infinite 0.6s;
}

.timeline-item:nth-child(3n+3).animate-in .timeline-dot{
	animation:
		rotateIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
		heartbeat 2.5s ease-in-out infinite 0.7s;
}

.timeline-item:hover .timeline-dot{
	background: var(--white-color);
	transform: scale(1.4);
	box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.15);
}

/* Product dots - Blue */
.timeline-item.timeline-product .timeline-dot{
	background: rgba(33, 150, 243, 0.4);
}

.timeline-item.timeline-product.animate-in .timeline-dot{
	background: #2196F3;
}

/* Facilities dots - Purple */
.timeline-item.timeline-facilities .timeline-dot{
	background: rgba(156, 39, 176, 0.4);
}

.timeline-item.timeline-facilities.animate-in .timeline-dot{
	background: #9C27B0;
}

/* Future dots - Orange */
.timeline-item.timeline-future .timeline-dot{
	background: rgba(255, 152, 0, 0.4);
}

.timeline-item.timeline-future.animate-in .timeline-dot{
	background: #FF9800;
}

/* Timeline Year - Large text next to dot */
.timeline-year{
	grid-area: year;
	font-size: 72px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.15);
	line-height: 1;
	margin-bottom: 20px;
	letter-spacing: -2px;
	opacity: 0;
	transform: translateX(-60px);
}

.timeline-item.animate-in .timeline-year{
	color: rgba(255, 255, 255, 0.4);
	animation:
		fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards,
		fadeInOut 4s ease-in-out infinite 1s;
}

.timeline-item:hover .timeline-year{
	color: rgba(255, 255, 255, 0.6);
	transform: translateX(5px);
}

/* Timeline Description - Clean text block */
.timeline-description{
	grid-area: desc;
	max-width: 600px;
	opacity: 0;
	transform: translateY(40px);
}

.timeline-item.animate-in .timeline-description{
	animation:
		fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards,
		slideLeftRight 5s ease-in-out infinite 1.2s;
}

.timeline-description h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--white-color);
	margin: 0 0 16px 0;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.timeline-description p{
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	transition: color 0.3s ease;
}

.timeline-item:hover .timeline-description h3{
	color: #FFFFFF;
}

.timeline-item:hover .timeline-description p{
	color: rgba(255, 255, 255, 0.85);
}

/* Timeline Image - Large on right side */
.timeline-image{
	grid-area: image;
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: translateX(60px) scale(0.9);
}

.timeline-item.animate-in .timeline-image{
	animation:
		fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards,
		floatUpDown 4s ease-in-out infinite 1.3s;
}

/* Alternate image continuous animations */
.timeline-item:nth-child(2n).animate-in .timeline-image{
	animation:
		fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards,
		scaleBreath 3.5s ease-in-out infinite 1.3s;
}

.timeline-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:hover .timeline-image{
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	transform: translateY(-5px);
}

.timeline-item:hover .timeline-image img{
	transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1200px){
	.timeline-year{
		font-size: 60px;
	}

	.timeline-description h3{
		font-size: 24px;
	}

	.timeline-description p{
		font-size: 16px;
	}

	.timeline-image{
		height: 350px;
	}
}

@media (max-width: 991px){
	.timeline-item{
		grid-template-columns: 1fr;
		grid-template-areas:
			"dot"
			"year"
			"desc"
			"image";
		gap: 20px;
		padding-left: 100px;
		margin-bottom: 100px;
	}

	.timeline-line{
		left: 50px;
	}

	.timeline-dot{
		left: -50px;
	}

	.timeline-year{
		font-size: 52px;
	}

	.timeline-description h3{
		font-size: 22px;
	}

	.timeline-image{
		height: 320px;
	}
}

@media (max-width: 767px){
	.company-timeline-section{
		padding: 40px 0;
		height: auto;
		min-height: 100vh;
	}

	.timeline-wrapper{
		padding: 40px 0 60px;
		overflow-y: visible;
	}

	.timeline-item{
		padding-left: 70px;
		margin-bottom: 80px;
	}

	/* Reduce animations on mobile for performance */
	.timeline-item.animate-in .timeline-dot{
		animation: dotPulse 0.5s ease-out forwards !important;
	}

	.timeline-item.animate-in .timeline-year{
		animation: fadeInLeft 0.6s ease-out 0.1s forwards !important;
	}

	.timeline-item.animate-in .timeline-description{
		animation: fadeInUp 0.6s ease-out 0.2s forwards !important;
	}

	.timeline-item.animate-in .timeline-image{
		animation: fadeInRight 0.7s ease-out 0.2s forwards !important;
	}

	.timeline-line{
		left: 30px;
	}

	.timeline-dot{
		left: -40px;
		width: 12px;
		height: 12px;
		border-width: 2px;
	}

	.timeline-year{
		font-size: 42px;
		margin-bottom: 15px;
	}

	.timeline-description h3{
		font-size: 20px;
		margin-bottom: 12px;
	}

	.timeline-description p{
		font-size: 15px;
		line-height: 1.6;
	}

	.timeline-image{
		height: 260px;
		border-radius: 15px;
	}

	.timeline-filter-btn{
		padding: 11px 24px;
		font-size: 12px;
	}
}

@media (max-width: 575px){
	.timeline-item{
		padding-left: 60px;
		margin-bottom: 70px;
	}

	.timeline-line{
		left: 25px;
	}

	.timeline-dot{
		left: -35px;
		width: 10px;
		height: 10px;
	}

	.timeline-year{
		font-size: 36px;
	}

	.timeline-description h3{
		font-size: 18px;
	}

	.timeline-description p{
		font-size: 14px;
	}

	.timeline-image{
		height: 220px;
		border-radius: 12px;
	}
}

/************************************/
/***  Managing Director Message   ***/
/************************************/

.md-message-section{
	padding: 120px 0;
	background: linear-gradient(135deg, var(--secondery-color) 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.md-message-section::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(124, 135, 127, 0.05));
	pointer-events: none;
}

.md-message-content{
	position: relative;
	z-index: 2;
}

.md-message-content .section-title h3{
	color: var(--accent-color);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.md-message-content .section-title h2{
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
	line-height: 1.3;
}

.md-message-text{
	margin-bottom: 35px;
}

.md-message-text p{
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
	text-align: justify;
}

.md-signature{
	margin-top: 35px;
	padding-left: 25px;
	border-left: 4px solid var(--accent-color);
}

.md-signature h4{
	font-size: 16px;
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 8px;
	font-style: italic;
}

.md-signature h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.md-signature p{
	font-size: 15px;
	color: var(--accent-color);
	margin-bottom: 0;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.md-tagline{
	background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
	padding: 25px 30px;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
	margin-top: 40px;
}

.md-tagline::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.md-tagline p{
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 0;
	text-align: left;
}

.md-tagline p strong{
	font-weight: 700;
	font-size: 18px;
	display: block;
	margin-bottom: 5px;
}

.md-image-box{
	position: relative;
	padding: 0;
}

.md-image{
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.2),
		0 0 0 10px rgba(124, 135, 127, 0.1);
	background: var(--white-color);
	padding: 20px;
}

.md-image figure{
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
}

.md-image img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	transition: transform 0.5s ease;
	min-height: 400px;
	object-fit: cover;
}

.md-image:hover img{
	transform: scale(1.08);
}

/* Responsive Design for MD Message */
@media (max-width: 991px){
	.md-message-section{
		padding: 80px 0;
	}

	.md-message-content .section-title h2{
		font-size: 36px;
	}

	.md-message-text p{
		font-size: 15px;
	}

	.md-signature h3{
		font-size: 24px;
	}

	.md-tagline{
		padding: 20px 25px;
		margin-top: 30px;
	}

	.md-tagline p{
		font-size: 15px;
	}

	.md-tagline p strong{
		font-size: 17px;
	}

	.md-image-box{
		margin-top: 40px;
	}

	.md-image img{
		min-height: 350px;
	}
}

@media (max-width: 767px){
	.md-message-section{
		padding: 60px 0;
	}

	.md-message-content .section-title h2{
		font-size: 32px;
	}

	.md-message-text p{
		font-size: 14px;
		line-height: 1.7;
	}

	.md-signature{
		padding-left: 20px;
		border-left-width: 3px;
		margin-top: 25px;
	}

	.md-signature h3{
		font-size: 22px;
	}

	.md-tagline{
		padding: 18px 20px;
		margin-top: 25px;
	}

	.md-tagline p{
		font-size: 14px;
	}

	.md-tagline p strong{
		font-size: 16px;
	}

	.md-image-box{
		margin-top: 30px;
		padding: 0;
	}

	.md-image{
		padding: 15px;
	}

	.md-image img{
		min-height: 300px;
	}
}

@media (max-width: 575px){
	.md-message-section{
		padding: 50px 0;
	}

	.md-message-content .section-title h2{
		font-size: 28px;
	}

	.md-message-text p{
		font-size: 13.5px;
		text-align: left;
	}

	.md-signature{
		padding-left: 15px;
		margin-top: 20px;
	}

	.md-signature h4{
		font-size: 14px;
	}

	.md-signature h3{
		font-size: 20px;
	}

	.md-signature p{
		font-size: 13px;
	}

	.md-tagline{
		padding: 15px 18px;
		margin-top: 20px;
	}

	.md-tagline p{
		font-size: 13px;
	}

	.md-tagline p strong{
		font-size: 15px;
	}

	.md-image img{
		min-height: 250px;
	}
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box{
	background-color: transparent;
}

.why-choose-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content{
	width: calc(100% - 80px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2{
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure{
	display: block;
}

.why-choose-img-1{
	width: calc(57% - 10px);
}

.why-choose-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2{
	width: calc(43% - 10px);
}

.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3{
	width: calc(67% - 10px);
}

.why-choose-img-3 img{
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4{
	width: calc(33% - 10px);
}

.why-choose-img-4 img{
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a{
	display: block;
	cursor: none;
}

.service-image a figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-btn{
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a{
	background-color: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover{
	background-color: var(--primary-color);
}

.service-btn a img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(0)
}

.service-content{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn{
	text-align: center;
	margin-top: 20px;
}

/************************************/
/*** Modern Industries Section    ***/
/************************************/

.industries-served-modern {
	padding: 100px 0;
	background: var(--white-color);
}

/* Section Header */
.industries-header {
	margin-bottom: 60px;
}

.section-title-modern {
	position: relative;
}

.label-badge {
	display: inline-block;
	padding: 8px 20px;
	background: var(--secondery-color);
	color: var(--text-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
	margin-bottom: 20px;
}

.section-title-modern h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: var(--primary-color);
}

.section-title-modern .accent-text {
	color: var(--accent-color);
	position: relative;
}

.section-description-modern {
	padding-top: 20px;
}

.section-description-modern p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
	opacity: 0.8;
}

/* Industries Grid */
.industries-grid {
	margin-bottom: 60px;
}

.industries-grid .row.g-4 {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 30px;
}

/* Industry Card */
.industry-card-modern {
	position: relative;
	height: 100%;
	background: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.industry-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

/* Card Image */
.industry-card-image {
	position: relative;
	height: 320px;
	overflow: hidden;
}

.industry-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-modern:hover .industry-card-image img {
	transform: scale(1.1);
}

/* Gradient Overlay */
.industry-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	opacity: 0.6;
	transition: opacity 0.4s ease;
}

.industry-card-modern:hover .industry-overlay {
	opacity: 0.8;
}

/* Industry Icon */
.industry-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.5) rotate(-180deg);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-modern:hover .industry-icon {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.industry-icon svg {
	color: var(--white-color);
	width: 32px;
	height: 32px;
}

/* Card Content */
.industry-card-content {
	padding: 35px 30px;
	position: relative;
}

.industry-number {
	position: absolute;
	top: -25px;
	right: 30px;
	font-size: 64px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.08);
	line-height: 1;
	transition: all 0.4s ease;
}

.industry-card-modern:hover .industry-number {
	color: rgba(224, 32, 66, 0.15);
	transform: scale(1.1);
}

.industry-card-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 15px 0;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.industry-card-modern:hover .industry-card-content h3 {
	color: var(--accent-color);
}

.industry-card-content p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
	opacity: 0.75;
	transition: opacity 0.3s ease;
}

.industry-card-modern:hover .industry-card-content p {
	opacity: 1;
}

/* Arrow Icon */
.industry-arrow {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translate(10px, 10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-modern:hover .industry-arrow {
	opacity: 1;
	transform: translate(0, 0);
	background: var(--accent-color);
}

.industry-arrow svg {
	color: var(--white-color);
	width: 24px;
	height: 24px;
}

/* CTA Button */
.industries-cta {
	text-align: center;
	margin-top: 40px;
}

.btn-default-modern {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.btn-default-modern:hover::before {
	width: 100%;
}

.btn-default-modern:hover {
	color: var(--white-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(224, 32, 66, 0.3);
}

.btn-default-modern svg {
	transition: transform 0.3s ease;
}

.btn-default-modern:hover svg {
	transform: translateX(5px);
}

/************************************/
/*** Modern Products Section      ***/
/************************************/

.products-section-modern {
	padding: 100px 0;
	background: var(--secondery-color);
}

/* Section Header */
.products-header {
	margin-bottom: 50px;
}

/* Filter Navigation */
.products-filter-nav {
	margin-bottom: 50px;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--white-color);
	border: 2px solid transparent;
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.filter-pill::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: width 0.3s ease;
	z-index: 0;
}

.filter-pill span {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.filter-pill:hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-pill.active-pill {
	background: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
}

.pill-count {
	min-width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 600;
	padding: 0 6px;
}

.filter-pill.active-pill .pill-count {
	background: rgba(255, 255, 255, 0.2);
}

/* Products Grid */
.products-grid-modern {
	margin-bottom: 60px;
}

.products-grid-modern .row.g-4 {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 30px;
}

/* Equal height product cards - Complete flexbox chain */
.products-grid-modern .row {
	display: flex;
	flex-wrap: wrap;
}

/* Force columns to stretch to full row height */
.products-grid-modern .row > .project-item-box {
	display: flex;
	flex-direction: column;
	align-self: stretch;
}

/* Ensure card fills the column */
.products-grid-modern .product-card-modern {
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Ensure wrapper fills the card */
.products-grid-modern .product-card-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Ensure info section grows to fill space after image */
.products-grid-modern .product-card-info {
	flex: 1;
}

/* Product Card */
.product-card-modern {
	position: relative;
	height: 100%;
	background: var(--white-color);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.product-card-modern:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/* Product Image */
.product-card-image {
	position: relative;
	height: 340px;
	overflow: hidden;
}

.product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-card-image img {
	transform: scale(1.08);
}

/* Product Overlay */
.product-overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
	opacity: 0.7;
	transition: opacity 0.4s ease;
}

.product-card-modern:hover .product-overlay-gradient {
	opacity: 0.85;
}

/* Category Tag */
.product-category-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 6px;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hover Icon */
.product-hover-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.product-card-modern:hover .product-hover-icon {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.product-hover-icon svg {
	color: var(--white-color);
	width: 32px;
	height: 32px;
}

/* Hide the hover arrow icon on product images */
.product-hover-icon {
	display: none !important;
}

/* Product Info */
.product-card-info {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-info-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
	gap: 15px;
}

.product-card-info h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.3;
	flex: 1;
	transition: color 0.3s ease;
}

.product-card-modern:hover .product-card-info h3 {
	color: var(--accent-color);
}

.product-arrow-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: var(--secondery-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.product-card-modern:hover .product-arrow-icon {
	background: var(--accent-color);
	transform: rotate(45deg);
}

.product-arrow-icon svg {
	color: var(--primary-color);
	width: 20px;
	height: 20px;
	transition: color 0.3s ease;
}

.product-card-modern:hover .product-arrow-icon svg {
	color: var(--white-color);
}

.product-card-info p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0 0 20px 0;
	opacity: 0.8;
	height: 48px;
	overflow: hidden;
}

/* Feature Tags */
.product-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.feature-tag {
	display: inline-block;
	padding: 6px 14px;
	background: var(--secondery-color);
	color: var(--text-color);
	font-size: 13px;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.product-card-modern:hover .feature-tag {
	background: rgba(224, 32, 66, 0.1);
	color: var(--accent-color);
}

/* View All Button */
.products-view-all {
	text-align: center;
	margin-top: 40px;
}

.btn-outline-modern {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 32px;
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-outline-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.btn-outline-modern:hover::before {
	left: 0;
}

.btn-outline-modern:hover {
	color: var(--white-color);
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-icon-circle {
	width: 30px;
	height: 30px;
	min-width: 30px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.btn-outline-modern:hover .btn-icon-circle {
	background: var(--white-color);
}

.btn-icon-circle svg {
	color: var(--white-color);
	width: 16px;
	height: 16px;
	transition: color 0.3s ease;
}

.btn-outline-modern:hover .btn-icon-circle svg {
	color: var(--primary-color);
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
    overflow: hidden;
	z-index: 1;
}

.intro-video-image a{
	display: block;
	cursor: none;
}

.intro-video-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover{
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project{
	padding: 100px 0 70px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after{
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after{
	transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn{
	position: absolute;	
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);	
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);	
}

.project-btn a{
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img{
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover{
	background: var(--primary-color);
}

.project-btn a:hover img{
	transform: rotate(0deg);
}

.project-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
}

.project-content{
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2{
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2{
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a{
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work{
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item{
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box{
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img{
	max-width: 50px;
}

.how-we-work-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p{
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo{
	text-align: center;
}

.how-work-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill{
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no{
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress{
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image{
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1{
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure{
	display: block;
}

.our-skill-img-1 img{
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2{
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img{
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3{
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img{
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: var(--secondery-color);
}

.our-testimonials .container-fluid{
	padding: 0;
}

.our-testimonials-image{
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

.our-testimonial-content{
	padding: 100px;
}

.our-testimonial-content .section-title{
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider{
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter{
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2{
	font-size: 58px;
}

.testimonial-client-rating{
	display: inline-block;
	background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i{
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p{
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 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%);
}

.our-blog-footer{
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer{
	padding: 0;
	background: var(--primary-color);
}

.main-footer .footer-header{
	background-color: #ffffff;
	border-top: 3px solid #e02042;
	border-bottom: none;
	margin-bottom: 0;
	padding: 40px 0;
}

.footer-logo{
	text-align: center;
}

.footer-logo img{
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.footer-content{
	padding: 80px 0 0;
}

.footer-social-links{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.footer-social-link-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: #e02042;
}

.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: #e02042;
    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: #ffffff;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: #c01838;
}

.footer-social-links ul li a:hover i{
	color: #ffffff;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li a{
	display: block;
	color: inherit;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i{
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content{
	width: calc(100% - 50px);
}

.footer-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form button{
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i{
	color: 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;
}

/************************************/
/*** 14.1 Scroll To Top Button  ***/
/************************************/

.scroll-to-top{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #e02042;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(224, 32, 66, 0.3);
}

.scroll-to-top i{
	color: #ffffff;
	font-size: 20px;
}

.scroll-to-top:hover{
	background-color: #c01838;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(224, 32, 66, 0.4);
}

.scroll-to-top.show{
	opacity: 1;
	visibility: visible;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 180px 0 130px;
	margin-top: -118px;
}

/* Page-Specific Breadcrumb Backgrounds */
.page-header.about-bg{
	background-image: url('../images/management-team-meeting.jpg');
	background-position: top;
}

.page-header.products-bg{
	background-image: url('../images/yellow-bags-production.jpg');
}

.page-header.product-detail-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-u-panel-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-4-panel-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-baffle-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-type-c-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-un-certified-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-tunnel-loop-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-pp-sacks-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.product-pp-fabric-bg{
	background-image: url('../images/circular-loom-floor-wide.jpg');
}

.page-header.industries-bg{
	background-image: url('../images/fibc-warehouse-storage.jpg');
}

.page-header.quality-bg{
	background-image: url('../images/fabric-testing-equipment.jpg');
}

.page-header.certifications-bg{
	background-image: url('../images/testing-equipment.jpg');
}

.page-header.sustainability-bg{
	background-image: url('../images/production-floor-assembly.jpg');
}

.page-header.blog-bg{
	background-image: url('../images/lohia-fabric-production.jpg');
}

.page-header.contact-bg{
	background-image: url('../images/facility-aerial-view.jpg');
}

.page-header.quote-bg{
	background-image: url('../images/forklift-fibc-handling.jpg');
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0.5) 0%, rgba(25, 35, 36, 0.7) 100%);
    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 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box{
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item{
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before{
	display: none;
}

.vision-mission-item .icon-box{
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.vision-mission-item:hover .icon-box:before{
	transform: scale(1);
}

.vision-mission-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.vision-mission-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p{
	margin: 0;
}

.best-selling{
	background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img{
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure{
	display: block;
}

.best-selling-content-img img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title{
	margin-bottom: 0;
}

.best-selling-iamge img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image figure{
	display: block;
}

.team-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img{
	transform: scale(1.1);
}

.team-readmore-btn{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover{
	background-color: var(--primary-color);
}

.team-readmore-btn img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img{
	transform: rotate(0deg);
}

.team-content{
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p{
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	margin-right: 70px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq-accordion .accordion-body{
	padding-right: 35px;
}

.faq-accordion .accordion-body p{
	margin: 0;
}

.our-faqs-image{
	text-align: right;
}

.our-faqs-image figure{
	display: block;
}

.our-faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.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;
}

/* Industry Detail Sections */
.industry-detail-section .industry-detail-content h2{
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 700;
}

.industry-detail-section .industry-detail-content p{
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.industry-detail-section .industry-features{
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.industry-detail-section .industry-features li{
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 15px;
	padding-left: 35px;
	position: relative;
}

.industry-detail-section .industry-features li i{
	position: absolute;
	left: 0;
	top: 3px;
	color: var(--brand-red);
	font-size: 18px;
}

.industry-detail-section .industry-features li strong{
	color: var(--primary-color);
	font-weight: 600;
}

.industry-detail-image{
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 450px;
	width: 100%;
}

.industry-detail-image figure{
	height: 100%;
	width: 100%;
	margin: 0;
}

.industry-detail-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	transition: transform 0.5s ease;
}

.industry-detail-image:hover img{
	transform: scale(1.05);
}

/* Industries Overview Cards - Make all images same size */
.page-services .service-item .service-image{
	height: 280px;
	overflow: hidden;
}

.page-services .service-item .service-image figure{
	height: 100%;
	margin: 0;
}

.page-services .service-item .service-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.other-industries-section .other-industry-card{
	transition: all 0.3s ease;
	padding: 30px;
	background: #000000 !important;
	border-radius: 10px;
	margin-bottom: 20px;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.other-industries-section .other-industry-card i{
	font-size: 48px;
	color: white;
	margin-bottom: 20px;
}

.other-industries-section .other-industry-card h4{
	color: white;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
}

.other-industries-section .other-industry-card p{
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

.other-industries-section .other-industry-card:hover{
	background: #1a1a1a !important;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Other Industries Section Button Styles */
.other-industries-section .btn-default{
	background: white;
	color: var(--primary-color);
	border: 2px solid white;
	padding: 16px 40px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.other-industries-section .btn-default:hover{
	background: transparent;
	color: white;
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/************************************/
/***    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 150px 0;
}

/* Blog Slider Styles */
.blog-slider-section{
	position: relative;
	width: 100%;
	margin-top: 40px;
}

.blog-slider{
	position: relative;
	width: 100%;
	overflow: visible;
}

.blog-slider .swiper-wrapper{
	padding-bottom: 50px;
}

.blog-slider .swiper-slide{
	height: auto;
}

.blog-slider .swiper-slide .service-item{
	height: 100%;
	margin-bottom: 0;
}

/* Blog Slider Navigation Buttons */
.blog-slider-navigation{
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.blog-button-prev,
.blog-button-next{
	width: 45px;
	height: 45px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.blog-button-prev:hover,
.blog-button-next:hover{
	background-color: var(--primary-color);
	transform: scale(1.1);
}

.blog-button-prev::after,
.blog-button-next::after{
	content: '';
	width: 14px;
	height: 14px;
	border-top: 2.5px solid var(--white-color);
	border-right: 2.5px solid var(--white-color);
	position: absolute;
}

.blog-button-prev::after{
	transform: rotate(-135deg);
	left: 17px;
}

.blog-button-next::after{
	transform: rotate(45deg);
	right: 17px;
}

.blog-button-prev.swiper-button-disabled,
.blog-button-next.swiper-button-disabled{
	opacity: 0.35;
	cursor: not-allowed;
}

/* Blog Slider Pagination */
.blog-pagination{
	text-align: center;
	margin-top: 20px;
	position: relative;
	z-index: 10;
}

.blog-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: var(--accent-color);
	opacity: 0.4;
	transition: all 0.3s ease;
	margin: 0 4px;
	border-radius: 50%;
}

.blog-pagination .swiper-pagination-bullet-active{
	background: var(--primary-color);
	opacity: 1;
	width: 28px;
	border-radius: 5px;
}

/* Responsive Adjustments for Blog Slider */
@media (max-width: 1199px){
	.blog-slider-navigation{
		right: 10px;
	}
}

@media (max-width: 767px){
	.blog-button-prev,
	.blog-button-next{
		width: 40px;
		height: 40px;
	}

	.blog-button-prev::after,
	.blog-button-next::after{
		width: 12px;
		height: 12px;
		border-top: 2px solid var(--white-color);
		border-right: 2px solid var(--white-color);
	}

	.blog-button-prev::after{
		left: 15px;
	}

	.blog-button-next::after{
		right: 15px;
	}

	.blog-slider-navigation{
		right: 5px;
		gap: 10px;
	}

	.blog-pagination{
		margin-top: 15px;
	}

	.blog-pagination .swiper-pagination-bullet{
		width: 8px;
		height: 8px;
		margin: 0 3px;
	}

	.blog-pagination .swiper-pagination-bullet-active{
		width: 24px;
	}
}

@media (max-width: 575px){
	.blog-slider-section{
		margin-top: 30px;
	}
}

.blog-meta{
	display: flex;
	gap: 15px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}


.blog-date{
	color: var(--text-color);
	font-size: 14px;
	opacity: 0.7;
}

/* Blog meta styling for dark backgrounds (service-content overlay) */
.service-content .blog-date{
	color: var(--white-color);
	opacity: 0.85;
}

.service-content .blog-date:before{
	content: '\f017';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	margin-right: 6px;
	color: var(--white-color);
}

.service-content .blog-category{
	background: var(--accent-color);
	color: var(--white-color);
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 80px;
    letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project{
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-single-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item{
	display: flex;
	align-items: center;
    margin-bottom: 30px;
}

.project-detail-item:last-child{
	margin-bottom: 0;
}

.project-detail-item .icon-box{
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before{
	transform: scale(1);
}

.project-detail-item .icon-box i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i{
	color: var(--white-color);
}

.project-detail-content{
	width: calc(100% - 70px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
}

.project-single-image img{
	width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.project-entry p{
	margin-bottom: 20px;
}

.project-entry p:last-child{
	margin-bottom: 0;
}

.project-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img{
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure{
    display: block;
	cursor: none;
}

.project-gallery-img figure img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-image{
	height: 100%;
}

.contact-us-image figure{
	height: 100%;
	display: block;
}

.contact-us-image img{
	height: 100%;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}

.contact-us-form{
	margin-left: 30px;
}

.contact-form .form-control{
    font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
	border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.contact-form .form-control::placeholder{
	font-weight: 400;
}

/* Contact Form Messages */
#msgSubmit{
	margin-top: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	display: block;
}

#msgSubmit.hidden{
	display: none;
}

#msgSubmit.text-success{
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

#msgSubmit.text-danger{
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

#msgSubmit i{
	margin-right: 8px;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map .section-title{
	width: 100%;
	max-width: 800px;
	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;
}

/************************************/
/***  Our Associations Section    ***/
/************************************/

.our-associations-section{
	padding: 120px 0;
	background: var(--white-color);
	position: relative;
}

.our-associations-section .section-row{
	margin-bottom: 20px;
}

.our-associations-section .section-title h3{
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 14px;
	color: var(--accent-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.our-associations-section .section-title h2{
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 800;
}

.our-associations-section .section-title h2 span{
	color: var(--accent-color);
}

.our-associations-section .section-title-content p{
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	opacity: 0.85;
}

/* Association Box */
.association-box{
	background: var(--white-color);
	border-radius: 20px;
	padding: 50px 30px 35px;
	text-align: center;
	transition: all 0.4s ease;
	border: 2px solid var(--divider-color);
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.association-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.association-box:hover::before{
	transform: scaleX(1);
}

.association-box:hover{
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	border-color: var(--accent-color);
}

/* Association Logo */
.association-logo{
	margin-bottom: 30px;
	position: relative;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.association-logo figure{
	margin: 0;
	transition: transform 0.4s ease;
	overflow: visible;
}

.association-logo img{
	max-height: 120px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.4s ease;
}

.association-box:hover .association-logo img{
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* Association Content */
.association-content h3{
	font-size: 24px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.association-box:hover .association-content h3{
	color: var(--accent-color);
}

.association-content p{
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-color);
	opacity: 0.7;
	margin: 0;
	font-weight: 500;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) and (min-width: 1025px){

	/* About Page Creative Section - Small Laptops */
	.page-about-us{
		padding: 100px 0 !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 48px !important;
	}

	.page-about-us .col-lg-7 > div{
		height: 550px !important;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 56px !important;
	}

	.page-about-us div[style*="30+"] p{
		font-size: 12px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 40px !important;
	}

	.page-about-us .col-lg-5 > div{
		padding-left: 40px !important;
	}
}

@media only screen and (max-width: 1366px){

	.hero-content .section-title h3{
		font-size: 16px;
	}

	.hero-content .section-title h1{
		font-size: 48px;
		line-height: 1.2;
	}

	.hero-content .section-title p{
		font-size: 16px;
	}

	.our-testimonial-content{
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px){

	.hero-content .section-title h3{
		font-size: 14px;
	}

	.hero-content .section-title h1{
		font-size: 40px;
		line-height: 1.2;
	}

	.hero-content .section-title p{
		font-size: 15px;
	}

	.main-menu ul li{
		margin: 0;
	}

	.our-testimonial-content{
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
	/*
	 * iPad and Tablets Responsive Layout
	 * Covers: iPad (768px), iPad Air (820px), iPad Pro 11" (834px),
	 * iPad Pro 12.9" (1024px), and all tablets in portrait/landscape
	 * Forces single column stacked layout with centered content
	 */
	.page-about-us{
		padding: 80px 0 !important;
	}

	.page-about-us .row.mb-5{
		margin-bottom: 40px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 44px !important;
	}

	/* Force full width columns */
	.page-about-us .col-lg-7,
	.page-about-us .col-lg-5{
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}

	/* Images section */
	.page-about-us .col-lg-7 > div{
		height: auto !important;
		position: relative !important;
		margin-bottom: 50px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		position: relative !important;
		width: 80% !important;
		max-width: 600px !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		margin: 0 auto 25px auto !important;
		display: block !important;
	}

	/* Badges - centered */
	.page-about-us div[style*="30+"]{
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		transform: none !important;
		margin: 25px auto !important;
		display: block !important;
		padding: 30px 40px !important;
	}

	.page-about-us div[style*="95%"]{
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		transform: none !important;
		margin: 25px auto !important;
		display: block !important;
		padding: 22px 28px !important;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 54px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 40px !important;
	}

	/* Hide decorative elements */
	.page-about-us div[style*="opacity: 0.1"]{
		display: none !important;
	}

	/* Content section */
	.page-about-us .col-lg-5{
		margin-top: 30px !important;
	}

	.page-about-us .col-lg-5 > div{
		padding-left: 0 !important;
		padding-top: 0 !important;
		max-width: 700px !important;
		margin: 0 auto !important;
	}

	/* Timeline box */
	.page-about-us div[style*="1994"]{
		padding: 28px !important;
	}

	/* Stats grid - keep 2 columns */
	.page-about-us div[style*="grid-template-columns"]{
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 20px !important;
	}
}

@media only screen and (max-width: 991px) and (min-width: 768px){
	/* Small Tablets: Stack buttons vertically for better fit */
	.hero-btn{
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-btn .btn-default{
		min-width: 240px;
	}

	.hero-content .btn-default.btn-highlighted{
		margin-left: 0;
	}
}

@media only screen and (min-width: 768px){

	/* Desktop/Tablet: Reset mobile styles and use overlay layout */
	.hero.hero-video{
		display: block !important;
	}

	.hero.hero-video .hero-bg-video{
		position: relative !important;
		width: 100%;
		padding-bottom: 56.25%;
		height: 0 !important;
		overflow: hidden;
		z-index: 0;
		order: initial;
	}

	.hero.hero-video .hero-bg-video video,
	.hero.hero-video .hero-bg-video iframe{
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		/* height: 100% !important; */
		border: 0;
		pointer-events: none;
		transform: translate(0%, -10%);
		height: calc(100% + 265px) !important;
	}

	.hero.hero-video .container{
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		z-index: 2;
		width: 100%;
		max-width: 1320px;
		padding: 0 15px;
		order: initial;
		background: transparent;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1368px){
	/* Fix video positioning for medium screens (992px - 1368px) */
	.hero.hero-video .hero-bg-video video,
	.hero.hero-video .hero-bg-video iframe{
		transform: translate(0%, 0%) !important;
		height: 100% !important;
		object-fit: cover;
	}
}

@media only screen and (max-width: 991px){

	/* Top Bar Tablet Responsive */
	.top-bar-logo img {
		max-width: 150px;
	}

	.top-bar {
		padding: 10px 0;
	}

	.top-bar .container {
		flex-wrap: nowrap;
	}

	.top-bar-btn {
		padding: 8px 12px;
		font-size: 12px;
		white-space: nowrap;
	}

	.top-bar-btn i {
		display: none;
	}

	.top-bar-buttons {
		gap: 10px;
	}

	.top-bar-text {
		font-size: 11px;
	}

	/* Tablet: Stack content below video for better visibility */
	.hero.hero-video{
		margin-top: -92px;
	}

	.hero.hero-video .container{
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 50px 30px;
		background: var(--primary-color);
		max-width: 100%;
	}

	.hero-content .section-title h3{
		font-size: 14px;
	}

	.hero-content .section-title h1{
		font-size: 36px;
		line-height: 1.2;
	}

	.hero-content .section-title p{
		font-size: 16px;
		line-height: 1.5;
	}

	.hero-btn{
		margin-top: 25px;
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: flex-start;
	}

	.hero-btn .btn-default{
		padding: 14px 28px;
		font-size: 14px;
		flex: 0 1 auto;
		white-space: nowrap;
	}

	.hero-content .btn-default.btn-highlighted{
		margin-left: 0;
	}

	/* About Page Creative Section - Tablet */
	.page-about-us{
		padding: 80px 0 !important;
	}

	.page-about-us .row.mb-5 h3{
		font-size: 13px !important;
		margin-bottom: 20px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 42px !important;
		margin-bottom: 25px !important;
	}

	/* Image Layout - Adjust heights for tablet */
	.page-about-us .col-lg-7 > div{
		height: 500px !important;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		width: 70% !important;
	}

	/* Badges - slightly smaller */
	.page-about-us div[style*="30+"] h3{
		font-size: 52px !important;
	}

	.page-about-us div[style*="30+"] p{
		font-size: 12px !important;
	}

	.page-about-us div[style*="30+"],
	.page-about-us div[style*="95%"]{
		padding: 30px 35px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 38px !important;
	}

	.page-about-us div[style*="95%"] h3{
		font-size: 11px !important;
	}

	/* Right content */
	.page-about-us .col-lg-5 > div{
		padding-left: 30px !important;
	}

	/* Timeline box */
	.page-about-us div[style*="1994"]{
		padding: 25px !important;
		margin-bottom: 30px !important;
	}

	.page-about-us div[style*="1994"] > div > div:first-child{
		width: 65px !important;
		height: 65px !important;
		font-size: 24px !important;
	}

	.page-about-us div[style*="1994"] h4{
		font-size: 19px !important;
	}

	.page-about-us div[style*="1994"] > p{
		font-size: 14px !important;
	}

	/* Stats grid */
	.page-about-us div[style*="grid-template-columns"] > div{
		padding: 22px 18px !important;
	}

	.page-about-us div[style*="grid-template-columns"] i{
		font-size: 30px !important;
	}

	.page-about-us div[style*="grid-template-columns"] h3{
		font-size: 30px !important;
	}

	/* CTA Button */
	.page-about-us .btn-default{
		padding: 16px 40px !important;
		font-size: 14px !important;
	}

	/* Force single column layout on tablets */
	.page-about-us .col-lg-7,
	.page-about-us .col-lg-5{
		flex: 0 0 100%;
		max-width: 100%;
	}

	/* Stack images vertically on tablet */
	.page-about-us .col-lg-7 > div{
		height: auto !important;
		position: relative !important;
		margin-bottom: 50px;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		position: relative !important;
		width: 100% !important;
		max-width: 500px !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		margin: 0 auto 30px auto !important;
		display: block !important;
	}

	/* Center align badges on tablet */
	.page-about-us div[style*="30+"],
	.page-about-us div[style*="95%"]{
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		transform: none !important;
		margin: 20px auto !important;
		display: block !important;
	}

	/* Hide decorative circle on tablet */
	.page-about-us div[style*="opacity: 0.1"]{
		display: none !important;
	}

	/* Reset content padding */
	.page-about-us .col-lg-5 > div{
		padding-left: 0 !important;
		padding-top: 20px !important;
	}

	/* Navbar Tablet Responsive */
	.navbar{
		padding: 15px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.main-menu {
		display: none !important;
	}

	.header-btn{
		display: none;
	}

	/* Sticky adjustment for tablet */
	header.main-header .header-sticky.active {
		top: 60px;
	}

	.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{
		margin-top: -92px;
	}

	/* Mobile: Stack content below video */
	.hero.hero-video{
		display: flex;
		flex-direction: column;
	}

	.hero.hero-video .hero-bg-video{
		position: relative !important;
		width: 100%;
		padding-bottom: 56.25%; /* 16:9 ratio */
		height: 0 !important;
		order: 1;
		overflow: hidden;
		z-index: 1;
	}

	.hero.hero-video .hero-bg-video video,
	.hero.hero-video .hero-bg-video iframe{
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		border: 0;
		pointer-events: auto;
		transform: none !important;
	}

	.hero.hero-video .container{
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		padding: 40px 20px;
		order: 2;
		background: var(--primary-color);
		max-width: 100%;
	}

	.hero-content .section-title h3{
		font-size: 12px;
	}

	.hero-content .section-title h1{
		font-size: 28px;
		line-height: 1.2;
		margin-top: 10px;
	}

	.hero-content .section-title p{
		font-size: 13px;
		line-height: 1.4;
		margin-top: 15px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p{
		font-size: 20px;
	}

	/* Hero Video maintains 16:9 ratio on all screens */

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		margin: 0 0 30px 0;
	}

	.experience-counter{
		height: 137px;
		width: 137px;
	}

	.experience-counter h3{
		font-size: 28px;
	}

	.about-us-content-list{
		margin-bottom: 30px;
	}

	.about-contact-item{
		margin-bottom: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 70px);
	}

	.why-choose-images{
		margin-left: 0;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-image img{
		aspect-ratio: 1 / 1.2;
	}

	.service-btn{
		top: 20px;
		right: 20px;
	}

	.service-btn a{
		height: 50px;
		width: 50px;
	}

	.service-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn{
		margin-top: 10px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

	.our-project{
		padding: 50px 0 20px;
	}

	.our-Project-nav{
		margin-bottom: 50px;
	}

	.project-featured-image img{
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a{
		width: 80px;
		height: 80px;
	}

	.project-content{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work{
		padding: 50px 0;
	}

	.how-we-work-item{
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box{
		margin-bottom: 20px;
	}

	.how-work-company-slider{
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill{
		padding: 50px 0;
	}

	.our-skill-content{
		margin-bottom: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 30px;
	}

	.our-skill-image{
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image{
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content{
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title{
		background-size: contain;
	}

	.testimonial-slider{
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating{
		margin-bottom:15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
		font-size: 48px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.our-blog .section-title{
		margin-right: 0;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer{
		margin-top: 10px;
	}

	.main-footer{
		padding: 0;
	}

	.main-footer .footer-header{
		margin-bottom: 0;
		padding: 30px 0;
	}

	.footer-content{
		padding: 40px 0 0;
	}

	.footer-links{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p{
		margin-bottom: 20px;
	}

	.footer-copyright{
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header{
        padding: 180px 0 100px;
        margin-top: -92px;
    }

    .page-header-box h1{
        font-size: 50px;
    }

	.page-header-box ol li.breadcrumb-item{
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 16px;
	}

	.about-facility-list{
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item{
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img{
		max-width: 20px;
	}

	.about-facility-content{
		width: calc(100% - 55px);
	}

	.about-facility-content h3{
		font-size: 18px;
	}

	.vision-mission{
		padding: 50px 0 25px;
	}

	.vision-mission-box{
        padding: 30px 15px;
        gap: 30px 40px;
    }

	.vision-mission-item{
		width: calc(50% - 20px);
	}

	.vision-mission-item::before{
		right: -20px;
	}

	.vision-mission-item .icon-box{
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img{
		max-width: 30px;
	}

	.vision-mission-content h3{
		margin-bottom: 15px;
	}

	.best-selling{
		padding: 25px 0 50px;
	}

	.best-selling-content{
		margin-bottom: 20px;
	}

	.best-selling-content-img{
		margin-bottom: 20px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-readmore-btn{
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a{
		width: 50px;
		height: 50px;
	}

	.team-content{
		margin-bottom: 15px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.our-faqs-image{
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 0.8;
	}

	.our-clients{
		padding: 50px 0;
	}

	.our-clients .our-clients-box{
		max-width: 100%;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body{
		padding: 20px;
	}

	.sidebar-cta-content{
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item{
		margin-bottom: 15px;
	}

	.service-feature-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry ul li{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose{
		margin-bottom: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

	.page-project{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-single-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
        margin-bottom: 15px;
    }

	.faq-catagery-list ul li a::before{
        width: 16px;
        height: 16px;
    }

	.our-faq-section.page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-image{
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form{
		margin-left: 0;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 400px;
	}

	.contact-info-box{
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item{
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i{
		font-size: 16px;
	}

	.contact-info-content{
		width: calc(100% - 60px);
	}

	.contact-info-content h3{
		font-size: 18px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	/* Hero content mobile sizing */
	.hero-content .section-title h3{
		font-size: 11px !important;
	}

	.hero-content .section-title h1{
		font-size: 24px !important;
		line-height: 1.3 !important;
		margin-top: 8px !important;
	}

	.hero-content .section-title p{
		font-size: 14px !important;
		line-height: 1.4 !important;
		margin-top: 12px !important;
	}

	.hero-btn{
		display: none !important;
	}

	.hero-btn .btn-default{
		width: 100%;
		text-align: center;
		margin: 0 !important;
		padding: 14px 20px !important;
		font-size: 14px !important;
	}

	.hero-content .btn-default.btn-highlighted{
		margin-left: 0 !important;
	}

	/* Ensure hero container is visible on mobile */
	.hero.hero-video .container{
		padding: 30px 20px !important;
	}

	/* Hero Video Mobile Responsive - Maintain aspect ratio */
	.hero.hero-video .hero-bg-video{
		padding-bottom: 56.25% !important; /* 16:9 ratio */
	}

	.hero.hero-video .hero-bg-video iframe{
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		width: 100% !important;
		height: 100% !important;
		min-width: 100%;
		min-height: 100%;
	}

	.about-us-images{
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter{
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p{
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }

	.feedback-counter h3{
		font-size: 12px;
        width: calc(100% - 40px);
	}

	.about-img-2{
		max-width: 240px;
	}

	.experience-counter{
        height: 102px;
        width: 102px;
    }

	.experience-counter h3{
        font-size: 22px;
    }

	.experience-counter p{
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body{
		gap: 0px;
	}

	.about-us-content-body::before{
		display: none;
	}

	.about-us-content-info{
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list{
        margin-bottom: 20px;
    }

	.about-us-contact-list{
		width: 100%;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item{
		margin-bottom: 20px;
	}

	.about-contact-content h3{
		font-size: 18px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img{
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img{
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3{
		font-size: 18px;
	}

	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a{
        width: 60px;
        height: 60px;
    }

	.project-btn img{
		max-width: 20px;
	}

	.project-content h2{
		font-size: 18px;
	}

	.how-we-work-item{
		width: 100%;
	}

	.how-we-work-item .icon-box img{
		max-width: 50px;
	}

	.how-we-work-content h3{
		font-size: 18px;
	}

	.how-work-company-slider{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image{
		padding-bottom: 83px;
	}

	.our-skill-img-1{
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2{
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3{
		width: 200px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
        font-size: 38px;
    }

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content{
		margin-bottom: 10px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-logo{
		margin-bottom: 20px;
		text-align: center;
	}

	.footer-social-links{
		justify-content: center;
		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%;
    }

	/* About Page Creative Section - Mobile */
	.page-about-us{
		padding: 60px 0 !important;
	}

	.page-about-us .row.mb-5{
		margin-bottom: 30px !important;
	}

	.page-about-us .row.mb-5 h3{
		font-size: 12px !important;
		margin-bottom: 15px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 32px !important;
		margin-bottom: 20px !important;
	}

	.page-about-us .row[style*="min-height"]{
		min-height: auto !important;
	}

	/* Image Layout - Stack on Mobile */
	.page-about-us .col-lg-7 > div{
		height: auto !important;
		position: relative !important;
		margin-bottom: 40px;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		position: relative !important;
		width: 100% !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		margin-bottom: 20px !important;
	}

	/* Badges repositioning */
	.page-about-us div[style*="30+"],
	.page-about-us div[style*="95%"]{
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		transform: none !important;
		margin: 20px auto !important;
		max-width: 200px;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 48px !important;
	}

	.page-about-us div[style*="30+"] p{
		font-size: 12px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 36px !important;
	}

	.page-about-us div[style*="95%"] h3{
		font-size: 11px !important;
	}

	/* Decorative element hide on mobile */
	.page-about-us div[style*="opacity: 0.1"]{
		display: none !important;
	}

	/* Right content */
	.page-about-us .col-lg-5 > div{
		padding-left: 0 !important;
		padding-top: 0 !important;
	}

	/* Timeline box */
	.page-about-us div[style*="1994"]{
		padding: 20px !important;
		margin-bottom: 25px !important;
	}

	.page-about-us div[style*="1994"] > div{
		gap: 15px !important;
		margin-bottom: 15px !important;
	}

	.page-about-us div[style*="1994"] > div > div:first-child{
		width: 55px !important;
		height: 55px !important;
		font-size: 20px !important;
	}

	.page-about-us div[style*="1994"] h4{
		font-size: 18px !important;
	}

	.page-about-us div[style*="1994"] p:not(:last-child){
		font-size: 13px !important;
	}

	.page-about-us div[style*="1994"] > p{
		font-size: 14px !important;
	}

	/* Values text */
	.page-about-us .col-lg-5 p{
		font-size: 15px !important;
	}

	/* Stats grid */
	.page-about-us div[style*="grid-template-columns"]{
		gap: 15px !important;
		margin-bottom: 25px !important;
	}

	.page-about-us div[style*="grid-template-columns"] > div{
		padding: 20px 15px !important;
	}

	.page-about-us div[style*="grid-template-columns"] i{
		font-size: 28px !important;
		margin-bottom: 10px !important;
	}

	.page-about-us div[style*="grid-template-columns"] h3{
		font-size: 28px !important;
	}

	.page-about-us div[style*="grid-template-columns"] p{
		font-size: 11px !important;
	}

	/* CTA Button */
	.page-about-us .btn-default{
		padding: 14px 35px !important;
		font-size: 13px !important;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px){
	/* About Page Creative Section - Medium Mobile/Small Tablet */
	.page-about-us{
		padding: 70px 0 !important;
	}

	.page-about-us .row.mb-5 h3{
		font-size: 12px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 36px !important;
		line-height: 1.25 !important;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 50px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 38px !important;
	}

	/* Stats grid - keep 2 columns on this size */
	.page-about-us div[style*="grid-template-columns"]{
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
	}

	.page-about-us div[style*="1994"] > div{
		flex-direction: row !important;
		align-items: center !important;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	/* Hero content mobile sizing */
	.hero-content .section-title h3{
		font-size: 11px !important;
	}

	.hero-content .section-title h1{
		font-size: 24px !important;
		line-height: 1.3 !important;
		margin-top: 8px !important;
	}

	.hero-content .section-title p{
		font-size: 14px !important;
		line-height: 1.4 !important;
		margin-top: 12px !important;
	}

	.hero-btn{
		display: none !important;
	}

	.hero-btn .btn-default{
		width: 100%;
		text-align: center;
		margin: 0 !important;
		padding: 14px 20px !important;
		font-size: 14px !important;
	}

	.hero-content .btn-default.btn-highlighted{
		margin-left: 0 !important;
	}

	/* Ensure hero container is visible on mobile */
	.hero.hero-video .container{
		padding: 30px 20px !important;
	}

	/* Hero Video Mobile Responsive - Maintain aspect ratio */
	.hero.hero-video .hero-bg-video{
		padding-bottom: 56.25% !important; /* 16:9 ratio */
	}

	.hero.hero-video .hero-bg-video iframe{
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		width: 100% !important;
		height: 100% !important;
		min-width: 100%;
		min-height: 100%;
	}

	.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-content-list{
		width: 100%;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item{
		margin-bottom: 20px;
	}

	.about-contact-content h3{
		font-size: 18px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img{
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img{
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3{
		font-size: 18px;
	}

	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a{
        width: 60px;
        height: 60px;
    }

	.project-btn img{
		max-width: 20px;
	}

	.project-content h2{
		font-size: 18px;
	}

	.how-we-work-item{
		width: 100%;
	}

	.how-we-work-item .icon-box img{
		max-width: 50px;
	}

	.how-we-work-content h3{
		font-size: 18px;
	}

	.how-work-company-slider{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image{
		padding-bottom: 83px;
	}

	.our-skill-img-1{
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2{
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3{
		width: 200px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
        font-size: 38px;
    }

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content{
		margin-bottom: 10px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-logo{
		margin-bottom: 20px;
		text-align: center;
	}

	.footer-social-links{
		justify-content: center;
		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%;
    }

	/* About Page Creative Section - Mobile */
	.page-about-us{
		padding: 60px 0 !important;
	}

	.page-about-us .row.mb-5{
		margin-bottom: 30px !important;
	}

	.page-about-us .row.mb-5 h3{
		font-size: 12px !important;
		margin-bottom: 15px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 32px !important;
		margin-bottom: 20px !important;
	}

	.page-about-us .row[style*="min-height"]{
		min-height: auto !important;
	}

	/* Image Layout - Stack on Mobile */
	.page-about-us .col-lg-7 > div{
		height: auto !important;
		position: relative !important;
		margin-bottom: 40px;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		position: relative !important;
		width: 100% !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		margin-bottom: 20px !important;
	}

	/* Badges repositioning */
	.page-about-us div[style*="30+"],
	.page-about-us div[style*="95%"]{
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		transform: none !important;
		margin: 20px auto !important;
		max-width: 200px;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 48px !important;
	}

	.page-about-us div[style*="30+"] p{
		font-size: 12px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 36px !important;
	}

	.page-about-us div[style*="95%"] h3{
		font-size: 11px !important;
	}

	/* Decorative element hide on mobile */
	.page-about-us div[style*="opacity: 0.1"]{
		display: none !important;
	}

	/* Right content */
	.page-about-us .col-lg-5 > div{
		padding-left: 0 !important;
		padding-top: 0 !important;
	}

	/* Timeline box */
	.page-about-us div[style*="1994"]{
		padding: 20px !important;
		margin-bottom: 25px !important;
	}

	.page-about-us div[style*="1994"] > div{
		gap: 15px !important;
		margin-bottom: 15px !important;
	}

	.page-about-us div[style*="1994"] > div > div:first-child{
		width: 55px !important;
		height: 55px !important;
		font-size: 20px !important;
	}

	.page-about-us div[style*="1994"] h4{
		font-size: 18px !important;
	}

	.page-about-us div[style*="1994"] p:not(:last-child){
		font-size: 13px !important;
	}

	.page-about-us div[style*="1994"] > p{
		font-size: 14px !important;
	}

	/* Values text */
	.page-about-us .col-lg-5 p{
		font-size: 15px !important;
	}

	/* Stats grid */
	.page-about-us div[style*="grid-template-columns"]{
		gap: 15px !important;
		margin-bottom: 25px !important;
	}

	.page-about-us div[style*="grid-template-columns"] > div{
		padding: 20px 15px !important;
	}

	.page-about-us div[style*="grid-template-columns"] i{
		font-size: 28px !important;
		margin-bottom: 10px !important;
	}

	.page-about-us div[style*="grid-template-columns"] h3{
		font-size: 28px !important;
	}

	.page-about-us div[style*="grid-template-columns"] p{
		font-size: 11px !important;
	}

	/* CTA Button */
	.page-about-us .btn-default{
		padding: 14px 35px !important;
		font-size: 13px !important;
	}

	.vision-mission{
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box{
        padding: 20px;
        gap: 40px;
    }

	.vision-mission-item{
		width: 100%;
	}

	.vision-mission-item::before{
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before{
		display: block;
	}

	.vision-mission-item:last-child::before{
		display: none;
	}
	
	.vision-mission-content h3{
		font-size: 18px;
	}

	.team-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 2px;
	}

	.faq-accordion .accordion-body{
		padding-right: 0;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }

	.service-entry-list-image{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.project-single-image{
        margin-bottom: 20px;
    }

	.project-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul li{
        margin-bottom: 10px;
    }

	.project-entry ul li::before{
        font-size: 18px;
        top: 5px;
    }

	.project-gallery-images{
		gap: 20px;
	}

	.project-gallery-img{
		width: calc(50% - 10px);
	}

	.contact-us-image img{
        aspect-ratio: 1 / 0.75;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

	.contact-info-item{
		width: 100%;
	}

	.error-page-image img{
        max-width: 100%;
    }

	/* Top Bar Responsive */
	.top-bar-logo img {
		max-width: 120px;
	}

	.top-bar {
		padding: 8px 0;
	}

	.top-bar .container {
		flex-wrap: nowrap;
		gap: 10px;
	}

	.top-bar-btn {
		padding: 6px 10px;
		font-size: 11px;
		white-space: nowrap;
	}

	.top-bar-btn i {
		display: none;
	}

	.top-bar-buttons {
		gap: 6px;
		flex-shrink: 0;
	}

	/* Navbar Responsive */
	.main-menu {
		display: none !important;
	}

	.navbar-toggle {
		display: block;
		background: transparent;
		border: none;
		cursor: pointer;
		margin-left: auto;
	}

	.navbar-toggle span {
		display: block;
		width: 25px;
		height: 3px;
		background: #ffffff;
		margin: 5px 0;
		transition: all 0.3s ease;
	}

	header.main-header .header-sticky.active .navbar-toggle span {
		background: #ffffff;
	}

	.responsive-menu {
		display: block !important;
	}

	.slicknav_menu {
		background: transparent;
		padding: 0;
	}

	.slicknav_nav {
		background: var(--primary-color);
		margin-top: 10px;
	}

	header.main-header .header-sticky.active .slicknav_nav {
		background: #ffffff;
		border: 1px solid var(--divider-color);
	}

	header.main-header .header-sticky.active .slicknav_nav a {
		color: var(--text-color);
	}

	header.main-header .header-sticky.active .slicknav_arrow:after {
		color: var(--text-color) !important;
	}

	header.main-header .header-sticky.active .slicknav_open > a .slicknav_arrow:after {
		color: var(--accent-color) !important;
	}

	/* Sticky adjustment for mobile */
	header.main-header .header-sticky.active {
		top: 56px;
	}

	.header-btn {
		display: none;
	}
}

/* ===================================
    Product Detail Page Styles
====================================== */

.product-detail-section {
	padding: 80px 0;
}

.product-detail-image {
	margin-bottom: 30px;
}

.product-detail-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-content .section-title {
	margin-bottom: 30px;
}

.feature-box {
	padding: 30px 20px;
	text-align: center;
	background-color: var(--secondery-color);
	border-radius: 15px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.feature-box:hover {
	background-color: var(--accent-color);
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box .icon-box {
	width: 80px;
	height: 80px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.feature-box:hover .icon-box {
	background-color: var(--primary-color);
}

.feature-box .icon-box i {
	font-size: 36px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.feature-box:hover .icon-box i {
	color: var(--white-color);
}

.feature-box h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.feature-box:hover h4 {
	color: var(--white-color);
}

.feature-box p {
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
	transition: all 0.3s ease;
}

.feature-box:hover p {
	color: var(--white-color);
}

/* Technical Specifications Table */
.technical-specs-table {
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.technical-specs-table table {
	margin: 0;
}

.technical-specs-table table thead th {
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 15px 20px;
	font-weight: 700;
	border: none;
}

.technical-specs-table table tbody td {
	padding: 15px 20px;
	border-color: var(--divider-color);
}

.technical-specs-table table tbody tr:hover {
	background-color: var(--secondery-color);
}

/* Applications List */
.applications-list {
	margin-top: 30px;
}

.application-item {
	text-align: center;
	padding: 30px 15px;
	background-color: var(--secondery-color);
	border-radius: 15px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.application-item:hover {
	background-color: var(--accent-color);
	transform: translateY(-5px);
}

.application-item .icon-box {
	width: 70px;
	height: 70px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.application-item .icon-box i {
	font-size: 30px;
	color: var(--accent-color);
}

.application-item:hover .icon-box i {
	color: var(--primary-color);
}

.application-item h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	transition: all 0.3s ease;
}

.application-item:hover h4 {
	color: var(--white-color);
}

/* Product Types List */
.product-types-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-types-list li {
	padding: 12px 0;
	border-bottom: 1px solid var(--divider-color);
	font-size: 15px;
	color: var(--text-color);
	display: flex;
	align-items: center;
}

.product-types-list li:last-child {
	border-bottom: none;
}

.product-types-list li i {
	color: var(--accent-color);
	margin-right: 12px;
	font-size: 16px;
}

/* Product CTA Box */
.product-cta-box {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	padding: 60px 40px;
	border-radius: 20px;
	text-align: center;
}

.product-cta-box .section-title h3 {
	color: var(--white-color);
	margin-bottom: 15px;
}

.product-cta-box .section-title p {
	color: var(--white-color);
	font-size: 16px;
	margin: 0;
}

.product-cta-buttons .btn-default {
	display: inline-block;
	background-color: var(--white-color);
	color: var(--primary-color);
}

.product-cta-buttons .btn-default:hover {
	background-color: var(--secondery-color);
	color: var(--primary-color);
}

.product-cta-buttons .btn-default.btn-highlighted {
	background-color: transparent;
	color: var(--white-color);
	border: 2px solid var(--white-color);
}

.product-cta-buttons .btn-default.btn-highlighted:hover {
	background-color: var(--white-color);
	color: var(--primary-color);
}

/* ===================================
    Blog Page Styles
====================================== */

.blog-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.blog-category {
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.blog-date {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 500;
	opacity: 0.7;
}

.blog-date:before {
	content: '\f017';
	font-family: 'FontAwesome';
	margin-right: 6px;
}

/* Blog Detail Page Styles */
.blog-detail-section {
	padding: 80px 0;
}

.blog-detail-header {
	margin-bottom: 40px;
}

.blog-detail-meta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.blog-detail-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-color);
	font-size: 14px;
	font-weight: 500;
}

.blog-detail-meta .meta-item i {
	color: var(--accent-color);
	font-size: 16px;
}

.blog-detail-image {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
}

.blog-detail-image img {
	width: 100%;
	height: auto;
}

.blog-content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
}

.blog-content h2 {
	font-size: 32px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.blog-content h3 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.blog-content p {
	margin-bottom: 20px;
}

.blog-content ul {
	margin-bottom: 25px;
	padding-left: 25px;
}

.blog-content ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 10px;
}

.blog-content ul li:before {
	content: '\f105';
	font-family: 'FontAwesome';
	color: var(--accent-color);
	position: absolute;
	left: -15px;
	font-weight: 900;
}

.blog-quote {
	background-color: var(--secondery-color);
	border-left: 4px solid var(--accent-color);
	padding: 30px 40px;
	margin: 40px 0;
	font-style: italic;
	font-size: 18px;
	line-height: 1.6;
	color: var(--primary-color);
}

.blog-quote p {
	margin: 0;
}

.blog-tags {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--divider-color);
}

.blog-tags h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.tag-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tag-item {
	background-color: var(--secondery-color);
	color: var(--primary-color);
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
}

.tag-item:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.related-posts {
	margin-top: 80px;
}

.related-posts .section-title {
	margin-bottom: 40px;
}

/* Certificate Gallery Styles */
.our-portfolio .portfolio-item {
	margin-bottom: 30px;
}

.our-portfolio .portfolio-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background-color: #ffffff;
	padding: 0;
	text-align: center;
	line-height: 0;
}

.our-portfolio .portfolio-image a {
	position: relative;
	z-index: 3;
	display: block;
	line-height: 0;
}

.our-portfolio .portfolio-image figure {
	margin: 0;
	display: block;
	line-height: 0;
}

.our-portfolio .portfolio-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.our-portfolio .portfolio-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	background-color: #ffffff;
	display: block;
	transition: all 0.3s ease;
	margin: 0;
}

.our-portfolio .portfolio-image:hover img {
	transform: scale(1.02);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.our-portfolio .portfolio-image::after {
	content: '\f00e';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	color: var(--white-color);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.our-portfolio .portfolio-image:hover::after {
	opacity: 1;
}

.our-portfolio .portfolio-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(224, 32, 66, 0.8);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.our-portfolio .portfolio-image:hover::before {
	opacity: 1;
}

.our-portfolio .portfolio-content {
	text-align: center;
	padding: 20px 10px;
}

.our-portfolio .portfolio-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.our-portfolio .portfolio-content p {
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
}

/* Intro Video Autoplay Styles */
.intro-video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	overflow: hidden;
	border-radius: 0px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.intro-video-wrapper iframe {
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: calc(100% + 300px);
	border: none;
	pointer-events: none;
	object-fit: cover;
}

.intro-video-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: auto;
	background: transparent;
	cursor: default;
}

.video-control-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	pointer-events: auto;
}

.video-control-button .pause-btn {
	background-color: rgba(224, 32, 66, 0.9);
	color: var(--white-color);
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-control-button .pause-btn:hover {
	background-color: rgba(224, 32, 66, 1);
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(224, 32, 66, 0.4);
}

.video-control-button .pause-btn i {
	transition: all 0.3s ease;
}

.video-control-button .pause-btn.playing i:before {
	content: "\f04c"; /* pause icon */
}

.video-control-button .pause-btn.paused i:before {
	content: "\f04b"; /* play icon */
}

/* Responsive Video */
@media (max-width: 768px) {
	.video-control-button {
		bottom: 20px;
		right: 20px;
	}

	.video-control-button .pause-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	/* Ensure video overlay blocks all mobile touch events */
	.hero.hero-video .hero-bg-video::after,
	.intro-video-wrapper::after {
		pointer-events: auto !important;
		-webkit-tap-highlight-color: transparent;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
	}
}

/* Extra Small Devices - Hero Content Optimization */
@media (max-width: 480px) {
	.hero-content .section-title h3{
		font-size: 10px !important;
		margin-bottom: 8px;
	}

	.hero-content .section-title h1{
		font-size: 20px !important;
		line-height: 1.3 !important;
	}

	.hero-content .section-title p{
		font-size: 13px !important;
		line-height: 1.4 !important;
		max-width: 100%;
	}

	.hero.hero-video .container{
		padding: 25px 15px !important;
	}

	.hero-btn .btn-default{
		padding: 12px 16px !important;
		font-size: 13px !important;
	}
}

/* Industries Page Responsive Styles */
@media only screen and (max-width: 991px){
	.industry-detail-section{
		padding: 60px 0 !important;
	}

	.industry-detail-section .industry-detail-content h2{
		font-size: 32px;
		margin-bottom: 15px;
	}

	.industry-detail-image{
		height: 350px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px){
	.page-services .service-item .service-image{
		height: 220px;
	}

	.industry-detail-section{
		padding: 40px 0 !important;
	}

	.industry-detail-section .industry-detail-content h2{
		font-size: 26px;
		margin-bottom: 12px;
	}

	.industry-detail-section .industry-detail-content p{
		font-size: 15px;
		margin-bottom: 20px;
	}

	.industry-detail-image{
		height: 280px;
		margin-bottom: 25px;
	}

	.industry-detail-section .industry-features li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 12px;
	}

	.other-industries-section{
		padding: 60px 0 !important;
	}
}

@media only screen and (max-width: 991px){
	.blog-slider{
		padding: 0 60px;
	}
}

@media only screen and (max-width: 767px){
	.blog-slider-section{
		padding: 60px 0 90px;
	}

	.blog-slider{
		padding: 0 50px;
	}

	.blog-slider .swiper-pagination{
		bottom: -40px;
	}

	.blog-slider .swiper-slide .service-item{
		transform: scale(0.9);
	}

	.blog-slider .swiper-slide .service-image{
		height: 350px;
	}

	.blog-slider .swiper-slide .service-content{
		min-height: 250px;
		padding: 20px 25px;
	}

	.blog-slider .swiper-slide .service-content h3{
		font-size: 16px;
	}

	.blog-slider .swiper-slide .service-content p{
		font-size: 13px;
	}
}

@media only screen and (max-width: 575px){
	/* Extra Small Mobile: Optimize button sizes */
	.hero-btn .btn-default{
		padding: 12px 18px !important;
		font-size: 13px !important;
	}

	.hero-content .btn-default.btn-highlighted{
		margin-left: 0 !important;
	}

	/* Hide top-bar text on very small screens */
	.top-bar-text {
		display: none;
	}

	/* About Page Creative Section - Extra Small Mobile */
	.page-about-us{
		padding: 50px 0 !important;
	}

	.page-about-us .row.mb-5{
		margin-bottom: 25px !important;
	}

	.page-about-us .row.mb-5 h3{
		font-size: 11px !important;
		letter-spacing: 2px !important;
		margin-bottom: 12px !important;
	}

	.page-about-us .row.mb-5 h2{
		font-size: 28px !important;
		line-height: 1.3 !important;
		margin-bottom: 18px !important;
	}

	.page-about-us .col-lg-7 > div{
		margin-bottom: 30px !important;
	}

	.page-about-us .col-lg-7 > div > div[style*="position: absolute"]{
		margin-bottom: 15px !important;
	}

	/* Badges - Extra small on mobile */
	.page-about-us div[style*="30+"],
	.page-about-us div[style*="95%"]{
		padding: 20px 25px !important;
		max-width: 160px !important;
		margin: 15px auto !important;
	}

	.page-about-us div[style*="30+"] h3{
		font-size: 42px !important;
	}

	.page-about-us div[style*="30+"] p{
		font-size: 11px !important;
	}

	.page-about-us div[style*="95%"] p{
		font-size: 32px !important;
	}

	.page-about-us div[style*="95%"] h3{
		font-size: 10px !important;
	}

	/* Timeline box */
	.page-about-us div[style*="1994"]{
		padding: 18px !important;
		margin-bottom: 20px !important;
	}

	.page-about-us div[style*="1994"] > div{
		gap: 12px !important;
		margin-bottom: 12px !important;
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.page-about-us div[style*="1994"] > div > div:first-child{
		width: 50px !important;
		height: 50px !important;
		font-size: 18px !important;
	}

	.page-about-us div[style*="1994"] h4{
		font-size: 17px !important;
	}

	.page-about-us div[style*="1994"] p:not(:last-child){
		font-size: 12px !important;
	}

	.page-about-us div[style*="1994"] > p{
		font-size: 13px !important;
		line-height: 1.6 !important;
	}

	/* Values text */
	.page-about-us .col-lg-5 > div > div:nth-child(2) p{
		font-size: 14px !important;
		margin-bottom: 20px !important;
	}

	/* Stats grid - Stack on extra small mobile */
	.page-about-us div[style*="grid-template-columns"]{
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		margin-bottom: 20px !important;
	}

	.page-about-us div[style*="grid-template-columns"] > div{
		padding: 18px 15px !important;
	}

	.page-about-us div[style*="grid-template-columns"] i{
		font-size: 26px !important;
		margin-bottom: 8px !important;
	}

	.page-about-us div[style*="grid-template-columns"] h3{
		font-size: 26px !important;
		margin-bottom: 3px !important;
	}

	.page-about-us div[style*="grid-template-columns"] p{
		font-size: 10px !important;
	}

	/* CTA Button */
	.page-about-us .btn-default{
		padding: 13px 30px !important;
		font-size: 12px !important;
		letter-spacing: 1px !important;
	}

	.page-services .service-item .service-image{
		height: 200px;
	}

	.industry-detail-image{
		height: 240px;
	}

	.industry-detail-section .industry-detail-content h2{
		font-size: 24px;
	}

	.blog-slider-section{
		padding: 40px 0 80px;
	}

	.blog-slider{
		padding: 0 40px;
	}

	.blog-swiper-button-next,
	.blog-swiper-button-prev{
		width: 40px;
		height: 40px;
	}

	.blog-swiper-button-next:after,
	.blog-swiper-button-prev:after{
		font-size: 16px;
	}

	.blog-slider .swiper-pagination{
		bottom: -35px;
	}

	.blog-slider .swiper-slide .service-item{
		transform: scale(0.95);
	}

	.blog-slider .swiper-slide .service-image{
		height: 310px;
	}

	.blog-slider .swiper-slide .service-content{
		min-height: 230px;
		padding: 18px 20px;
	}

	.blog-slider .swiper-slide .service-content h3{
		font-size: 15px;
	}

	.blog-slider .swiper-slide .service-content p{
		font-size: 13px;
	}

	/* Modern Industries Section - Mobile */
	.industries-served-modern {
		padding: 60px 0;
	}

	.industries-header {
		margin-bottom: 40px;
	}

	.section-title-modern h2 {
		font-size: 28px;
	}

	.section-description-modern {
		padding-top: 15px;
	}

	.section-description-modern p {
		font-size: 15px;
	}

	.industries-grid {
		margin-bottom: 40px;
	}

	.industry-card-image {
		height: 240px;
	}

	.industry-icon {
		width: 50px;
		height: 50px;
		top: 20px;
		right: 20px;
	}

	.industry-icon svg {
		width: 24px;
		height: 24px;
	}

	.industry-card-content {
		padding: 25px 20px;
	}

	.industry-number {
		font-size: 48px;
		right: 20px;
	}

	.industry-card-content h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.industry-card-content p {
		font-size: 14px;
	}

	.industry-arrow {
		width: 40px;
		height: 40px;
		bottom: 20px;
		right: 20px;
	}

	.industry-arrow svg {
		width: 20px;
		height: 20px;
	}

	.btn-default-modern {
		padding: 16px 32px;
		font-size: 14px;
	}

	/* Modern Products Section - Mobile */
	.products-section-modern {
		padding: 60px 0;
	}

	.products-header {
		margin-bottom: 40px;
	}

	.products-filter-nav {
		margin-bottom: 40px;
	}

	.filter-pills {
		justify-content: flex-start;
		gap: 8px;
	}

	.filter-pill {
		padding: 10px 18px;
		font-size: 13px;
	}

	.pill-count {
		min-width: 20px;
		height: 20px;
		font-size: 11px;
	}

	.products-grid-modern {
		margin-bottom: 40px;
	}

	.product-card-image {
		height: 260px;
	}

	.product-category-tag {
		top: 15px;
		left: 15px;
		padding: 6px 14px;
		font-size: 11px;
	}

	.product-hover-icon {
		width: 60px;
		height: 60px;
	}

	.product-hover-icon svg {
		width: 28px;
		height: 28px;
	}

	.product-card-info {
		padding: 25px 20px;
	}

	.product-card-info h3 {
		font-size: 18px;
	}

	.product-arrow-icon {
		width: 36px;
		height: 36px;
		min-width: 36px;
	}

	.product-arrow-icon svg {
		width: 18px;
		height: 18px;
	}

	.product-card-info p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.feature-tag {
		padding: 5px 12px;
		font-size: 12px;
	}

	.btn-outline-modern {
		padding: 12px 28px;
		font-size: 13px;
		gap: 10px;
	}

	.btn-icon-circle {
		width: 28px;
		height: 28px;
		min-width: 28px;
	}

	.btn-icon-circle svg {
		width: 14px;
		height: 14px;
	}
}

/* Tablet Responsive for Modern Industries & Products */
@media only screen and (max-width: 991px) and (min-width: 576px) {
	.industries-served-modern {
		padding: 80px 0;
	}

	.section-title-modern h2 {
		font-size: 36px;
	}

	.section-description-modern p {
		font-size: 16px;
	}

	.industry-card-image {
		height: 280px;
	}

	/* Products Tablet */
	.products-section-modern {
		padding: 80px 0;
	}

	.product-card-image {
		height: 300px;
	}
}

/* Responsive Styles for Our Associations Section */
@media only screen and (max-width: 991px) {
	.our-associations-section{
		padding: 80px 0;
	}

	.our-associations-section .section-title h2{
		font-size: 36px;
	}

	.association-box{
		padding: 40px 25px 30px;
	}

	.association-logo{
		min-height: 100px;
	}

	.association-logo img{
		max-height: 100px;
	}

	.association-content h3{
		font-size: 20px;
	}

	.association-content p{
		font-size: 13px;
	}
}

@media only screen and (max-width: 767px) {
	.our-associations-section{
		padding: 60px 0;
	}

	.our-associations-section .section-title h2{
		font-size: 28px;
	}

	.our-associations-section .section-title-content p{
		font-size: 15px;
	}

	.association-box{
		padding: 35px 20px 25px;
		margin-bottom: 20px;
	}

	.association-logo{
		min-height: 80px;
		margin-bottom: 20px;
	}

	.association-logo img{
		max-height: 80px;
	}

	.association-content h3{
		font-size: 18px;
		margin-bottom: 8px;
	}

	.association-content p{
		font-size: 12px;
	}
}

/************************************/
/*** About Us Section Custom CSS  ***/
/************************************/

/* Large Desktop to Laptop (992px - 1250px) */
@media (max-width: 1250px) and (min-width: 992px) {
	.about-content-wrapper {
		padding-left: 30px !important;
	}

	.about-founded-card {
		height: auto !important;
		min-height: 430px !important;
		padding: 30px 35px !important;
	}

	.about-founded-header {
		gap: 25px !important;
		margin-bottom: 22px !important;
	}

	.about-founded-header > div:first-child {
		min-width: 75px !important;
		height: 75px !important;
		font-size: 32px !important;
	}

	.about-founded-header h4 {
		font-size: 22px !important;
	}

	.about-founded-header p {
		font-size: 14px !important;
	}

	.about-founded-text {
		font-size: 15px !important;
		line-height: 1.7 !important;
	}

	.about-mission-text p {
		font-size: 16px !important;
	}

	.about-cta-button a {
		padding: 20px 50px !important;
		font-size: 12px !important;
	}
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
	.about-content-wrapper {
		padding-left: 15px !important;
		padding-top: 30px !important;
	}

	.about-founded-card {
		height: auto !important;
		padding: 35px 30px !important;
	}

	.about-main-image {
		height: 350px !important;
	}

	.about-years-badge {
		padding: 30px 40px !important;
	}

	.about-years-badge h3 {
		font-size: 60px !important;
	}

	.about-stat-card {
		padding: 30px 15px !important;
	}

	.about-stat-card i {
		font-size: 36px !important;
	}

	.about-stat-card h3 {
		font-size: 36px !important;
	}
}

/* Mobile View (below 768px) */
@media (max-width: 767px) {
	.about-content-wrapper {
		padding-left: 0 !important;
		padding-top: 20px !important;
	}

	.about-image-wrapper {
		margin-bottom: 25px !important;
	}

	.about-main-image {
		height: 300px !important;
	}

	.about-years-badge {
		padding: 25px 35px !important;
	}

	.about-years-badge h3 {
		font-size: 48px !important;
	}

	.about-years-badge p {
		font-size: 9px !important;
		letter-spacing: 2px !important;
	}

	.about-stats-row {
		margin-top: 20px !important;
	}

	.about-stat-card {
		padding: 25px 15px !important;
		margin: 0 5px !important;
	}

	.about-stat-card i {
		font-size: 32px !important;
		margin-bottom: 12px !important;
	}

	.about-stat-card h3 {
		font-size: 32px !important;
	}

	.about-stat-card p {
		font-size: 9px !important;
		letter-spacing: 1.5px !important;
	}

	.about-founded-card {
		height: auto !important;
		padding: 30px 25px !important;
		margin-bottom: 25px !important;
	}

	.about-founded-header {
		gap: 20px !important;
		margin-bottom: 20px !important;
	}

	.about-founded-header > div:first-child {
		min-width: 70px !important;
		height: 70px !important;
		font-size: 30px !important;
	}

	.about-founded-header h4 {
		font-size: 20px !important;
	}

	.about-founded-header p {
		font-size: 14px !important;
	}

	.about-founded-text {
		font-size: 15px !important;
		line-height: 1.7 !important;
	}

	.about-mission-text {
		margin-bottom: 30px !important;
	}

	.about-mission-text p {
		font-size: 15px !important;
		line-height: 1.7 !important;
	}

	.about-cta-button {
		text-align: center !important;
	}

	.about-cta-button a {
		padding: 18px 40px !important;
		font-size: 12px !important;
		letter-spacing: 2px !important;
	}
}

/* Small Mobile View (below 480px) */
@media (max-width: 480px) {
	.about-main-image {
		height: 250px !important;
	}

	.about-years-badge {
		padding: 20px 30px !important;
	}

	.about-years-badge h3 {
		font-size: 42px !important;
	}

	.about-stat-card {
		padding: 20px 10px !important;
	}

	.about-stat-card i {
		font-size: 28px !important;
		margin-bottom: 10px !important;
	}

	.about-stat-card h3 {
		font-size: 28px !important;
	}

	.about-stat-card p {
		font-size: 8px !important;
	}

	.about-founded-card {
		padding: 25px 20px !important;
	}

	.about-founded-header {
		gap: 15px !important;
	}

	.about-founded-header > div:first-child {
		min-width: 60px !important;
		height: 60px !important;
		font-size: 26px !important;
	}

	.about-founded-header h4 {
		font-size: 18px !important;
	}

	.about-founded-header p {
		font-size: 13px !important;
	}

	.about-founded-text {
		font-size: 14px !important;
	}

	.about-mission-text p {
		font-size: 14px !important;
	}

	.about-cta-button a {
		padding: 16px 35px !important;
		font-size: 11px !important;
	}
}

/* ========================================
   Infrastructure Section - Modern Card Design
========================================== */

.infrastructure-section {
	padding: 80px 0;
	background: var(--secondery-color);
	position: relative;
	overflow: hidden;
}

.infrastructure-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-color);
}

.infrastructure-grid {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

.infrastructure-grid > [class*="col-"] {
	display: flex;
}

.infrastructure-card {
	position: relative;
	background: var(--white-color);
	border-radius: 16px;
	padding: 40px 30px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid var(--divider-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.infrastructure-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--accent-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.infrastructure-card:hover::before {
	transform: scaleX(1);
}

.infrastructure-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-color);
	box-shadow: 0 20px 40px rgba(124, 135, 127, 0.15);
}

.infra-icon-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 25px;
}

.infra-icon {
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(124, 135, 127, 0.2);
}

.infra-icon i {
	font-size: 32px;
	color: var(--white-color);
	transition: all 0.3s ease;
}

.infrastructure-card:hover .infra-icon {
	transform: rotate(10deg) scale(1.1);
	background: var(--primary-color);
	box-shadow: 0 8px 25px rgba(124, 135, 127, 0.4);
}

.infrastructure-card:hover .infra-icon i {
	transform: scale(1.1);
}

.infra-number {
	font-size: 50px;
	font-weight: 800;
	color: var(--divider-color);
	line-height: 1;
	transition: all 0.3s ease;
	font-family: var(--default-font);
}

.infrastructure-card:hover .infra-number {
	color: var(--accent-color);
	transform: scale(1.1);
}

.infra-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.infrastructure-card:hover .infra-content h3 {
	color: var(--accent-color);
}

.infra-content > p {
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0.8;
}

.infra-details {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	margin-top: 0;
}

.infrastructure-card:hover .infra-details {
	max-height: 300px;
	opacity: 1;
	margin-top: 15px;
}

.infra-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.infra-details ul li {
	font-size: 14px;
	color: var(--text-color);
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	transition: all 0.3s ease;
}

.infra-details ul li:last-child {
	border-bottom: none;
}

.infra-details ul li i {
	color: var(--accent-color);
	font-size: 16px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.infrastructure-card:hover .infra-details ul li {
	padding-left: 5px;
}

.infrastructure-card:hover .infra-details ul li i {
	transform: scale(1.2);
}

.infra-hover-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0;
	background: rgba(124, 135, 127, 0.03);
	transition: height 0.4s ease;
	pointer-events: none;
}

.infrastructure-card:hover .infra-hover-overlay {
	height: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.infrastructure-card {
		min-height: auto;
		padding: 35px 25px;
	}

	.infra-icon {
		width: 60px;
		height: 60px;
	}

	.infra-icon i {
		font-size: 28px;
	}

	.infra-number {
		font-size: 40px;
	}

	.infra-content h3 {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.infrastructure-section {
		padding: 60px 0;
	}

	.infrastructure-grid {
		margin-top: 30px;
	}

	.infrastructure-card {
		min-height: auto;
		margin-bottom: 20px;
		padding: 30px 20px;
	}

	.infra-icon {
		width: 55px;
		height: 55px;
	}

	.infra-icon i {
		font-size: 24px;
	}

	.infra-number {
		font-size: 35px;
	}

	.infra-content h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.infra-content > p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.infra-details ul li {
		font-size: 13px;
		padding: 6px 0;
	}

	/* Hero Animated - Mobile */
	.hero.hero-animated{
		margin-top: -88px;
		padding-top: 88px;
		padding-bottom: 20px;
		min-height: 100vh;
		height: 100vh;
		box-sizing: border-box;
	}

	.hero-image-right{
		margin-top: 30px;
		text-align: center;
		order: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 300px;
		overflow: visible;
	}

	.hero-content-left{
		order: 1;
	}

	.hero.hero-animated .row{
		flex-direction: column;
	}

	.hero-image-right img{
		width: 100%;
		max-width: 350px;
		max-height: 350px;
	}

	/* Adjust heading sizes for mobile */
	.hero.hero-animated .section-title h1{
		font-size: 32px !important;
	}

	.hero.hero-animated .section-title h3{
		font-size: 12px !important;
	}

	.hero.hero-animated .section-title p{
		font-size: 14px !important;
	}

	/* Keep animations working on mobile */
	.hero-content .btn-default.btn-highlighted{
		margin-left: 0;
		margin-top: 15px;
		display: block;
		width: 100%;
		text-align: center;
	}

	.hero.hero-animated .hero-btn a{
		display: block;
		margin-bottom: 10px;
		width: 100%;
		text-align: center;
	}
}
/* ============================================ */
/* Contact Details Section (New Design) */
/* ============================================ */
.contact-details-section{
	padding-right: 30px;
}

.contact-details-list{
	margin-top: 40px;
}

.contact-detail-item{
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
	padding: 25px;
	background-color: var(--secondery-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
	border: 1px solid transparent;
}

.contact-detail-item:last-child{
	margin-bottom: 0;
}

.contact-detail-item:hover{
	background-color: var(--white-color);
	border-color: var(--divider-color);
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.contact-detail-icon{
	position: relative;
	height: 55px;
	width: 55px;
	min-width: 55px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-detail-icon: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-detail-item:hover .contact-detail-icon:before{
	transform: scale(1);
}

.contact-detail-icon i{
	position: relative;
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-detail-item:hover .contact-detail-icon i{
	color: var(--white-color);
}

.contact-detail-content{
	flex: 1;
}

.contact-detail-content h4{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 12px;
	color: var(--text-color);
}

.contact-detail-content p{
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 8px;
	color: var(--text-color);
}

.contact-detail-content p:last-child{
	margin-bottom: 0;
}

.contact-detail-content p strong{
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
	min-width: 140px;
}

/* Responsive Design for Contact Details */
@media (max-width: 991px){
	.contact-details-section{
		padding-right: 0;
		margin-bottom: 50px;
	}

	.contact-detail-item{
		padding: 20px;
	}

	.contact-detail-icon{
		height: 50px;
		width: 50px;
		min-width: 50px;
		margin-right: 15px;
	}

	.contact-detail-icon i{
		font-size: 20px;
	}

	.contact-detail-content h4{
		font-size: 16px;
	}

	.contact-detail-content p{
		font-size: 13px;
	}
}

@media (max-width: 575px){
	.contact-detail-item{
		flex-direction: column;
		text-align: center;
		padding: 20px 15px;
	}

	.contact-detail-icon{
		margin-right: 0;
		margin-bottom: 15px;
	}

	.contact-detail-content p strong{
		display: block;
		margin-bottom: 3px;
	}
}


/* ============================================ */
/* Contact Information Cards (4 Column Grid) */
/* ============================================ */
.contact-information-section{
	padding: 80px 0;
	background-color: var(--white-color);
}

.contact-info-card{
	text-align: center;
	padding: 40px 25px;
	background-color: var(--secondery-color);
	border-radius: 10px;
	height: 100%;
	transition: all 0.4s ease-in-out;
	border: 2px solid transparent;
}

.contact-info-card:hover{
	background-color: var(--white-color);
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.contact-info-card-icon{
	position: relative;
	height: 70px;
	width: 70px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	transition: all 0.4s ease-in-out;
}

.contact-info-card-icon: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-card:hover .contact-info-card-icon:before{
	transform: scale(1);
}

.contact-info-card-icon i{
	position: relative;
	font-size: 28px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-card:hover .contact-info-card-icon i{
	color: var(--white-color);
}

.contact-info-card-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	color: var(--text-color);
}

.contact-info-card-content p{
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 10px;
	color: var(--text-color);
}

.contact-info-card-content p:last-child{
	margin-bottom: 0;
}

.contact-info-card-content p strong{
	font-weight: 600;
	color: var(--primary-color);
	display: block;
	margin-bottom: 2px;
}

/* Contact Form Section */
.page-contact-us{
	padding: 80px 0;
	background-color: var(--secondery-color);
}

/* Responsive Design for Contact Info Cards */
@media (max-width: 991px){
	.contact-information-section{
		padding: 60px 0;
	}

	.contact-info-card{
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.contact-info-card-icon{
		height: 60px;
		width: 60px;
		margin-bottom: 20px;
	}

	.contact-info-card-icon i{
		font-size: 24px;
	}

	.contact-info-card-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.page-contact-us{
		padding: 60px 0;
	}
}

@media (max-width: 767px){
	.contact-information-section{
		padding: 50px 0;
	}

	.contact-info-card{
		padding: 25px 15px;
	}

	.contact-info-card-icon{
		height: 55px;
		width: 55px;
	}

	.contact-info-card-icon i{
		font-size: 22px;
	}

	.contact-info-card-content h3{
		font-size: 17px;
	}

	.contact-info-card-content p{
		font-size: 13px;
	}

	.page-contact-us{
		padding: 50px 0;
	}
}


/* ============================================ */
/* Modern Unique Contact Info Section Design */
/* ============================================ */
.contact-info-modern-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.contact-modern-card{
	position: relative;
	overflow: hidden;
}

.contact-modern-card .card-inner{
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 35px;
	background: linear-gradient(135deg, var(--secondery-color) 0%, #ffffff 100%);
	border-radius: 15px;
	border: 2px solid var(--divider-color);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	height: 100%;
}

.contact-modern-card .card-inner::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 0;
}

.contact-modern-card:hover .card-inner::before{
	opacity: 0.05;
}

.contact-modern-card:hover .card-inner{
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Icon Wrapper */
.card-icon-wrapper{
	position: relative;
	flex-shrink: 0;
}

.card-icon-bg{
	position: absolute;
	width: 90px;
	height: 90px;
	background: var(--accent-color);
	opacity: 0.15;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
}

.contact-modern-card:hover .card-icon-bg{
	transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
	opacity: 0.25;
}

.card-icon{
	position: relative;
	width: 65px;
	height: 65px;
	background: var(--white-color);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	z-index: 1;
}

.contact-modern-card:hover .card-icon{
	background: var(--primary-color);
	transform: rotate(-10deg) scale(1.1);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-icon i{
	font-size: 28px;
	color: var(--accent-color);
	transition: all 0.4s ease;
}

.contact-modern-card:hover .card-icon i{
	color: var(--white-color);
	transform: scale(1.1);
}

/* Card Content */
.card-content{
	flex: 1;
	position: relative;
	z-index: 1;
}

.card-content h3{
	font-size: 22px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 20px;
	text-transform: capitalize;
	position: relative;
	padding-bottom: 12px;
}

.card-content h3::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	transition: all 0.4s ease;
}

.contact-modern-card:hover .card-content h3::after{
	width: 80px;
	background: var(--primary-color);
}

/* Detail Rows */
.contact-detail-list{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.detail-row{
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.detail-label{
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.detail-value{
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
	line-height: 1.5;
}

.contact-modern-card:hover .detail-value{
	color: var(--primary-color);
}

/* Address Text */
.address-text p{
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-color);
	margin: 0;
}

/* Responsive Design */
@media (max-width: 991px){
	.contact-info-modern-grid{
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 50px;
	}

	.contact-modern-card .card-inner{
		padding: 30px;
		gap: 20px;
	}

	.card-icon{
		width: 60px;
		height: 60px;
	}

	.card-icon-bg{
		width: 80px;
		height: 80px;
	}

	.card-icon i{
		font-size: 26px;
	}

	.card-content h3{
		font-size: 20px;
	}
}

@media (max-width: 767px){
	.contact-info-modern-grid{
		margin-top: 40px;
		gap: 20px;
	}

	.contact-modern-card .card-inner{
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px 20px;
	}

	.card-content h3::after{
		left: 50%;
		transform: translateX(-50%);
	}

	.contact-modern-card:hover .card-content h3::after{
		left: 50%;
		transform: translateX(-50%);
	}

	.detail-row{
		align-items: center;
	}

	.card-icon{
		width: 55px;
		height: 55px;
	}

	.card-icon i{
		font-size: 24px;
	}

	.card-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.detail-value{
		font-size: 14px;
	}

	.address-text p{
		font-size: 14px;
	}
}

@media (max-width: 575px){
	.contact-modern-card .card-inner{
		padding: 20px 15px;
	}

	.detail-label{
		font-size: 11px;
	}

	.detail-value{
		font-size: 13px;
	}
}


/* ============================================ */
/* Compact Contact Info Section */
/* ============================================ */
.contact-info-compact-row{
	margin-top: 50px;
}

.contact-compact-box{
	text-align: center;
	padding: 25px 20px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	height: 100%;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.contact-compact-box:hover{
	border-color: var(--accent-color);
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}

.compact-icon{
	width: 45px;
	height: 45px;
	margin: 0 auto 15px;
	background-color: var(--secondery-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-compact-box:hover .compact-icon{
	background-color: var(--primary-color);
	transform: scale(1.05);
}

.compact-icon i{
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.contact-compact-box:hover .compact-icon i{
	color: var(--white-color);
}

.contact-compact-box h4{
	font-size: 16px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
	text-transform: capitalize;
}

.compact-list{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.compact-list li{
	font-size: 13px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 6px;
	padding-left: 0;
}

.compact-list li:last-child{
	margin-bottom: 0;
}

.compact-list li small{
	font-size: 11px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	display: inline-block;
	min-width: 55px;
}

.compact-address{
	font-size: 13px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
	text-align: left;
}

/* Responsive */
@media (max-width: 991px){
	.contact-info-compact-row{
		margin-top: 40px;
	}
	
	.contact-compact-box{
		padding: 20px 15px;
	}
}

@media (max-width: 767px){
	.compact-list,
	.compact-address{
		text-align: center;
	}
}


/* ============================================ */
/* Compact Contact Info Section - Enhanced */
/* ============================================ */
.contact-info-compact-row{
	margin-top: 50px;
}

.contact-compact-box{
	text-align: center;
	padding: 30px 25px;
	background: linear-gradient(145deg, #ffffff 0%, var(--secondery-color) 100%);
	border: 2px solid transparent;
	border-radius: 12px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.contact-compact-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.contact-compact-box:hover::before{
	transform: scaleX(1);
}

.contact-compact-box:hover{
	background: var(--white-color);
	border-color: var(--divider-color);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.compact-icon{
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	box-shadow: 0 4px 12px rgba(124, 135, 127, 0.2);
}

.contact-compact-box:hover .compact-icon{
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 18px rgba(124, 135, 127, 0.3);
}

.compact-icon i{
	font-size: 22px;
	color: var(--white-color);
	transition: all 0.3s ease;
}

.contact-compact-box:hover .compact-icon i{
	transform: scale(1.1);
}

.contact-compact-box h4{
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: var(--default-font);
}

.compact-list{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.compact-list li{
	font-size: 14px;
	line-height: 2;
	color: var(--text-color);
	margin-bottom: 8px;
	padding-left: 0;
	font-weight: 500;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.compact-list li:last-child{
	margin-bottom: 0;
}

.compact-list li small{
	font-size: 11px;
	font-weight: 700;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	display: inline-block;
	min-width: 60px;
	flex-shrink: 0;
}

.compact-address{
	font-size: 14px;
	line-height: 1.9;
	color: var(--text-color);
	margin: 0;
	text-align: left;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 991px){
	.contact-info-compact-row{
		margin-top: 40px;
	}
	
	.contact-compact-box{
		padding: 25px 20px;
	}

	.contact-compact-box h4{
		font-size: 17px;
	}
}

@media (max-width: 767px){
	.compact-list{
		text-align: center;
	}

	.compact-list li{
		flex-direction: column;
		gap: 4px;
		align-items: center;
	}

	.compact-address{
		text-align: center;
	}

	.contact-compact-box h4{
		font-size: 16px;
	}
}


/* ============================================ */
/* Compact Contact Info - Flat Clean Design */
/* ============================================ */
.contact-compact-box{
	text-align: center;
	padding: 35px 25px;
	background-color: var(--secondery-color);
	border: 1px solid var(--divider-color);
	border-radius: 0;
	border-left: 4px solid var(--accent-color);
	height: 100%;
	transition: all 0.3s ease;
	margin-bottom: 20px;
	position: relative;
}

.contact-compact-box:hover{
	background-color: var(--white-color);
	border-left-color: var(--primary-color);
	border-left-width: 4px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transform: translateX(3px);
}

.compact-icon{
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	background-color: var(--white-color);
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-compact-box:hover .compact-icon{
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.compact-icon i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.contact-compact-box:hover .compact-icon i{
	color: var(--white-color);
}

.contact-compact-box h4{
	font-size: 17px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: var(--default-font);
}

.compact-list{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.compact-list li{
	font-size: 14px;
	line-height: 2.2;
	color: var(--text-color);
	margin-bottom: 5px;
	padding-left: 0;
	font-weight: 400;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.compact-list li:last-child{
	margin-bottom: 0;
}

.compact-list li small{
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	letter-spacing: 0.3px;
	flex-shrink: 0;
}

.compact-address{
	font-size: 14px;
	line-height: 2;
	color: var(--text-color);
	margin: 0;
	text-align: left;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 991px){
	.contact-compact-box{
		padding: 30px 20px;
	}

	.contact-compact-box h4{
		font-size: 16px;
	}
}

@media (max-width: 767px){
	.contact-compact-box{
		border-left: none;
		border-top: 4px solid var(--accent-color);
	}

	.contact-compact-box:hover{
		border-top-color: var(--primary-color);
		transform: translateY(-3px);
		transform: translateX(0);
	}

	.compact-list{
		text-align: center;
	}

	.compact-list li{
		flex-direction: column;
		gap: 3px;
		align-items: center;
		justify-content: center;
	}

	.compact-address{
		text-align: center;
	}
}


/* ============================================ */
/* Simple Minimal Contact List Design */
/* ============================================ */
.contact-simple-list{
	margin-top: 50px;
}

.contact-list-item{
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 25px 0;
	border-bottom: 1px solid var(--divider-color);
	transition: all 0.3s ease;
}

.contact-list-item:last-child{
	border-bottom: none;
}

.contact-list-item:hover{
	padding-left: 10px;
}

.contact-list-icon{
	flex-shrink: 0;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondery-color);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.contact-list-item:hover .contact-list-icon{
	background-color: var(--primary-color);
	transform: scale(1.05);
}

.contact-list-icon i{
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.contact-list-item:hover .contact-list-icon i{
	color: var(--white-color);
}

.contact-list-content{
	flex: 1;
}

.contact-list-content h4{
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 12px;
	text-transform: capitalize;
}

.contact-list-content p{
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 8px;
}

.contact-list-content p:last-child{
	margin-bottom: 0;
}

.contact-list-content p strong{
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
	min-width: 140px;
}

/* Responsive */
@media (max-width: 767px){
	.contact-simple-list{
		margin-top: 40px;
	}

	.contact-list-item{
		gap: 20px;
		padding: 20px 0;
	}

	.contact-list-icon{
		width: 40px;
		height: 40px;
	}

	.contact-list-icon i{
		font-size: 18px;
	}

	.contact-list-content h4{
		font-size: 16px;
	}

	.contact-list-content p{
		font-size: 14px;
	}

	.contact-list-content p strong{
		display: block;
		margin-bottom: 3px;
	}
}


/* Two Column Contact Layout */
.contact-information-section{
	padding: 80px 0;
}

.contact-information-section .contact-simple-list{
	margin-top: 30px;
}

.contact-information-section .contact-us-form{
	padding-left: 20px;
}

@media (max-width: 991px){
	.contact-information-section{
		padding: 60px 0;
	}

	.contact-information-section .contact-us-form{
		padding-left: 0;
		margin-top: 50px;
	}
}

/* ========================================
   New Why Choose Section Styles
========================================= */

.why-choose-section-new {
	padding: 100px 0;
	background-color: var(--secondery-color);
	position: relative;
	overflow: hidden;
}

.why-choose-cards-grid {
	margin-top: 60px;
	row-gap: 30px;
}

.why-choose-card {
	background: var(--white-color);
	border-radius: 12px;
	padding: 40px 30px;
	margin-bottom: 50px;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	height: 100%;
	min-height: 280px;
}

.why-choose-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.why-choose-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-card:hover::before {
	transform: scaleX(1);
}

.card-icon-wrapper {
	margin-bottom: 25px;
}

.card-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.why-choose-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
}

.card-icon i {
	color: var(--white-color);
	transition: all 0.3s ease;
}

/* Icon Color Variations */
.award-icon {
	background: linear-gradient(135deg, #FFD700, #FFA500);
}

.testing-icon {
	background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.delivery-icon {
	background: linear-gradient(135deg, #7C877F, #5A6B5E);
}

.sustainable-icon {
	background: linear-gradient(135deg, #5CB85C, #449D44);
}

.team-icon {
	background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

.global-icon {
	background: linear-gradient(135deg, #3498DB, #2980B9);
}

.facilities-icon {
	background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.card-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.why-choose-card:hover .card-content h3 {
	color: var(--accent-color);
}

.card-content p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.card-number {
	position: absolute;
	bottom: 20px;
	right: 25px;
	font-size: 60px;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.03);
	line-height: 1;
	transition: all 0.3s ease;
}

.why-choose-card:hover .card-number {
	color: rgba(0, 0, 0, 0.06);
	transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
	.why-choose-section-new {
		padding: 80px 0;
	}

	.why-choose-cards-grid {
		margin-top: 40px;
	}

	.why-choose-card {
		padding: 35px 25px;
		min-height: 260px;
		margin-bottom: 40px;
	}

	.card-icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	.card-content h3 {
		font-size: 20px;
	}

	.card-content p {
		font-size: 14px;
	}

	.card-number {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.why-choose-section-new {
		padding: 60px 0;
	}

	.why-choose-card {
		padding: 30px 20px;
		min-height: 240px;
		margin-bottom: 30px;
	}

	.card-icon {
		width: 55px;
		height: 55px;
		font-size: 24px;
	}

	.card-content h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.card-content p {
		font-size: 13px;
	}

	.card-number {
		font-size: 45px;
		bottom: 15px;
		right: 20px;
	}
}

