/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Green Clean Power Solutions - Solar Panel HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Our Project css
10. Our Testimonial css
11. Our Faqs css
12. Latest News css
13. Footer css
14. About us Page css
15. Services Page css
16. Service Single css
17. Blog Archive css
18. Blog Single css
19. Project Page css
20. Project Single css
21. Team Page css  
22. Contact us Page css
23. Gallery Page css
24.	FAQs Page css
25. 404 Page css
26. Career Application Modal css
27. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color         : #081a2f;   /* Core deep navy */
	--secondary-color       : #0f2f44;   /* Supporting midnight teal */
	--text-color            : #4b5665;   /* Neutral slate for primary body text */
	--accent-color          : #2e7536;   /* Vivid green accent */
	--accent-yellow         : #0a215b;   /* Electric sky highlight */
	--accent-lime           : #2e7536;   /* Lime punch for status/cta */
	--white-color           : #f5fbff;   /* Cool off-white base */
	--divider-color         : #ffffff1f; /* Muted light divider */
	--dark-divider-color    : #00000066; /* Subtle dark divider */
	--error-color           : #2e7536;   /* Alert/error feedback */
	--default-font          : "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 400;
	/* line-height: 1.6em; */
	color: var(--text-color);
	background-color: var(--white-color);
}

p{
line-height: 1.6em;

	margin-bottom: 1.6em;

	font-size: 1.05rem;
    line-height: 1.6;
    color: rgb(74, 85, 104);
    margin-bottom: 24px;
    text-align: justify;
    hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
}

.content-text{
	line-height: 1.6em;
	margin-bottom: 1.6em;
	font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.1em;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

.logo{
	display: block;
	max-width: 70%;
	width: 100%;
	height: auto;
}

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: -webkit-fill-available;
	margin: 0 auto;
}

/* Keep header and footer containers at current width */
.topbar .container,
header.main-header .container,
footer.main-footer .container{
	max-width: 1450px;
	margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.hidden{
    display: none !important;
}

.collapse {
    display: none;
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

.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: 100px;
    margin-left: 100px;
}

.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{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	color: #ffffff;
	background-color: var(--accent-color);
	text-transform: capitalize;
	padding: 20px 64px 20px 34px;
	border: none;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default::before{
	content: '\f062';
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: 0;
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 900;
    transition: 0.3s ease-in-out;
    background: transparent;
    color: #ffffff;
    transform: translateY(-50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-default::after{ 
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 106%;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover{
	color: #0b2f1f;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.btn-default:hover:before{
    color: #0b2f1f;
    transform: translateY(-50%) rotate(90deg);
}

.btn-default:hover::after{
	width: 106%;
}

.btn-default.btn-highlighted{
	background-color: #1f6b45;
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	border-radius: 16px;
}

.btn-default.btn-highlighted::before{
	color: #ffffff;
}

.btn-default.btn-highlighted::after{
	background: rgba(255, 255, 255, 0.15);
}

.btn-default.btn-highlighted:hover{
	color: #0b2f1f;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.btn-default.btn-highlighted:hover::before{
	color: #0b2f1f;
}

.btn-large{
	font-size: 20px;
	padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before{
	width: 40px;
	height: 40px;
	background-size: 15px;
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--primary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
	padding-top: 10px;
}

.section-btn{
	text-align: end;
}

.section-btn .btn-default.btn-highlighted{
	margin: 0;
}

.section-title{
	margin-bottom: 30px;
}

.section-title h3{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 14px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	border-radius: 999px;

	/* Border added */
	border: 2px solid #2e7536;

	/* Background */
	background: rgba(66, 94, 56, 0.08);

	/* Text */
	color: #2e7536;
	font-weight: 800; /* Extra bold */

	margin-bottom: 16px;
}

.section-title h1,
.section-title h2{
	font-size: 50px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title-content{
	margin-left: 100px;
	text-align: right;
}

.section-title-content p{
	margin: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar{
	background-color: var(--accent-color);
	padding: 12px 0;
}

.topbar-contact-info{
	padding: 0;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}

.topbar-contact-item{
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
}

.topbar-contact-item i{
	font-size: 15px;
	color: var(--white-color);
	flex-shrink: 0;
	opacity: 0.95;
}

.topbar-contact-text{
	color: var(--white-color);
	font-weight: 500;
}

.topbar-contact-text a{
	color: var(--white-color);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.topbar-contact-text a:hover{
	color: rgba(255, 255, 255, 0.85);
	text-decoration: underline;
}

.topbar-right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}


.topbar-btn{
	background-color: var(--accent-color);
	color: var(--white-color) !important;
	padding: 8px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.topbar-btn:hover{
	background-color: #7fc16c;
	color: var(--white-color) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.topbar-social-links{
	padding: 0;
}

.topbar-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.topbar-social-links ul li{
	display: inline-block;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a{
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--white-color) !important;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.topbar-social-links ul li a:hover{
	background-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.topbar-social-links ul li a i{
	font-size: 15px;
	color: var(--white-color);
}

header.main-header{
	background-color: transparent;
	position: relative;
	z-index: 100;
	padding: 15px 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	background-color: var(--white-color);
	border-radius: 15px;
	margin: 0 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-nav-modern{
	padding: 0 0 6px;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 15px;
	left: 15px;
	right: 15px;
	border-radius: 15px;
    transform: translateY(0);
	background: var(--white-color);
	border-bottom: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar{
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.header-btn{
	margin-left: 20px;
}

.header-contact-btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	background: #25682f;
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	border-radius: 6px;
	border: 1px solid #1f5a28;
	text-transform: none;
	box-shadow: 0 10px 18px rgba(37, 104, 47, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-contact-btn i{
	font-size: 14px;
}

.header-contact-btn:hover{
	background: #1f5a28;
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(31, 90, 40, 0.3);
	color: #ffffff;
}

.btn-contact{
	background-color: #1d4ed8;
	color: var(--white-color) !important;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	display: inline-block;
}

.btn-contact:hover{
	background-color: #1e40af;
	color: var(--white-color) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}
.btn-outline{
	background-color: transparent;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
	margin-right: 12px;
}
.btn-outline:hover{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.nav-floating{
	width: 100%;
	display: flex;
	justify-content: center;
}

.nav-floating__surface{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	padding: 26px 34px;
	border-radius: 90px;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(241, 247, 239, 0.9));
	border: 1px solid rgba(35, 80, 54, 0.15);
	box-shadow: 0 30px 60px rgba(16, 33, 25, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
}

.nav-floating__surface ul{
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin: 0;
	padding: 0;
}

.nav-floating__indicator{
	position: absolute;
	left: 28px;
	bottom: 18px;
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(31, 107, 69, 0.5);
}

.main-menu ul.nav-pill-menu{
	display: contents;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 14px 32px !important;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #183724;
	border-radius: 999px;
	border: 1px solid rgba(33, 74, 52, 0.08);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(16, 33, 25, 0.08);
	white-space: nowrap;
	transition: color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(18, 47, 32, 0.2), inset 0 0 0 1px rgba(66, 94, 56, 0.18);
}

.main-menu ul li a.is-active{
	color: #ffffff;
	background: linear-gradient(125deg, #196437, #2f8c50);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 22px 40px rgba(9, 34, 23, 0.3);
}

.main-menu ul li a.is-active::before{
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	pointer-events: none;
}


@media (max-width: 991px){
	.nav-floating__surface{
		border-radius: 36px;
		padding: 20px;
	}
	.main-menu ul.nav-pill-menu{
		justify-content: center;
	}
	.main-menu ul li a{
		min-width: 100%;
		text-align: center;
	}
}

@media (max-width: 575px){
	.header-btn{
		margin-left: 0;
		margin-top: 16px;
		width: 100%;
		justify-content: center;
	}
	.header-cta{
		width: 100%;
		justify-content: space-between;
	}
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px) scale(0.95);
	transform-origin: top;
	padding: 8px 0;
	margin: 10px 0 0 0;
	list-style: none;
	width: 220px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--white-color);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: left;
	z-index: 999;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
	margin-left: 8px;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
	position: relative;
}

.main-menu ul ul li:not(:last-child)::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.main-menu ul ul li a{
	color: var(--primary-color);
	padding: 12px 24px !important;
	transition: all 0.25s ease-in-out;
	display: block;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}

.main-menu ul ul li a::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent-color);
	transform: scaleY(0);
	transition: transform 0.25s ease-in-out;
	transform-origin: center;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
	margin-top: 8px;
}

.main-menu ul ul li a:hover{
	color: var(--accent-color);
	background-color: rgba(0, 210, 106, 0.06);
	padding-left: 28px !important;
}

.main-menu ul ul li a:hover::before{
	transform: scaleY(1);
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 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 .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	padding: 80px 0 70px;
	background-image: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
}

.hero.hero-slider{
	text-align: center;
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide{
	position: relative;
}

.hero.hero-slider:before{
	display: none ;
}

.hero.hero-slider .hero-slider-layout{
	position: relative;
	z-index: 2;
}

.hero-slider-layout .hero-slide::before{
	display: none;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
}

.hero-slider-layout .swiper-pagination{
    bottom: 100px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--white-color);
}

/* Hero Slider Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    color: var(--white-color);
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev.swiper-button-disabled,
.hero-slider-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hero Card Layout */
.hero-card-section {
	background: linear-gradient(135deg, #f7fbff 0%, #ffffff 45%, #ecf4ef 100%);
	position: relative;
	overflow: hidden;
}

.hero-card-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 20%, rgba(31, 107, 69, 0.08) 0%, transparent 45%),
	            radial-gradient(circle at 85% 80%, rgba(37, 76, 156, 0.08) 0%, transparent 50%);
	pointer-events: none;
}


.hero-card {
	background: var(--white-color);
	border-radius: 18px;
	padding: 0;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.05);
}

.hero-card.solo {
	max-width: 100%;
	margin: 0 auto;
}

.hero-card-section .container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 12px;
}

.hero-card-media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	height: 750px;
	width: 100%;
}

.hero-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-card-media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.78) 10%, rgba(0, 0, 0, 0.35) 55%, transparent 90%);
	opacity: 0.9;
}

.hero-card-content--banner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: clamp(40px, 5vw, 60px);
	right: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 18px;
	padding: clamp(32px, 6vw, 90px) clamp(20px, 4vw, 60px);
	z-index: 1;
	max-width: min(640px, calc(100% - clamp(80px, 10vw, 120px)));
	width: auto;
}

.hero-card-content.hero-card-content--banner {
	color: #fff;
	text-align: left;
	width: 100%;
}

.hero-card-content.hero-card-content--banner h1 {
	color: #f8fafc;
	font-size: clamp(1.5rem, 4vw, 4rem);
	line-height: 1.2;
	text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	margin: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.hero-card-content.hero-card-content--banner h1 span {
	color: rgb(255, 255, 255);
	display: inline-block;
}

.hero-card-content.hero-card-content--banner p {
	color: rgba(248, 250, 252, 0.92);
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	line-height: 1.7;
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	margin: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.hero-review-pill {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	color: #111827;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	width: fit-content;
	max-width: 100%;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease;
	flex-wrap: wrap;
}

.hero-review-pill:hover {
	transform: translateY(-2px);
}

.hero-review-pill img {
	width: 32px;
	height: 32px;
}

.hero-review-pill__rating span {
	display: block;
	font-size: 0.85rem;
	color: #111827;
}

.hero-review-pill__stars {
	display: flex;
	gap: 2px;
	color: #facc15;
	font-size: 0.85rem;
}

.hero-review-pill strong {
	font-size: 0.9rem;
}

.hero-review-pill i {
	color: #111827;
}

.hero-card-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
}

.hero-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(31, 107, 69, 0.12);
	color: var(--accent-color);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}

.hero-card-content h1 {
	font-size: clamp(2.2rem, 3vw, 3.4rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
	color: #0f172a;
}

.hero-card-content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4c566a;
	margin: 0;
}

.hero-card-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 18px;
}

.hero-stat {
	background: rgba(31, 107, 69, 0.08);
	border-radius: 18px;
	padding: 16px 18px;
	border: 1px solid rgba(31, 107, 69, 0.15);
}

.hero-stat strong {
	display: block;
	font-size: 1.6rem;
	color: var(--accent-color);
	line-height: 1.2;
}

.hero-stat span {
	font-size: 0.95rem;
	color: #4c566a;
	line-height: 1.4;
	display: block;
}

.hero-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 6px;
}

.hero-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--accent-color);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 18px 30px rgba(37, 211, 102, 0.3);
	white-space: nowrap;
	transition: all 0.3s ease;
}

.hero-whatsapp-btn:hover {
	color: #fff;
	background: #1ebe5a;
}

.btn-default.btn-outline {
	background: transparent;
	color: var(--accent-color);
	border: 1.5px solid rgba(31, 107, 69, 0.4);
}

.btn-default.btn-outline:hover {
	background: linear-gradient(120deg, var(--accent-color), var(--accent-yellow));
	color: #0b2f1f;
	border-color: var(--accent-color);
}

.hero-card-slider .swiper-pagination {
	position: relative;
	margin-top: 18px;
}

.hero-card-nav {
	top: 50%;
}

.hero-card-nav .hero-slider-prev,
.hero-card-nav .hero-slider-next {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(15, 23, 42, 0.1);
	color: var(--accent-color);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
	font-size: 14px;
}

.hero-card-nav .hero-slider-prev {
	left: 10px;
}

.hero-card-nav .hero-slider-next {
	right: 10px;
}

.hero-card-nav .hero-slider-prev:hover,
.hero-card-nav .hero-slider-next:hover {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-yellow));
	color: #0b2f1f;
	transform: scale(1.05);
}

.hero-card-slider .swiper-pagination {
	margin-top: 8px;
}

.hero-card-slider .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 4px;
}

/* Large tablets and below (1199px and below) */
@media (max-width: 1199px) {
	.hero-card-content--banner {
		left: clamp(30px, 4vw, 50px);
		max-width: min(600px, calc(100% - clamp(60px, 8vw, 100px)));
		padding: clamp(28px, 5.5vw, 80px) clamp(20px, 3.5vw, 50px);
	}
}

/* Tablet and below (991px and below) */
@media (max-width: 991px) {
	.hero-card-section {
		padding: 24px 0 16px;
	}

	.hero-card {
		border-radius: 16px;
	}

	.hero-card-media {
		height: clamp(300px, 50vh, 400px);
		border-radius: 16px;
		min-height: 300px;
	}

	.hero-card-content--banner {
		left: clamp(20px, 3vw, 40px);
		right: auto;
		max-width: min(600px, calc(100% - clamp(40px, 6vw, 80px)));
		padding: clamp(24px, 5vw, 40px) clamp(20px, 3vw, 40px);
		gap: 16px;
		align-items: flex-start;
	}

	.hero-card-content--banner h1 {
		font-size: clamp(1.75rem, 4.5vw, 2.5rem);
		line-height: 1.25;
		text-align: left;
	}

	.hero-card-content--banner p {
		font-size: clamp(0.95rem, 2vw, 1.05rem);
		line-height: 1.6;
	}

	.hero-review-pill {
		padding: 10px 16px;
		gap: 12px;
		font-size: 0.9rem;
		transform: scale(0.98);
		transform-origin: left;
	}

	.hero-review-pill img {
		width: 28px;
		height: 28px;
	}

	.hero-review-pill__rating span {
		font-size: 0.8rem;
	}

	.hero-review-pill__stars {
		font-size: 0.8rem;
	}

	.hero-review-pill strong {
		font-size: 0.85rem;
	}

	.hero-whatsapp-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}

	.hero-card-actions {
		gap: 12px;
		flex-wrap: wrap;
	}

	.hero-card-section .swiper {
		padding-bottom: 16px;
	}

	.hero-card-nav .hero-slider-prev,
	.hero-card-nav .hero-slider-next {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.hero-card-nav .hero-slider-prev {
		left: 8px;
	}

	.hero-card-nav .hero-slider-next {
		right: 8px;
	}
}

/* Mobile devices (767px and below) */
@media (max-width: 767px) {
	.hero-card-section {
		padding: 20px 0 14px;
	}

	.hero-card-media {
		height: clamp(250px, 45vh, 350px);
		min-height: 250px;
	}

	.hero-card-content--banner {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		padding: clamp(20px, 4vw, 32px);
		gap: 14px;
		text-align: center;
		align-items: center;
		margin: 0;
	}

	.hero-card-content--banner h1 {
		font-size: clamp(1.5rem, 5vw, 2rem);
		text-align: center;
		width: 100%;
	}

	.hero-card-content--banner p {
		font-size: clamp(0.9rem, 2.5vw, 1rem);
		text-align: center;
		max-width: 100%;
		width: 100%;
		display: none;
	}

	.hero-review-pill {
		padding: 8px 14px;
		gap: 10px;
		font-size: 0.85rem;
		transform: scale(1);
		transform-origin: center;
		width: auto;
		margin: 0 auto;
	}

	.hero-review-pill img {
		width: 26px;
		height: 26px;
	}

	.hero-review-pill__rating span {
		font-size: 0.75rem;
	}

	.hero-review-pill__stars {
		font-size: 0.75rem;
	}

	.hero-review-pill strong {
		font-size: 0.8rem;
	}

	.hero-review-pill i {
		font-size: 0.75rem;
	}

	.hero-whatsapp-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 24px;
		font-size: 0.95rem;
	}

	.hero-card-actions {
		width: 100%;
		justify-content: center;
	}
}

/* Small mobile devices (575px and below) */
@media (max-width: 575px) {
	.hero-card-section {
		padding: 16px 0 12px;
	}

	.hero-card {
		border-radius: 12px;
	}

	.hero-card-media {
		height: clamp(220px, 40vh, 300px);
		border-radius: 12px;
		min-height: 220px;
	}

	.hero-card-content--banner {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		padding: clamp(16px, 3.5vw, 24px);
		gap: 12px;
		margin: 0;
		text-align: center;
		align-items: center;
	}

	.hero-card-content--banner h1 {
		font-size: clamp(1.35rem, 6vw, 1.75rem);
		line-height: 1.3;
		text-align: center;
		width: 100%;
	}

	.hero-card-content--banner p {
		font-size: clamp(0.85rem, 3vw, 0.95rem);
		line-height: 1.55;
		text-align: center;
		width: 100%;
		display: none;
	}

	.hero-review-pill {
		padding: 7px 12px;
		gap: 8px;
		font-size: 0.8rem;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 100%;
	}

	.hero-review-pill img {
		width: 24px;
		height: 24px;
	}

	.hero-review-pill__rating {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.hero-review-pill__rating span {
		font-size: 0.7rem;
	}

	.hero-review-pill__stars {
		font-size: 0.7rem;
	}

	.hero-review-pill strong {
		font-size: 0.75rem;
		white-space: nowrap;
	}

	.hero-review-pill i {
		font-size: 0.7rem;
	}

	.hero-whatsapp-btn {
		padding: 12px 20px;
		font-size: 0.9rem;
		gap: 8px;
	}

	.hero-whatsapp-btn i {
		font-size: 1rem;
	}

	.hero-card-actions {
		gap: 10px;
	}

	.hero-card-section .swiper {
		padding-bottom: 10px;
	}

	.hero-card-nav .hero-slider-prev,
	.hero-card-nav .hero-slider-next {
		width: 28px;
		height: 28px;
		font-size: 11px;
	}

	.hero-card-nav .hero-slider-prev {
		left: 5px;
	}

	.hero-card-nav .hero-slider-next {
		right: 5px;
	}
}

/* Extra small devices (400px and below) */
@media (max-width: 400px) {
	.hero-card-content--banner {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		padding: 14px;
		gap: 10px;
		margin: 0;
		text-align: center;
		align-items: center;
	}

	.hero-card-content--banner h1 {
		font-size: clamp(1.2rem, 7vw, 1.5rem);
		text-align: center;
		width: 100%;
	}

	.hero-card-content--banner p {
		font-size: clamp(0.8rem, 3.5vw, 0.9rem);
		text-align: center;
		width: 100%;
		display: none;
	}

	.hero-review-pill {
		padding: 6px 10px;
		gap: 6px;
		font-size: 0.75rem;
	}

	.hero-review-pill img {
		width: 22px;
		height: 22px;
	}

	.hero-whatsapp-btn {
		padding: 11px 18px;
		font-size: 0.85rem;
	}
}

/* Hero Slider Layout - Default Style */
.hero-slider-layout {
	position: relative;
	overflow: hidden;
}

.hero-main-slider {
	position: relative;
	width: 100%;
}

.hero-slider-layout .swiper-slide {
	position: relative;
}

.hero-slider-layout .swiper-slide .hero {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 80px 0 70px;
	min-height: 70vh;
	display: flex;
	align-items: center;
}





.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.hero-content-title{
	margin-bottom: 30px;
}

.hero-content-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.hero-content-title h1,
.hero-content-title h2{
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--white-color);
	cursor: none;
}

.hero-content-body{
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.hero-content-body p{
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.hero-content-footer .btn-default.btn-highlighted{
	margin-left: 20px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	background: url(../images/squre-bg-img-2.svg) no-repeat left bottom;
    background-size: auto;
	padding: 100px 0;
}

.about-content-body{
	margin-bottom: 40px;
}

.about-content-body ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-content-body ul li{
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-content-body ul li:last-child{
	margin-bottom: 0px;
}

.about-content-body ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.about-image{
	position: relative;
}

.about-image::before{
	content: '';
    position: absolute;
    background-image: url(../images/white-squre-bg-img.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.about-image figure{
	display: block;
}

.about-image img{
	aspect-ratio: 1/1.3;
	object-fit: cover;
}

.about-company-item{
	display: flex;
	margin-bottom: 40px;
}

.about-company-item:last-child{
	margin-bottom: 0;
}

.about-company-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	width: 60px;
	height: 60px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.about-company-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.about-company-item:hover .icon-box:before{
	transform: scale(1);
}

.about-company-item .icon-box img{
	position: relative;
	z-index: 1;
}

.about-company-content{
	width: calc(100% - 80px);
}

.about-company-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-company-content p{
	margin: 0;
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services{
	position: relative;
	background-color: #f5f8fb;
	padding: 100px 0;
	color: #1f2a37;
	--white-color: #ffffff;
	--divider-color: rgba(15, 23, 42, 0.08);
}

.our-services .section-title h3{
	display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(66, 94, 56, 0.1);
    color: #425e38;
    margin-bottom: 16px;
}

.service-item{
	position: relative;
	background-color: var(--white-color);
	text-align: center;
	padding: 40px;
	transition: all 0.4s ease-in-out;
    overflow: hidden;
	cursor: none;
	box-sizing: border-box;
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 24px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    height: 100%;
	z-index: 1;
}

.service-item:hover:before{
    top: 0;
}

.service-item::after{
	content: '';
	position: absolute;
	background-image: url('../images/squre-bg-img.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	z-index: 1;
}

.our-services .col-lg-3:nth-of-type(even) .service-item{
	margin-top: 70px;
}

.service-item .icon-box{
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
	flex-shrink: 0;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-item .icon-box img{
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.service-thumb{
	position: relative;
	z-index: 2;
	border-radius: 22px;
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: 0 18px 35px rgba(4, 20, 9, 0.12);
}

.service-thumb img{
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
	transition: transform 0.4s ease-in-out;
}

.service-item:hover .service-thumb img{
	transform: scale(1.08);
}

.service-body{
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.service-body h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
	flex-shrink: 0;
	min-height: 28px;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.service-item:hover .service-body h3{
	color: var(--white-color);
}

.service-body p{
	margin: 0;
	transition: all 0.3s ease-in-out;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	-webkit-box-orient: vertical;
	line-height: 1.6;
}

.page-service-item .service-body p{
	-webkit-line-clamp: unset !important;
	line-clamp: unset !important;
	overflow: visible !important;
	text-overflow: unset !important;
}

.service-item:hover .service-body p[style*="color:var(--accent-color)"],
.service-item:hover .service-body p[style*="color: var(--accent-color)"],
.service-item:hover .service-body p[style*="color:var(--text-muted)"],
.service-item:hover .service-body p[style*="color: var(--text-muted)"] {
	color: var(--white-color) !important;
}

.service-item:hover .service-body p {
	color: var(--white-color) !important;
}

.service-item:hover .service-footer a {
	color: var(--white-color) !important;
}

.service-item:hover .service-footer a::after {
	color: var(--white-color) !important;
}

.service-footer{
	position: relative;
	z-index: 2;
	margin-top: auto;
	flex-shrink: 0;
}

.service-footer a{
	position: relative;
	color: var(--accent-color);
	text-transform: capitalize;
	padding-right: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 2;
	display: inline-block;
}

.service-footer a:hover{
	color: var(--white-color);
}

.service-footer a::after{
	content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--accent-color);
    position: absolute;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.service-footer a:hover:after{
	color: var(--white-color);
}

.service-footer-btn{
	text-align: center;
    margin-top: 50px;
}

/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	position: relative;
	background: url('../images/squre-bg-img-2.svg') no-repeat left bottom;
	background-size: auto;
	padding: 100px 0 70px;
}

.why-choose-content{
	margin-right: 100px;
}

.why-choose-image{
	position: relative;
	margin-bottom: 30px;
}

.why-choose-image figure{
	display: block;
}

.why-choose-image::after{
	content: '';
	position: absolute;
	background-image: url('../images/white-squre-bg-img.svg');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	right: 0;
	bottom: 0;
	width: 52px;
	height: 52px;
	z-index: 1;
}

.why-choose-image img{
	aspect-ratio: 1/0.96;
	object-fit: cover;
}

.why-choose-item{
	position: relative;
	border: 1px solid var(--divider-color);
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
    overflow: hidden;
	cursor: none;
}

.why-choose-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--secondary-color);
    transition: all 0.4s ease-in-out;
    height: 100%;
	z-index: -1;
}

.why-choose-item:hover:before{
    top: 0;
}

.why-choose-item .icon-box{
	margin-bottom: 20px;
}

.why-choose-body{
	margin-bottom: 20px;
}

.why-choose-body h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-body p{
	margin-bottom: 0;
}

.why-choose-footer a{
	position: relative;
	color: var(--accent-color);
	text-transform: capitalize;
	padding-right: 20px;
	transition: all 0.3s ease-in-out;
}

.why-choose-footer a:hover{
	color: var(--primary-color);
}

.why-choose-footer a::after{
	content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--accent-color);
    position: absolute;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.why-choose-footer a:hover:after{
	color: var(--primary-color);
}

/************************************/
/***     08. Intro Video css	  ***/
/************************************/

.intro-video{
	position: relative;
}

.intro-video::after{
    content: '';
    position: absolute;
    background-image: url('../images/white-squre-bg-img.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
	background-size: contain;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
    position: relative;
    overflow: hidden;
	cursor: none;
}

.intro-video-box .video-image img{
	width: 100%;
	aspect-ratio: 1/0.40;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.intro-video-box:hover .video-image img{
    transform: scale(1.1);
}

.intro-video-box .video-image a{
	cursor: none;
}

.video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.video-play-button a{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 40px;
	color: var(--white-color);
}

/************************************/
/***     09. Our Project css	  ***/
/************************************/

.our-project{
	padding: 100px 0 50px;
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 65%, #edf2f7 100%);
	color: #1f2a37;
	--text-color: #4b5665;
}

.our-project .container-fluid{
	padding: 0;
}

.our-project .container-fluid .row .col-lg-3{
	padding: 0;
}

.project-item{
	position: relative;
	cursor: none;
}

.project-image a{
	position: relative;
	cursor: none;
	display: block;
}

.project-image a::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(102, 102, 102, 0) 45%, var(--primary-color) 100%);
	z-index: 0;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1/1.2;
	object-fit: cover;
}

.project-content{
	position: absolute;
	bottom: 10px;
	right: 30px;
	left: 30px;
	text-align: center;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-content{
	transform: translateY(-10px);
}

.project-content h3{
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin: 0;
}

.project-content .project-readmore-btn{
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease-out;
	margin-top: 10px;
}

.project-item:hover .project-content .project-readmore-btn{
	height: 46px;
}

.project-readmore-btn .btn-default{
	padding: 15px 30px 15px 30px;
}

.project-readmore-btn .btn-default::before{
    content: none;
    transform: translate(-30px, -50%) rotate(45deg);
}

.project-readmore-btn .btn-default:hover:before{
    transform: translate(-30px, -50%) rotate(90deg);
}

/************************************/
/***    10. Our Testimonial css - Modern Design   ***/
/***************************************************/

.our-testimonial{
	position: relative;
	padding: 100px 0 80px;
	background-color: #f7fafc;
	overflow: hidden;
	color: #1f2a37;
	--text-color: #4b5665;
	--white-color: #ffffff;
}

.our-testimonial::before {
	content: none;
}

.our-testimonial .container {
	position: relative;
	z-index: 1;
}

.our-testimonial .swiper-wrapper{
	cursor: grab;
}

.our-testimonial .swiper-wrapper:active {
	cursor: grabbing;
}

.testimonial-item{
	position: relative;
	background: var(--white-color);
	border: 1.5px solid rgba(15, 23, 42, 0.1);
	border-radius: 16px;
	padding: 30px 26px;
	transition: all 0.3s ease;
	overflow: visible;
	box-shadow: 0 2px 15px rgba(15, 23, 42, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.testimonial-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item::before{
    opacity: 1;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item {
	border-color: rgba(31, 107, 69, 0.2);
	box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
}

.testimonial-header{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.author-image{
	width: 55px;
	height: 55px;
	margin-right: 14px;
	border-radius: 50%;
	overflow: visible;
	flex-shrink: 0;
	position: relative;
}

.author-image figure{
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(31, 107, 69, 0.2);
	transition: border-color 0.3s ease;
	position: relative;
	z-index: 1;
}

.testimonial-slider .swiper-slide.swiper-slide-active .author-image figure {
	border-color: rgba(31, 107, 69, 0.35);
}

.author-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.author-content{
	width: calc(100% - 69px);
	flex: 1;
}

.author-content h2{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 4px;
	transition: all 0.3s ease;
	color: var(--primary-color);
	line-height: 1.3;
}

.testimonial-slider .swiper-slide.swiper-slide-active .author-content h2{
	color: var(--accent-color);
}

.author-content p{
	color: var(--text-color);
	font-size: 13px;
	text-transform: capitalize;
	margin: 0;
	transition: color 0.3s ease;
	opacity: 0.7;
	font-weight: 500;
}

.testimonial-slider .swiper-slide.swiper-slide-active .author-content p{
	color: var(--accent-color);
	opacity: 0.8;
}

.testimonial-body{
	position: relative;
	z-index: 2;
	flex: 1;
	margin-top: 8px;
}

.testimonial-body::before {
	content: '"';
	position: absolute;
	top: -8px;
	left: -5px;
	font-size: 45px;
	color: rgba(31, 107, 69, 0.12);
	font-family: Georgia, serif;
	line-height: 1;
	font-weight: bold;
	transition: all 0.3s ease;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-body::before {
	color: rgba(31, 107, 69, 0.18);
}

.testimonial-body p{
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	font-weight: 400;
	color: var(--text-color);
	position: relative;
	z-index: 1;
}

.testimonial-slider {
	position: relative;
	padding: 0 10px;
}

.testimonial-slider .swiper-pagination{
	position: relative;
	text-align: center;
	bottom: 0 !important;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background-color: rgba(15, 23, 42, 0.2);
	opacity: 1;
	margin: 0 !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 2px solid transparent;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
	width: 28px;
	border-radius: 5px;
	transform: scale(1.05);
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active::before {
	border-color: rgba(31, 107, 69, 0.3);
}

/************************************/
/***       11. Our Faqs css	      ***/
/************************************/

.our-faqs{
	background-color: #f7fafc;
	padding: 100px 0;
	color: #2f3947;
	--text-color: #4b5665;
	--divider-color: rgba(15, 23, 42, 0.08);
	--white-color: #ffffff;
}

.our-faqs .section-title{
	position: sticky;
	top: 20px;
}

.our-faqs .section-title h3{
	display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 15px;
    border-radius: 999px;
    background: rgba(66, 94, 56, 0.1);
    color: #425e38;
    margin-bottom: 16px;
	font-weight: bold;
}

.faq-accordion{
	margin-left: 30px;
}

.faq-accordion .accordion-item{
	position: relative;
	background: none;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child{
	border: none;
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 5px 30px 5px 80px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px) rotate(45deg);
	background-image: url(../images/icon-plus.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translate(0px, -10px) rotate(0deg);
}

.faq-accordion .accordion-item .accordion-button span{
	position: absolute;
	left: 0;
	top: 0;
	bottom: auto;
	transform: translateY(50%);
	font-size: 22px;
	line-height: 1em;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) span{
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body{
	padding: 5px 30px 5px 80px;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body p{
	margin: 0;
}

/************************************/
/***     12. Latest News css	  ***/
/************************************/

.latest-news{
	position: relative;
	background: url('../images/squre-bg-img.svg') no-repeat left top;
	background-size: auto;
	padding: 100px 0 70px;
}

.blog-item{
	position: relative;
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
	overflow: hidden;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image img{
	aspect-ratio: 1/0.65;
	object-fit: cover;
	transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	border: 1px solid var(--divider-color);
	border-top: 0;
	padding: 25px;
	overflow: hidden;
}

.blog-item:hover .post-item-content{
	border-color: var(--secondary-color);
}

.post-item-meta{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.post-item-meta ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-item-meta ul li{
	display: inline-block;
	margin-right: 20px;	
}

.post-item-meta ul li:last-child{
	margin-right: 0;
}

.post-item-meta ul li a{
	color: var(--primary-color);
	text-transform: capitalize;
}

.post-item-meta ul li a i{
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 10px;
}

.post-item-body{
	margin-bottom: 20px;
}

.post-item-body h2{
	font-size: 22px;
	line-height: 1.4em;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-footer a{
    position: relative;
    color: var(--accent-color);
    text-transform: capitalize;
    padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.post-item-footer a:hover{
    color: var(--primary-color);
}

.post-item-footer a::after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--accent-color);
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.post-item-footer a:hover:after{
    color: var(--primary-color);
}

/************************************/
/***        13. Footer css - Reference Design Match      ***/
/************************************/

/* Newsletter Area */
.newsletter-area{
	background: #d4af37;
	padding: 35px 0;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.newsletter-area.bg-theme{
	background-color: #d4af37;
}

.newsletter-subscribe{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.newsletter-subscribe h3{
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	text-transform: none;
	line-height: 1.3;
	font-family: var(--default-font);
	white-space: nowrap;
}

.newsletter-subscribe form{
	display: flex;
	align-items: center;
	gap: 0;
	flex: 1;
	max-width: 480px;
}

.newsletter-subscribe form .form-control{
	flex: 1;
	padding: 13px 18px;
	border: none;
	outline: none;
	font-size: 15px;
	color: #333;
	background: #ffffff;
	border-radius: 8px 0 0 8px;
	height: 48px;
	box-sizing: border-box;
	font-family: var(--default-font);
}

.newsletter-subscribe form .form-control::placeholder{
	color: #999;
	font-weight: 400;
}

.newsletter-subscribe form button{
	background: #d4af37;
	border: none;
	padding: 0;
	width: 48px;
	height: 48px;
	min-width: 48px;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 0 8px 8px 0;
	flex-shrink: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-subscribe form button:hover{
	background: #b8941f;
	transform: translateY(-1px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.newsletter-subscribe form button i{
	font-size: 18px;
	color: #ffffff;
}

/* Footer Card Section */
.footer-card-section {
	position: relative;
	padding: 60px 0 40px;
	background-color: transparent;
}

.footer-card-section .container {
	position: relative;
	z-index: 1;
}

/* Footer One */
.footer-one{
	background: #1a2332;
	color: #ffffff;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 70px 0 0;
}

.footer-style-one{
	padding-bottom: 50px;
}

/* Footer Item */
.footer-item{
	margin-bottom: 0;
}

.footer-item.mt-50{
	margin-top: 50px;
}

.f-item{
	height: 100%;
}

.f-item.about .logo{
	margin-bottom: 18px;
}

.f-item.about .logo img{
	max-width: 160px;
	height: auto;
	display: block;
}

.f-item.about p{
	color: #ffffff;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 28px 0;
	font-family: var(--default-font);
}

/* Opening Hours */
.opening-hours{
	margin-bottom: 28px;
}

.opening-hours h5{
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 18px 0;
	text-transform: none;
	font-family: var(--default-font);
}

.opening-list{
	list-style: none;
	padding: 0;
	margin: 0;
}

.opening-list li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	color: #ffffff;
	font-size: 15px;
	font-family: var(--default-font);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-weight: 500;
}

.opening-list li:last-child{
	border-bottom: none;
}

.opening-list li .text-end{
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	text-align: right;
}

/* Contact Us Button */
.btn-theme{
	background: #d4af37;
	color: #ffffff;
	padding: 13px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	text-transform: none;
	border: none;
	cursor: pointer;
	font-family: var(--default-font);
	display: inline-block;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-theme:hover{
	background: #b8941f;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-md{
	padding: 13px 32px;
	font-size: 16px;
}

.mt-30{
	margin-top: 30px;
}

/* Footer Links */
.f-item.link ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.f-item.link ul li{
	margin-bottom: 12px;
}

.f-item.link ul li:last-child{
	margin-bottom: 0;
}

.f-item.link ul li a{
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: none;
	font-family: var(--default-font);
}

.f-item.link ul li a:hover{
	color: #d4af37;
	padding-left: 5px;
}

/* Widget Title */
.widget-title{
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 18px 0;
	text-transform: none;
	font-family: var(--default-font);
}

/* Footer Contact */
.f-item.contact ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.f-item.contact ul li{
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.f-item.contact ul li:last-child{
	margin-bottom: 0;
}

.f-item.contact ul li .icon{
	margin-right: 15px;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-item.contact ul li .icon i{
	color: #666666;
	font-size: 15px;
}

.f-item.contact ul li .content{
	flex: 1;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.7;
	font-family: var(--default-font);
}

.f-item.contact ul li .content a{
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.f-item.contact ul li .content a:hover{
	color: #d4af37;
}

/* Footer Bottom */
.footer-bottom{
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
	background: #1a2332;
}

.footer-bottom p{
	color: rgba(255, 255, 255, 0.7);
	text-transform: none;
	margin: 0;
	font-size: 14px;
	font-family: var(--default-font);
}

.footer-bottom ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	align-items: center;
}

.footer-bottom ul li{
	margin: 0;
}

.footer-bottom ul li a{
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	font-family: var(--default-font);
}

.footer-bottom ul li a:hover{
	color: #d4af37;
}

/* Footer Responsive Styles */
@media only screen and (max-width: 991px) {
	.newsletter-area{
		padding: 30px 0;
	}

	.newsletter-subscribe{
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.newsletter-subscribe h3{
		white-space: normal;
		font-size: 22px;
		margin-bottom: 0;
	}

	.newsletter-subscribe form{
		width: 100%;
		max-width: 100%;
	}

	.footer-one{
		padding: 60px 0 0;
	}

	.footer-style-one{
		padding-bottom: 40px;
	}

	.footer-item.mt-50{
		margin-top: 40px;
	}

	.widget-title{
		font-size: 18px;
	}

	.footer-bottom ul{
		justify-content: flex-start;
		margin-top: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.newsletter-area{
		padding: 25px 0;
	}

	.newsletter-subscribe{
		align-items: center;
		text-align: center;
	}

	.newsletter-subscribe h3{
		font-size: 20px;
		margin-bottom: 15px;
		white-space: normal;
	}

	.newsletter-subscribe form{
		flex-direction: column;
		gap: 12px;
	}

	.newsletter-subscribe form .form-control{
		border-radius: 8px;
		width: 100%;
	}

	.newsletter-subscribe form button{
		width: 100%;
		border-radius: 8px;
		height: 48px;
	}

	.footer-one{
		padding: 50px 0 0;
	}

	.footer-style-one{
		padding-bottom: 30px;
	}

	.footer-item.mt-50{
		margin-top: 35px;
	}

	.f-item.about .logo{
		text-align: center;
	}

	.f-item.about .logo img{
		margin: 0 auto;
		max-width: 150px;
	}

	.f-item.about p{
		text-align: center;
		font-size: 14px;
	}

	.opening-hours{
		text-align: center;
	}

	.opening-hours h5{
		font-size: 17px;
		margin-bottom: 18px;
	}

	.opening-list li{
		font-size: 14px;
		padding: 10px 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.opening-list li .text-end{
		width: 100%;
		text-align: left;
		padding-left: 0;
	}

	.btn-theme{
		width: 100%;
		text-align: center;
		display: block;
		padding: 12px 30px;
		font-size: 15px;
	}

	.widget-title{
		font-size: 17px;
		margin-bottom: 18px;
		text-align: center;
	}

	.f-item.link ul{
		text-align: center;
	}

	.f-item.link ul li a{
		font-size: 14px;
	}

	.f-item.contact ul li{
		flex-direction: column;
		text-align: center;
		margin-bottom: 20px;
	}

	.f-item.contact ul li .icon{
		margin: 0 auto 12px;
	}

	.f-item.contact ul li .content{
		text-align: center;
		font-size: 14px;
	}

	.footer-bottom{
		padding: 20px 0;
		text-align: center;
	}

	.footer-bottom .row > div{
		text-align: center !important;
	}

	.footer-bottom ul{
		justify-content: center;
		flex-wrap: wrap;
		margin-top: 10px;
	}

	.footer-bottom p{
		font-size: 13px;
	}

	.footer-bottom ul li a{
		font-size: 13px;
	}
}

/************************************/
/***    13.1 Modern Footer Design  ***/
/************************************/

/* Modern Newsletter Area */
.newsletter-area-modern {
	background: linear-gradient(135deg, #1f6b45 0%, #2e7536 50%, #1f6b45 100%);
	padding: 10px 0;
	position: relative;
	overflow: hidden;
}

.newsletter-area-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
	opacity: 0.3;
	animation: float 20s infinite linear;
}

@keyframes float {
	0% { transform: translateY(0); }
	100% { transform: translateY(-100px); }
}

.newsletter-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.newsletter-content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	min-width: 300px;
}

.newsletter-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.newsletter-icon i {
	font-size: 25px;
	color: #ffffff;
}

.newsletter-text h3 {
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.newsletter-text p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	margin: 0;
	line-height: 1.6;
}

.newsletter-form-wrapper {
	flex: 1;
	max-width: 500px;
	min-width: 280px;
}

.newsletter-form-modern {
	width: 100%;
}

.input-group-modern {
	display: flex;
	background: #ffffff;
	border-radius: 12px;
	padding: 2px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	gap: 6px;
}

.form-control-modern {
	flex: 1;
	padding: 14px 20px;
	border: none;
	outline: none;
	font-size: 15px;
	color: #333;
	background: transparent;
	font-family: var(--default-font);
	border-radius: 8px;
}

.form-control-modern::placeholder {
	color: #999;
	font-weight: 400;
}

.btn-subscribe {
	background: #35763d;
	color: #ffffff;
	border: none;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-subscribe:hover {
	background: #35763d;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(246, 192, 0, 0.4);
}

.btn-subscribe i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.btn-subscribe:hover i {
	transform: translateX(3px);
}

/* Modern Footer */
.footer-modern {
	background: #2e7536;
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	overflow: hidden;
}

.footer-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-main {
	padding: 60px 0 50px;
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
	gap: 50px;
}

.footer-col {
	position: relative;
}

.footer-about {
	max-width: 100%;
}

.footer-card-wrapper {
	max-width: 100%;
}

.footer-card-wrapper .footer-card {
	height: 100%;
}

.footer-logo {
	margin-bottom: 24px;
}

.footer-logo img {
	max-width: 180px;
	height: auto;
	display: block;
	filter: brightness(1.1);
	transition: transform 0.3s ease;
}

.footer-logo:hover img {
	transform: scale(1.05);
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 30px 0;
}

.footer-social h5 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px 0;
}

.social-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.social-links li {
	margin: 0;
}

.social-links a {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.social-links a:hover {
	background: linear-gradient(135deg, #f6c000 0%, #d4af37 100%);
	border-color: #f6c000;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(246, 192, 0, 0.3);
}

.social-links a i {
	font-size: 18px;
}

.footer-title {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 24px 0;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent-yellow);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	padding: 4px 0;
}

.footer-links a i {
	font-size: 10px;
	opacity: 1;
	transform: translateX(0);
	transition: all 0.3s ease;
	margin-right: 5px;
	color: #4ade80;
}

.footer-links a:hover {
	padding-left: 8px;
}

.footer-links a:hover i {
	opacity: 1;
	transform: translateX(0);
}

/* Contact Info */
.footer-contact {
	position: relative;
}

.contact-info {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

/* Simple Footer Contact Styles - Matching Footer Card Design */
.contact-simple {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.office-simple, .email-simple {
	border-radius: 8px;
	padding: 25px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: relative;
}

.office-simple-header, .email-simple-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e7eb;
}

.office-simple-indicator, .email-simple-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #2e7536;
	box-shadow: 0 0 6px rgba(46, 117, 54, 0.4);
	flex-shrink: 0;
}

.office-simple-title, .email-simple-title {
	font-size: 16px;
	font-weight: 700;
	color: #3a4a5a;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.office-simple-content, .email-simple-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-simple-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
	transition: all 0.2s ease;
}

.contact-simple-item:hover {
	transform: translateX(4px);
}

.contact-simple-icon {
	width: 32px;
	height: 32px;
	background-color: #3a4a5a;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-simple-item:hover .contact-simple-icon {
	background-color: #2e7536;
	transform: scale(1.05);
}

.contact-simple-icon i {
	font-size: 14px;
	color: #ffffff;
}

.contact-simple-text {
	color: #000000;
	font-size: 14px;
	line-height: 1.5;
	flex: 1;
	text-decoration: none;
}

.contact-simple-text strong {
	color: #2e7536;
	font-weight: 600;
	margin-right: 6px;
}

/* Simple Contact Section - Uses existing footer styles */

/* Improved Contact and Email Section Styles */
.footer-contact .footer-links li {
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.footer-contact .footer-links li i {
	margin-right: 8px;
	color: #2e7536;
	font-size: 14px;
	text-align: center;
}

.footer-contact .footer-links li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	margin-right: 15px;
}

.footer-contact .footer-links li a:hover {
	color: #ffffff;
}

.footer-contact .footer-links li strong {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}

.footer-contact .footer-links li strong:first-child {
	color: #ffffff !important;
}

/* Phone numbers container - side by side layout */
.footer-col .phone-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.footer-col .email-links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.footer-col .phone-numbers a,
.footer-col .email-links a {
	margin-right: 0;
}

/* Update Footer Grid for Different Column Sizes */
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
	gap: 25px;
	align-items: start;
}

/* Responsive Design for Simple Footer Contact */
@media only screen and (max-width: 1400px) {
	.footer-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
	}
}

@media only screen and (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.footer-contact {
		grid-column: 1 / -1;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.contact-simple {
		gap: 15px;
	}
	
	.office-simple, .email-simple {
		padding: 20px 15px;
	}
	
	.office-simple-header, .email-simple-header {
		gap: 10px;
		margin-bottom: 12px;
	}
	
	.office-simple-title, .email-simple-title {
		font-size: 15px;
	}
	
	.contact-simple-item {
		gap: 10px;
		padding: 6px 0;
	}
	
	.contact-simple-icon {
		width: 28px;
		height: 28px;
	}
	
	.contact-simple-icon i {
		font-size: 12px;
	}
	
	.contact-simple-text {
		font-size: 13px;
	}
}

@media only screen and (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.office-simple, .email-simple {
		padding: 15px 12px;
	}
	
	.office-simple-header, .email-simple-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.office-simple-title, .email-simple-title {
		font-size: 14px;
	}
	
	.contact-simple-item {
		gap: 8px;
	}
	
	.contact-simple-icon {
		width: 26px;
		height: 26px;
	}
	
	.contact-simple-text {
		font-size: 12px;
	}
}

.contact-info li:last-child {
	margin-bottom: 0;
}

.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-info li:hover .contact-icon {
	background: transparent;
	border-color: transparent;
	transform: scale(1.1);
	box-shadow: none;
}

.contact-icon i {
	font-size: 18px;
	color: #ffffff
}

.contact-info li:hover .contact-icon i {
	color: #ffffff;
}

.contact-text {
	flex: 1;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.7;
}

.contact-text a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Footer Bottom Modern */
.footer-bottom-modern {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 28px 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin: 0;
}

.footer-links-bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-links-bottom a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links-bottom .separator {
	color: rgba(255, 255, 255, 0.3);
	margin: 0 4px;
}

/* Responsive Styles for Modern Footer */
@media only screen and (max-width: 1199px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 40px;
	}
	
	.footer-contact {
		grid-column: 1 / -1;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.newsletter-area-modern {
		padding: 50px 0;
	}
	
	.newsletter-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}
	
	.newsletter-content {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	
	.newsletter-form-wrapper {
		width: 100%;
		max-width: 100%;
	}
	
	.footer-main {
		padding: 60px 0 50px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.footer-about {
		grid-column: 1 / -1;
	}
	
	.footer-contact {
		grid-column: 1 / -1;
		margin-top: 0;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.newsletter-area-modern {
		padding: 40px 0;
	}
	
	.newsletter-text h3 {
		font-size: 24px;
	}
	
	.newsletter-text p {
		font-size: 14px;
	}
	
	.input-group-modern {
		flex-direction: column;
		padding: 0;
		gap: 12px;
	}
	
	.form-control-modern {
		border-radius: 12px;
		padding: 14px 18px;
	}
	
	.btn-subscribe {
		width: 100%;
		justify-content: center;
		border-radius: 12px;
	}
	
	.footer-main {
		padding: 50px 0 40px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	
	.footer-about,
	.footer-contact {
		grid-column: 1;
	}
	
	.footer-title {
		font-size: 18px;
	}
	
	.footer-links-bottom {
		justify-content: center;
		flex-direction: column;
		gap: 8px;
	}
	
	.footer-links-bottom .separator {
		display: none;
	}
}

/************************************/
/***    14. About us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	padding: 150px 0px;
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Aboutus.jpg') no-repeat center center;
	background-size: cover;
}

.page-header::after{
	content: '';
    position: absolute;
   
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1{
	color: var(--white-color);
	font-size: 80px;
	letter-spacing: -0.02em;
    margin-bottom: 30px;
	cursor: none;
}

.page-header-box ol{
	display: inline-flex;
    margin-bottom: 0;
	justify-content: center;
	background-color:var(--accent-color);
	border-radius: 80px;
	padding: 15px 20px;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--white-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.1em;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

/* Page-specific header background images */
.page-header.about-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/aboutus.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.contact-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/contactus.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.service-header{

	background-size: cover;
}

.page-header.career-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Career1.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.gallery-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Gallery.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.team-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/ourteam.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.project-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Projects.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.blog-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/blog.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.partner-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/partnerwithus.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.product-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Products.jpg') no-repeat center center !important;
	background-size: cover !important;
}

.page-header.mission-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/ourmission.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.vision-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/Ourvision.jpg') no-repeat center center;
	background-size: cover;
}

.page-header.faqs-header{
	background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/title-img/faqs.jpg') no-repeat center center;
	background-size: cover;
}

/* Desktop specific styles for page headers */
@media (min-width: 1200px) {
	.page-header.about-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/aboutus.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.contact-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/contactus.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.service-header {
	
		background-size: cover !important;
	}
	
	.page-header.career-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/Career1.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.gallery-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/Gallery.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.team-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/ourteam.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.project-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/Projects.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.blog-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/blog.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.partner-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/partnerwithus.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.product-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/Products.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.mission-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/ourmission.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.vision-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/Ourvision.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
	
	.page-header.faqs-header {
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 100%), url('../images/title-img/faqs.jpg') no-repeat center center !important;
		background-size: cover !important;
	}
}

.page-about-us{
	padding: 100px 0;
	background: url('../images/green-squre-bg-img.svg') no-repeat bottom right;
	background-size: auto;
}

.about-us-image{
	position: relative;
	padding-bottom: 140px;
	margin-right: 40px;
}

.about-img-2{
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-1{
	position: relative;
	width: 470px;
}

.about-img-1::before{
	position: absolute;
	content: '';
	background: url('../images/white-squre-bg-img.svg') no-repeat top left;
	background-size: 100% auto;
	width: 52px;
	height: 52px;
	top: 0;
	left: 0;
	z-index: 1;
}

.about-img-1 img{
	aspect-ratio: 1 /1;
	object-fit: cover;
}

.about-img-2 img{
	aspect-ratio: 1 /1.2;
	object-fit: cover;
	border-width: 10px 0 0 10px;
	border-style: solid;
	border-color: var(--white-color);
	border-radius: 0px;
}

.experience-counter-item{
	background: var(--accent-color);
	width: 195px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	position: absolute;
	top: 0;
	right: 0;	
}

.experience-counter-item .experience-counter-content h3{
	color: var(--white-color);
	font-size: 50px;
	margin-bottom: 10px;
}

.experience-counter-item .experience-counter-content p{
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0;
}

.client-counter-item{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	animation: moveobject 3s infinite linear alternate;
}


@keyframes moveobject{
	50%{
		left: 40px;
	}
}

.client-counter-item .client-counter-content h3{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-company-quality{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.company-quality-item{
	width: 48%;
	margin-right: 2%;
	display: flex;
	align-items: center;
}

.company-quality-item .icon-box{
	position: relative;
    background-color: white;
    width: 85px;
    height: 85px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.company-quality-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    border-radius: 0px;
	z-index: 0;
}

.company-quality-item .icon-box img{
	z-index: 1;
	position: relative;
}

.company-quality-item:hover .icon-box:before{
	transform: scale(1);
}

.company-quality-item .company-quality-content{
    width: calc(100% - 105px);
}

.company-quality-item .company-quality-content h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.about-story-footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.about-story-footer ul li{
	width: 48%;
	margin-right: 2%;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 20px;
	position: relative;
}

.about-story-footer ul li:last-child{
	margin-bottom: 0;
}

.about-story-footer ul li::before{
	content: '\f00C';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 6px;
    left: 0;
}

.about-story-btn{
	margin-top: 20px;
}

.company-counter{
	padding: 50px 0;
	background: var(--accent-color);
}

.company-counter-item{
	text-align: center;
	position: relative;
}

.company-counter-item:before{
	content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -15px;
    bottom: 50%;
    width: 1px;
    height: 90%;
    background: var(--dark-divider-color);
    transform: translateY(-50%);
}

.company-counter .col-lg-3:last-child .company-counter-item:before{
	display: none;
}

.company-counter-item .counter-content h3{
	color: var(--white-color);
	font-size: 50px;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.company-counter-item .counter-content p{
	color: var(--white-color);
	font-size: 22px;
	font-weight: 700;
	text-transform: capitalize;
	margin: 0;
}

.how-it-work{
	background: url(../images/squre-bg-img.svg) no-repeat right bottom;
    background-size: auto;
	padding: 100px 0;
}

.how-it-work .section-title{
	position: sticky;
	top: 20px;
}

.faq-accordion.how-work-accordion .accordion-item .accordion-button::after,
.faq-accordion.how-work-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f062';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translate(0, -10px) rotate(90deg);
	background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion.how-work-accordion .accordion-item .accordion-button.collapsed::after{
    transform: translate(0, -10px) rotate(45deg);
	color: var(--primary-color);
}

.company-expertise{
	padding: 100px 0;
	background: white;
}

.company-expertise .section-title h3{
	background: var(--white-color);
}

.company-expertise-body{
	margin-bottom: 30px;
}

.company-expertise-footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.company-expertise-footer ul li{
	background: var(--white-color);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	border: 1px solid var(--divider-color);
	width: calc(50% - 10px);
	padding: 15px 15px 15px 40px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.company-expertise-footer ul li:before{
	content: '\f00C';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 20px;
    left: 15px;
	transition: all 0.3s ease-in-out;
}

.company-expertise-footer ul li:hover{
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
}

.company-expertise-footer ul li:hover:before{
	color: var(--white-color);
}

.expertise-counter-image{
	position: relative;
	text-align: right;
	margin-left: 65px;
}

.company-expertise-img{
	display: block;
	position: relative;
	border-radius: 999px 999px 0 0;
	overflow: hidden;
}

.company-expertise-img::after{
	content: '';
	display: block;
	position: absolute;	
	background: url('../images/squre-bg-img.svg') no-repeat bottom right;
	background-size: 100% auto;
	width: 52px;
	height: 52px;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.company-expertise-img figure::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #0E0D1B99 43.92%, transparent 61%);
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
}

.satisfied-client{
	position: absolute;
	top: 40px;
	left: 0;
	background-color: var(--white-color);
	border-radius: 140px;
	width: 300px;
	padding: 15px 40px;
	z-index: 2;
	animation: moveobjects 3s infinite linear alternate;
}

@keyframes moveobjects{
	50%{
		left: 50px;
	}
}

.satisfied-counter-box{
	display: flex;
	align-items: center;
}

.satisfied-client-icon{
	margin-right: 15px;
}

.satisfied-client-icon img{
	width: 60px;
}

.satisfied-client-content{
	width: calc(100% - 75px);
	text-align: left;
}

.satisfied-client-content h3{
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-color);
	text-align: left;
	margin-bottom: 5px;
}

.satisfied-client-content p{
	font-size: 18px;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

/* Mission & Vision Sections */
.mission-vision-section {
	padding: 100px 0;
	position: relative;
}

.mission-vision-section.vision-section {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.mission-content,
.vision-content {
	margin-bottom: 30px;
}

.mission-body,
.vision-body {
	margin-top: 25px;
}

.mission-body p,
.vision-body p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.mission-goals {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 35px;
}

.goal-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
	color: var(--text-color);
}

.goal-item i {
	color: var(--accent-color);
	font-size: 20px;
	flex-shrink: 0;
}

.mission-image,
.vision-image {
	position: relative;
}

.mission-image img,
.vision-image img {

	object-fit: cover;
	border-radius: 16px;
	width: 100%;
}

.vision-aspirations {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-top: 35px;
}

.aspiration-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 25px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.aspiration-item:hover {
	transform: translateX(10px);
	border-color: var(--accent-color);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.aspiration-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.aspiration-item:hover .aspiration-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.aspiration-icon i {
	font-size: 28px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.aspiration-item:hover .aspiration-icon i {
	color: var(--white-color);
}

.aspiration-content h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.aspiration-content p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

/* Mission Details Section */
.mission-details-section {
	padding: 100px 0;
	background: url('../images/squre-bg-img-2.svg') no-repeat left top;
	background-size: auto;
}

.gujarat-presence{
	padding: 110px 0;
	background-color: #f6f9fc;
	position: relative;
	overflow: hidden;
	color: #1f2a37;
	--text-color: #4b5665;
	--divider-color: rgba(15, 23, 42, 0.08);
	--white-color: #ffffff;
}

.gujarat-presence::before{
	content: none;
}

.gujarat-presence .container{
	position: relative;
	z-index: 1;
}

.presence-content p{
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 25px;
}

.presence-highlights{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.presence-highlights li{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: var(--text-color);
	font-weight: 600;
}

.presence-highlights li i{
	color: var(--accent-color);
	font-size: 18px;
}

.presence-states{
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.presence-states span{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(31, 107, 69, 0.12);
	color: #1d3a6e;
	font-weight: 600;
	font-size: 14px;
}

.presence-states i{
	color: var(--accent-color);
}

.presence-map{
	text-align: center;
}

.presence-map img{
	max-width:70%;
	height: auto;
	filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.15));
}

@media only screen and (max-width: 991px) {
	.gujarat-presence{
		padding: 50px 0;
	}

	.presence-map{
		margin-top: 30px;
	}

	.presence-states{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.presence-highlights li{
		align-items: flex-start;
		font-size: 15px;
	}

	.gujarat-presence{
		padding: 40px 0;
	}
}

.mission-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.mission-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.mission-card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mission-card:hover .mission-card-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.mission-card-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.mission-card:hover .mission-card-icon i {
	color: var(--white-color);
}

.mission-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.mission-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

/* Vision Future Section */
.vision-future-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.vision-goal-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.vision-goal-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.vision-goal-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.vision-goal-card:hover .vision-goal-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.vision-goal-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.vision-goal-card:hover .vision-goal-icon i {
	color: var(--white-color);
}

.vision-goal-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.vision-goal-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.meet-team{
	padding: 100px 0 70px;
	background: url('../images/squre-bg-img.svg') no-repeat left top;
	background-size: auto;
}

.team-member-item{
	position: relative;
	transition: all 0.4s ease-out;
	margin-bottom: 30px;
}

.team-member-item::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background: linear-gradient(180deg, transparent 43.92%, #0e0d1b8c 74.39%);
    border-radius: 0px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.team-member-item .team-image{
    position: relative;
    overflow: hidden;
	border-radius: 0px;
}

.team-member-item .team-image img{
	width: 100%;
	border-radius: 0px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
	text-align: center;
    transition: all 0.4s ease-out;
    z-index: 2;
}

.team-content{
	margin-bottom: 10px;
}

.team-content h3{
	color: var(--white-color);
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon{
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease-out;
}

.team-member-item:hover .team-social-icon{
	height: 40px;
}

.team-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
}

.team-social-icon ul li a i{
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 18px;
    width: 40px;
    height: 40px;
	border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-out;
}

.team-social-icon ul li a i:hover{
	background: var(--white-color);
    color: var(--accent-color);
}

.cta-box{
	padding: 100px 0;
	background: linear-gradient(186.24deg, rgba(14, 13, 27, 0.63) 4.68%, rgba(14, 13, 27, 0.9) 94.91%), url('../images/cta-bg-img.jpg') no-repeat center center;
	background-size: cover;
}

.cta-content{
	text-align: center;
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}

.cta-content .section-title h3{
	background: var(--accent-color);
	color: var(--white-color);
}

.cta-content .section-title h2{
	color: var(--white-color);
}

.cta-content-body{
	margin-bottom: 40px;
	position: relative;
}

.cta-content-body:before{
	position: absolute;
	content: '';
	background: url('../images/icon-circle-arrow.svg') no-repeat left bottom;
	background-size: 100% auto;
	width: 85px;
	height: 85px;
	bottom: -85px;
	left: 85px;
	animation: arrowmoveobjects 2s infinite linear alternate;
}

@keyframes arrowmoveobjects{
	50%{
		left: 65px;
	}
}

.cta-content-body p{
	color: var(--white-color);
	margin: 0;
}

.cta-content-footer .btn-default::after{
	background: rgba(255, 255, 255, 0.15);
}

.our-testimonial.about-testimonial{
	padding: 100px 0;
	background: url('../images/squre-bg-img.svg') no-repeat top left;
	background-size: auto;
}

/************************************/
/***    15. Services Page css	  ***/
/************************************/

.page-service{
	padding: 100px 0 70px;
}

.page-service .row {
	display: flex;
	flex-wrap: wrap;
}

.page-service .col-lg-3,
.page-service .col-md-6,
.page-service .col-12 {
	display: flex;
	flex-direction: column;
}

.service-item.page-service-item{
	border: 1px solid var(--divider-color);
	height: 100%;
	min-height: 450px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.service-item.page-service-item::after{
    display: none;
}

.our-testimonial.service-testimonial{
	padding: 100px 0;
}

/************************************/
/***   16. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 10px;
}

.service-catagery-list{
	padding: 30px;
	border: 1px solid var(--divider-color);
}

.service-catagery-list h3{
	font-size: 26px;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--divider-color);
}

.service-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li a{
	display: block;
    position: relative;
	background: transparent;
    color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.service-catagery-list ul li a::after{
    content: '\f062';
    font-family: "Font Awesome 6 Free";
	font-weight: 700;
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
	transform: translate(0px, -50%) rotate(45deg);
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
	color: var(--accent-color);
	transform: translate(0px, -50%) rotate(90deg);
}

.service-featured-image{
	margin-bottom: 30px;
	position: relative;
}

.service-featured-image:after{
	position: absolute;
    content: '';
    background: url('../images/white-squre-bg-img.svg') no-repeat top left;
    background-size: 100% auto;
    width: 52px;
    height: 52px;
    top: 0;
    left: 0;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-why-choose{
	padding: 100px 0;
	background: white url('../images/white-squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.service-why-choose .section-title h3{
	background: var(--white-color);
	color: var(--accent-color);
}

.service-why-choose-body{
	margin-bottom: 30px;
}

.service-why-choose-body p{
	margin: 0;
}

.service-why-choose-list{
	margin-bottom: 30px;
}

.service-why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-why-choose-list ul li{
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
}

.service-why-choose-list ul li:last-child{
	margin-bottom: 0;
}

.service-why-choose-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.why-choose-video-box{
	position: relative;
	overflow: hidden;
}

.service-why-choose-image a{
	cursor: none;
}

.service-why-choose-image img{
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.service-why-choose-image:hover img{
	transform: scale(1.1);
}

.video-button{
	position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.video-button a{
	background-color: var(--accent-color);
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: none;
}

.video-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-button a i{
	font-size: 26px;
	color: var(--white-color);
}

.service-benefits{
	padding: 100px 0 70px;
	background: url('../images/squre-bg-img-2.svg') no-repeat bottom left;
	background-size: auto;
}

.service-benefits .section-title{
	text-align: center;
}

.service-benefit-item{
	padding: 40px;
	border: 1px solid var(--divider-color);
	text-align: center;
	margin-bottom: 30px;
	height: calc(100% - 30px);
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: none;
}

.service-benefit-item:before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--secondary-color);
    transition: all 0.4s ease-in-out;
    height: 100%;
    z-index: -1;
}

.service-benefit-item:hover:before{
	top: 0;
}

.service-benefit-item .icon-box{
	margin-bottom: 20px;
}

.service-benefit-item .service-benefit-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.service-benefit-item .service-benefit-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.service-strategy{
	padding: 100px 0;
	background: white url('../images/white-squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.service-strategy .section-title h3{
	background: var(--white-color);
	color: var(--accent-color);
}

.service-strategy-image{
	position: relative;
	overflow: hidden;
}

.service-strategy-image figure::before{
	position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 60.5%);
    z-index: 1;
}

.service-strategy-image::after{
	position: absolute;
    content: '';
    background: url('../images/squre-bg-img.svg') no-repeat bottom right;
    background-size: 100% auto;
    width: 52px;
    height: 52px;
	right: -1px;
	bottom: 0;
	z-index: 2;
}

.service-strategy-title{
	margin-bottom: 20px;
}

.service-strategy-title h3{
	font-size: 22px;
	text-transform: capitalize;
}

.service-strategy-body{
	margin-bottom: 20px;
}

.service-strategy-body p:last-child{
	margin: 0;
}

.service-strategy-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-strategy-list ul li{
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
}

.service-strategy-list ul li:last-child{
	margin-bottom: 0;
}

.service-strategy-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.our-services-faqs{
	background: url('../images/squre-bg-img-2.svg') no-repeat bottom left;
	background-size: auto;
	padding: 100px 0;
}

.our-services-faqs .section-title{
	position: sticky;
	top: 20px;
}

/************************************/
/***     17. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.post-pagination{
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    margin: 0 4px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease-out;
}

.post-pagination ul li.active a, 
.post-pagination ul li a:hover{
    background: var(--accent-color);
}

/************************************/
/***     18. Blog Single css	  ***/
/************************************/

.post-single-meta ul li{
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
}

.post-single-meta ul li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
	font-size: 14px;
	color: var(--white-color);
	margin-right: 5px;
}

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image::after{
    content: '';
    position: absolute;
    background-image: url(../images/white-squre-bg-img.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.post-image figure{
	display: block;
}

.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 12px;
}

.google-reviews-simple{
	position: relative;
	padding: clamp(70px, 8vw, 120px) 0;
	padding-left: 100px;
	padding-right: 100px;
	background: #f9fbff;
}
.google-reviews-simple__intro{
	display: flex;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: clamp(24px, 5vw, 48px);
}
.google-reviews-simple__intro p{
	color: #485366;
	margin-top: 8px;
	max-width: 560px;
}
.google-reviews-simple__chips{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.google-reviews-simple__chips span{
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgb(0 0 0);
}
.google-reviews-simple__layout{
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: stretch;
}
.google-reviews-simple__summary{
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.google-reviews-simple__brand{
	display: flex;
	gap: 18px;
	align-items: center;
	max-width: 335px;
	overflow: hidden;
}
.google-reviews-simple__summary img{
	width: 56px;
	height: 56px;
}
.google-reviews-simple__place{
	font-weight: 600;
	margin-bottom: 4px;
	color: #0f172a;
}
.google-reviews-simple__rating{
	display: flex;
	align-items: center;
	gap: 12px;
}
.google-reviews-simple__rating strong{
	font-size: 38px;
	color: #0f172a;
	line-height: 1;
}
.google-reviews-simple__rating .stars{
	color: #facc15;
	display: flex;
	gap: 4px;
	font-size: 16px;
}
.google-reviews-simple__stats{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 16px 0 8px;
}
.google-reviews-simple__stat{
	background: #f1f5f9;
	border-radius: 16px;
	padding: 14px;
	text-align: center;
}
.google-reviews-simple__stat .value{
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
}
.google-reviews-simple__stat .label{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #475569;
}
.google-reviews-simple__count{
	margin: 0;
	color: #475569;
	font-size: 14px;
}
.google-reviews-simple__cta{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--accent-color);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease;
	width: 100%;
}
.google-reviews-simple__cta i{
	font-size: 14px;
}
.google-reviews-simple__cta:hover{
	background: #0b4ed6;
}
.review-error{
	color: var(--error-color);
	font-size: 14px;
	margin: 0;
}
.review-error.hidden{
	display: none;
}
.google-review-slider{
	position: relative;
	background: #fff;
	border-radius: 28px;
	padding: clamp(16px, 2vw, 24px);
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.google-review-slider__footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 8px;
}
.google-review-card{
	background: #fdfdfd;
	border-radius: 20px;
	padding: 24px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}
.google-review-card header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.google-mark{
	width: 34px;
	height: 34px;
}
.review-author{
	display: flex;
	align-items: center;
	gap: 12px;
}
.review-author img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(15, 23, 42, 0.08);
}
.review-author h4{
	font-size: 16px;
	margin: 0;
}
.review-author span{
	font-size: 13px;
	color: var(--text-color);
	opacity: 0.8;
}
.review-stars{
	color: #f59e0b;
	font-size: 16px;
	display: flex;
	gap: 4px;
}
.review-text{
	color: var(--text-color);
	line-height: 1.6;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}
.google-review-card.expanded .review-text{
	-webkit-line-clamp: unset;
	line-clamp: unset;
}
.review-toggle{
	border: none;
	background: transparent;
	color: var(--accent-color);
	font-weight: 600;
	align-self: flex-start;
	cursor: pointer;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.review-toggle::after{
	content: '\f061';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 11px;
}
.google-review-pagination{
	width: 200px;
	max-width: 100%;
	margin: 0;
}
.google-review-nav{
	display: inline-flex;
	gap: 12px;
}
.google-review-nav button{
	width: 48px;
	height: 48px;
	border-radius: 16px;
	border: none;
	background: #0f172a;
	color: #fff;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.google-review-nav button:hover{
	transform: translateY(-2px);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

@media (max-width: 991px){
	.google-reviews-simple__layout{
		grid-template-columns: 1fr;
	}
	.google-reviews-simple__summary{
		order: -1;
	}
	.google-reviews-simple__chips{
		justify-content: center;
	}
}

@media (max-width: 768px){
	.google-review-slider__footer{
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.google-review-pagination{
		width: 100%;
	}
	.google-review-nav{
		justify-content: center;
	}
}

@media (max-width: 575px){
	.google-review-nav button{
		min-height: 44px;
		min-width: 44px;
		height: 44px;
		border-radius: 14px;
	}
}

.language-modal-overlay{
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 9999;
}
.language-modal-overlay.is-visible{
	display: flex;
}
.language-modal{
	background: var(--white-color);
	border-radius: 18px;
	max-width: 420px;
	width: 100%;
	padding: 32px 28px;
	box-shadow: 0 25px 70px rgba(15,23,42,0.25);
	position: relative;
	text-align: center;
}
.language-modal__close{
	position: absolute;
	top: 12px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--primary-color);
}
.language-modal__options{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 24px 0;
}
.language-option{
	border: 1px solid var(--accent-color);
	background: transparent;
	color: var(--primary-color);
	padding: 12px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.language-option:hover{
	background: var(--accent-color);
	color: var(--white-color);
}
.language-trigger{
	cursor: pointer;
}

/* Contact Form Modal Styles */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal-overlay[aria-hidden="false"] .contact-modal {
    transform: scale(1);
}

.contact-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    transition: color 0.2s ease;
}

.contact-modal__close:hover {
    color: #333;
}

.contact-modal__header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.contact-modal__title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.contact-modal__subtitle {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.contact-modal__body {
    padding: 30px;
}

.contact-modal__footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.contact-modal__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-modal__btn--secondary {
    background: #f8f9fa;
    color: #6c757d;
}

.contact-modal__btn--secondary:hover {
    background: #e9ecef;
}

.contact-modal__btn--primary {
    background: #28a745;
    color: white;
}

.contact-modal__btn--primary:hover {
    background: #218838;
}

/* Calculator Details Styles */
.calculator-details {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-top: 15px;
}

.calculator-details h5 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #28a745;
    padding-bottom: 8px;
}

.calculator-details p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.calculator-details strong {
    color: #333;
    font-weight: 600;
    min-width: 150px;
    display: inline-block;
}

/* Alert styles in modal */
.contact-modal__body .alert {
    margin-top: 20px;
    border-radius: 6px;
}

/* Enhanced Alert Styles */
.contact-modal__body .alert {
	margin-top: 20px;
	border-radius: 12px;
	padding: 16px 20px;
	border: none;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.contact-modal__body .alert::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.contact-modal__body .alert-success {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	color: #155724;
}

.contact-modal__body .alert-success::before {
	background: var(--accent-color);
}

.contact-modal__body .alert-danger {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	color: #721c24;
}

.contact-modal__body .alert-danger::before {
	background: #dc3545;
}

/* Form validation styling */
.contact-modal .form-control.is-valid {
	border-color: var(--accent-color);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232e7536' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 16px;
	padding-right: 40px;
}

.contact-modal .form-control.is-invalid {
	border-color: #dc3545;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 16px;
	padding-right: 40px;
}

/* Loading state */
.contact-modal__btn.loading {
	pointer-events: none;
	opacity: 0.7;
}

.contact-modal__btn.loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	margin: auto;
	border: 2px solid transparent;
	border-top-color: currentColor;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Responsive improvements */
@media (max-width: 767px) {
	.contact-modal {
		border-radius: 16px;
		margin: 10px;
		max-width: calc(100% - 20px);
	}
	
	.contact-modal__header {
		padding: 24px 20px 20px;
	}
	
	.contact-modal__title {
		font-size: 24px;
	}
	
	.contact-modal__body {
		padding: 24px 20px;
	}
	
	.contact-form-section {
		padding: 20px;
		margin-bottom: 24px;
	}
	
	.contact-form-section__header {
		margin-bottom: 16px;
		padding-bottom: 12px;
	}
	
	.contact-form-section__icon {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
	
	.contact-form-section__title {
		font-size: 16px;
	}
	
	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.contact-modal .form-control {
		padding: 14px 16px 14px 44px;
		font-size: 14px;
	}
	
	.contact-modal textarea.form-control {
		padding-left: 44px;
		min-height: 100px;
	}
	
	.input-wrapper .input-icon {
		left: 14px;
		font-size: 14px;
	}
	
	.textarea-wrapper .textarea-icon {
		left: 14px;
		top: 14px;
		font-size: 14px;
	}
	
	.contact-modal__footer {
		padding: 20px;
		flex-direction: column;
		gap: 12px;
	}
	
	.contact-modal__btn {
		width: 100%;
		order: 2;
	}
	
	.contact-modal__btn--secondary {
		order: 1;
	}
}

@media (max-width: 480px) {
	.contact-modal__body {
		padding: 20px 16px;
	}
	
	.contact-form-section {
		padding: 16px;
	}
	
	.contact-modal .form-control {
		padding: 12px 14px 12px 40px;
	}
	
	.contact-modal textarea.form-control {
		padding-left: 40px;
	}
	
	.input-wrapper .input-icon {
		left: 12px;
	}
	
	.textarea-wrapper .textarea-icon {
		left: 12px;
		top: 12px;
	}
}

/* Enhanced Contact Form Popup Modal */
.contact-modal-overlay{
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.contact-modal-overlay.is-visible{
	display: flex;
	opacity: 1;
}
.contact-modal{
	background: var(--white-color);
	border-radius: 20px;
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	text-align: left;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	transform: scale(0.95) translateY(20px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal-overlay.is-visible .contact-modal {
	transform: scale(1) translateY(0);
}

.contact-modal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-yellow));
	z-index: 1;
}

.contact-modal__close{
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(15, 23, 42, 0.08);
	color: var(--text-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	z-index: 10;
	transition: all 0.3s ease;
}
.contact-modal__close:hover{
	background: var(--accent-color);
	color: white;
	transform: rotate(90deg) scale(1.1);
}
.contact-modal__header{
	padding: 24px 24px 18px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: linear-gradient(135deg, rgba(46, 117, 54, 0.05) 0%, rgba(10, 33, 91, 0.05) 100%);
}
.contact-modal__title{
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 6px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.contact-modal__subtitle{
	color: var(--text-color);
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}
.contact-modal__body{
	padding: 24px;
}

/* Enhanced Form Styles */
.contact-modal .form-group {
	margin-bottom: 24px;
}

.contact-form-section {
	margin-bottom: 24px;
	background: rgba(248, 251, 255, 0.4);
	border-radius: 12px;
	padding: 18px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	transition: all 0.3s ease;
}

.contact-form-section:hover {
	background: rgba(248, 251, 255, 0.6);
	border-color: rgba(46, 117, 54, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-section__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-form-section__icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--accent-color), var(--accent-yellow));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(46, 117, 54, 0.25);
}

.contact-form-section__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-modal .form-group {
	margin-bottom: 18px;
}

.contact-modal .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.input-wrapper, .textarea-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.input-wrapper .input-icon {
	position: absolute;
	left: 14px;
	color: var(--text-color);
	font-size: 14px;
	z-index: 2;
	transition: color 0.3s ease;
}

.textarea-wrapper .textarea-icon {
	position: absolute;
	left: 14px;
	top: 12px;
	color: var(--text-color);
	font-size: 14px;
	z-index: 2;
	transition: color 0.3s ease;
}

.contact-modal .form-control {
	width: 100%;
	padding: 12px 16px 12px 40px;
	border: 2px solid rgba(15, 23, 42, 0.1);
	border-radius: 10px;
	font-size: 14px;
	font-family: var(--default-font);
	background: var(--white-color);
	color: var(--primary-color);
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
}

.contact-modal textarea.form-control {
	resize: vertical;
	min-height: 100px;
	line-height: 1.5;
	padding-top: 12px;
	padding-left: 40px;
}

.contact-modal .form-control:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 
		0 0 0 3px rgba(46, 117, 54, 0.1),
		0 4px 12px rgba(46, 117, 54, 0.15);
	transform: translateY(-2px);
}

.contact-modal .form-control:focus + .input-icon,
.contact-modal .form-control:focus ~ .input-icon {
	color: var(--accent-color);
}

.contact-modal .form-control::placeholder {
	color: #9ca3af;
	font-weight: 400;
}

.contact-modal__footer{
	padding: 18px 24px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(248, 251, 255, 0.5);
	gap: 12px;
}
.contact-modal__btn{
	padding: 14px 28px;
	border-radius: 12px;
	border: none;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	min-width: 140px;
}

.contact-modal__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.contact-modal__btn:hover::before {
	left: 100%;
}

.contact-modal__btn--primary{
	background: linear-gradient(135deg, var(--accent-color), #1e5f28);
	color: white;
	box-shadow: 0 4px 15px rgba(46, 117, 54, 0.3);
}
.contact-modal__btn--primary:hover{
	background: linear-gradient(135deg, #1e5f28, var(--accent-color));
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(46, 117, 54, 0.4);
}
.contact-modal__btn--secondary{
	background: var(--white-color);
	color: var(--text-color);
	border: 2px solid rgba(15, 23, 42, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.contact-modal__btn--secondary:hover{
	background: rgba(15, 23, 42, 0.05);
	border-color: var(--accent-color);
	color: var(--accent-color);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.visually-hidden{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.goog-te-banner-frame{
	display: none !important;
}
body{
	position: relative;
	top: 0 !important;
}
body .skiptranslate{
	display: none !important;
}

.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{
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 58px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 700;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.post-entry ul{
	list-style: none;
	padding: 0;
	margin: 20px 0 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.post-entry ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.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: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 40px 46px;
	background-size: 45px;
	padding: 40px 40px 40px 110px;
	margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	display: inline-block;
}

.tag-links{
	font-size: 30px;
	font-weight: 600;
	color: var(--primary-color);
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 8px 15px;
    margin-left: 10px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-color: var(--primary-color);
}

.post-tags .tag-links a::before{
    display: none;
}

.post-tags .tag-links a::after{
    background-color: var(--accent-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;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--white-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}

/************************************/
/***     19. Project Page css  	  ***/
/************************************/

.our-projects{
	padding: 100px 0 70px;
}

.our-projects .section-title{
	text-align: center;
}

.our-projects-nav{
	margin-bottom: 50px;
}

.our-projects-nav ul{
	list-style: none;
	text-align: center;
	padding: 0;margin: 0;
}

.our-projects-nav ul li{
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 10px;
}

.our-projects-nav ul li:last-child{
	margin-right: 0;
}

.our-projects-nav ul li a{
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-weight: 600;
	padding: 8px 20px;
	text-transform: capitalize;
	transition: 0.4s ease-in-out;
}

.our-projects-nav ul li a:hover{
	background-color: var(--accent-color);
}

.our-projects-nav ul li a.active-btn{
	background-color: var(--accent-color);
}

.project-item-box .project-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***    20. Project Single css    ***/
/************************************/

.page-project-single{
	background: url('../images/squre-bg-img.svg') no-repeat bottom right;
	background-size: auto;
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 10px;
}

.project-info-box{
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.project-info-box-title{
	margin-bottom: 30px;
}

.project-info-box-title h3{
	font-size: 22px;
	text-transform: capitalize;
}

.project-info-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-info-item:last-child{
	margin-bottom: 0;
}

.project-info-item .icon-box{
	background-color: var(--secondary-color);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.project-info-content{
	width: calc(100% - 90px);
}

.project-info-content h3{
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.project-info-content p{
	text-transform: capitalize;
	margin: 0;
}

.project-single-slider{
	margin-bottom: 30px;
}

.project-slider{
	position: relative;
	margin-bottom: 20px;
}

.project-slider:after{
	content: '';
    position: absolute;
    background: url(../images/white-squre-bg-img.svg) no-repeat;
    background-position: top left;
    background-size: 100% auto;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.project-slider .swiper-wrapper{
	cursor: none;
}

.project-slider .swiper-slide{
	filter: brightness(70%);
	transition: all 0.3s ease-in-out;
}

.project-slider .swiper-slide-thumb-active{
	filter: brightness(100%);
	transition: all 0.3s ease-in-out;
}

.project-slider-item .swiper-slide{
	cursor: none;
}

.project-meta h3{
	font-size: 22px;
	margin-bottom: 30px;
}

.project-meta p:last-child{
	margin: 0;
}

.project-meta ul{
    list-style: none;
    padding: 0;
    margin: 20px 0 20px;
}

.project-meta ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.project-meta ul li:last-child{
	margin-bottom: 0;
}

.project-meta ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.company-benefits{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.company-benefits-title{
	margin-bottom: 20px;
}

.company-benefits-title h2{
	font-size: 50px;
	cursor: none;
}

.company-benefits-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-benefits-list ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.company-benefits-list ul li:last-child{
	margin-bottom: 0;
}

.company-benefits-list ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.company-benefits-img-1{
	margin-bottom: 30px;
}

.company-benefits-img-2 figure,
.company-benefits-img-1 figure{
	display: block;
}

.company-benefits-img-1 img{
	aspect-ratio: 1/1;
	object-fit: cover;
}

.company-benefits-counter{
	background-image: url('../images/benefits-counter-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-align: center;
	padding: 15px;
}

.company-benefits-counter h3{
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.company-benefits-counter h3 span{
	color: var(--primary-color);
}

.company-benefits-counter p{
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	margin: 0;
}

.company-benefits-img-2 img{
	aspect-ratio: 1/1.5;
	object-fit: cover;
}

.company-quality{
	background: url('../images/squre-bg-img.svg') no-repeat top left;
	background-size: auto;
	padding: 100px 0;
}

.company-quality-img figure{
	display: inline-block;
    mask-image: url('../images/company-quality-img.svg');
	background-image: url('../images/company-quality-img.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.company-quality-img img{
	aspect-ratio: 1 / 0.75;
	object-fit: cover;

}

.company-quality-title{
	margin-bottom: 20px;
}

.company-quality-title h2{
	font-size: 50px;
	cursor: none;
}

.company-quality-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-quality-list ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.company-quality-list ul li:last-child{
	margin-bottom: 0;
}

.company-quality-list ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.our-project-faqs{
	padding: 100px 0;
	background: url('../images/squre-bg-img-2.svg') no-repeat left bottom;
	background-size: auto;
}

.our-project-faqs .section-title{
	position: sticky;
	top: 20px;
}

/************************************/
/***     21. Team Page css  	  ***/
/************************************/

.hr-department-team{
	padding: 100px 0 70px;
	background: url('../images/squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.hr-department-team .section-title{
	text-align: center;
}

.research-department-team{
	padding: 100px 0 70px;
	background: var(--secondary-color) url('../images/white-squre-bg-img.svg') no-repeat right bottom;
}

.research-department-team .section-title{
	text-align: center;
}

.research-department-team .section-title h3{
	background: var(--white-color);
	color: var(--accent-color);
}

.project-department-team{
	padding: 100px 0 70px;
	background: url('../images/squre-bg-img-2.svg') no-repeat left bottom;
}

.project-department-team .section-title{
	text-align: center;
}

/************************************/
/***    22. Contact us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
	background: url('../images/squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.page-contact-us .section-title{
	margin-bottom: 20px;
}

.contact-form-content{
	margin-bottom: 30px;
}

.contact-form-content p{
	margin: 0;
}

.contact-sidebar{
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.contact-info{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--divider-color);
}

.contact-info:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.contact-info-title{
	margin-bottom: 30px;
}

.contact-info-title h3{
	font-size: 30px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.contact-info-box{
	padding-right: 30px;
}

.contact-info-item{
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.contact-info-item:last-child{
	margin-bottom: 0;
}

.contact-info-item .icon-box{
    position: absolute;
    top: 1px;
    left: 0;
}

.contact-info-item .icon-box i{
    color: var(--accent-color);
    font-size: 18px;
}

.contact-info-item p{
	color: var(--primary-color);
    font-size: 16px;
	margin: 0;
}

.contact-us-form .form-control{
	padding: 12px 10px;
	font-size: 16px;
	background-color: transparent;
	border-color: var(--divider-color);
	border-radius: 0;
	color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

.contact-us-form .form-group label{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.google-map{
	padding: 100px 0;
	background: white;
}	
.google-map .section-title{
	text-align: center;
}

.google-map .section-title h3{
	background: var(--white-color);
	color: var(--accent-color);
}

.google-map-iframe{
	width: 100%;
	height: 700px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 700px;
}

/************************************/
/***     23. Gallery Page css     ***/
/************************************/

.our-gallery-page{
	padding: 100px 0 70px; 
}

.our-gallery-page .section-title{
	text-align: center;
}

.photo-gallery{
	margin-bottom: 30px;
}

.photo-gallery a{
	cursor: none;
}

.photo-gallery img{
	aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

/* Gallery Section on Main Page */
.our-gallery .gallery-item {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-gallery .gallery-image-wrapper {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}

.our-gallery .gallery-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: all 0.5s ease-out;
}

.our-gallery .gallery-item:hover .gallery-image {
	transform: scale(1.05);
}

.our-gallery .gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 13, 27, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

.our-gallery .gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.our-gallery .gallery-overlay i {
	color: var(--white-color);
	font-size: 30px;
}

.mfp-arrow-left:before,
.mfp-arrow-right:before{
	border: none;
}

.mfp-arrow-left:after{
	border-right: 13px solid var(--accent-color);
	opacity: 1;
}	

.mfp-arrow-right:after{
	border-left: 13px solid var(--accent-color);
	opacity: 1;
}

/************************************/
/***      24. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 20px;
}

.faq-category-box{
	border: 1px solid var(--divider-color);
    padding: 30px;
}

.faq-category-box ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-category-box ul li{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.faq-category-box ul li:hover{
	border-color: var(--accent-color);
}

.faq-category-box ul li:last-child{
	border: none;
	margin-bottom: 0px;
	padding-bottom: 0;
}

.faq-category-box ul li a{
	position: relative;
	display: block;
	color: var(--primary-color);
    text-transform: capitalize;
	padding-right: 30px;
	transition: all 0.4s ease-in-out;
}

.faq-category-box ul li a::after{
    content: '\f062';
    font-family: "Font Awesome 6 Free";
	font-weight: 700;
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%) rotate(45deg);
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-category-box ul li:hover a:after{
	transform: translateY(-50%) rotate(90deg);
	color: var(--accent-color);
}

.faq-category-box ul li:hover a{ 
	color: var(--accent-color);
}

.faqs-section{
	margin-bottom: 60px;
}

.faqs-section:last-child{
	margin-bottom: 0;
}
 
.faqs-section .faqs-section-title .section-title{
	margin-bottom: 40px;
}

.page-faqs-accordion .accordion-item{
	position: relative;
	background: none;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-faqs-accordion .accordion-item:last-child{
	border: none;
	margin-bottom: 0;
}

.page-faqs-accordion .accordion-item .accordion-button{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 8px 30px 8px 80px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.page-faqs-accordion .accordion-button:not(.collapsed){
    color: var(--accent-color);
}

.page-faqs-accordion .accordion-item .accordion-button::after,
.page-faqs-accordion .accordion-item .accordion-button.collapsed::after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px) rotate(45deg);
	background-image: url(../images/icon-plus.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.page-faqs-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translate(0px, -10px) rotate(0deg);
}

.page-faqs-accordion .accordion-item .accordion-button span{
	position: absolute;
	left: 0;
	top: 0;
	bottom: auto;
	transform: translateY(50%);
	font-size: 22px;
	line-height: 1.1em;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.page-faqs-accordion .accordion-button:not(.collapsed) span{
	color: var(--accent-color);
}

.page-faqs-accordion .accordion-item .accordion-collapse .accordion-body{
	padding: 5px 30px 5px 80px;
}

.page-faqs-accordion .accordion-item .accordion-collapse .accordion-body p{
	margin: 0;
}

/************************************/
/***        25. 404 Page css      ***/
/************************************/

.error-page{
    text-align: center;
    padding: 100px 0;
}

.error-page-image{
    margin-bottom: 40px;
}

.error-page-content-heading{
    margin-bottom: 40px;
}

.error-page-content-heading h2{
    font-size: 50px;
    margin-bottom: 30px;
}

.error-page-content-body p{
	font-weight: 600;
	margin-bottom: 30px;
}

/************************************/
/***      26. responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px){

    #magic-cursor{
        display: none !important;
    }

    .slicknav_nav li, .slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 40px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-title h1,
	.section-title h2{
		font-size: 36px;
	}

	.section-title-content{
		text-align: left;
		margin-left: 0;
		margin-top: 15px;
	}

	.hero{
		padding: 100px 0 120px;
	}

	.hero-content-title h3{
		font-size: 18px;
	}

	.hero-content-title h1, .hero-content-title h2{
		font-size: 60px;
	}

	.hero-content-body p{
		font-size: 16px;
	}

	.hero-slider-layout .hero-slide{
		padding: 100px 0 120px;
	}

	.hero-slider-layout .swiper-pagination{
		bottom: 50px;
	}

	.hero-slider-prev,
	.hero-slider-next {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.hero-slider-prev {
		left: 15px;
	}

	.hero-slider-next {
		right: 15px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-content{
		margin-bottom: 30px;
	}

	.about-content-body{
		margin-bottom: 30px;
	}

	.about-image{
		margin-bottom: 30px;
	}

	.about-image img{
		width: 100%;
		aspect-ratio: 1/0.7;
		object-fit: cover;
	}

	.about-company-content h3{
		font-size: 20px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		padding: 30px;
	}

	.our-services .col-lg-3:nth-of-type(even) .service-item{
		margin-top: 50px;
	}

	.service-body h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.why-choose-us{
		padding: 50px 0 20px;
	}

	.why-choose-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.why-choose-item{
		padding: 30px;
	}

	.why-choose-image img{
		aspect-ratio: 1 / 0.75;
	}

	.why-choose-body h3{
		font-size: 20px;
	}

	.video-play-button a{
		width: 70px;
		height: 70px;
	}

	.video-play-button a i{
		font-size: 26px;
	}

	.our-project{
		padding: 50px 0 25px;
	}

	.project-content h3{
		font-size: 20px;
	}

	.our-testimonial{
		padding: 80px 0 70px;
	}

	.testimonial-item{
		padding: 24px 22px;
		border-radius: 14px;
	}

	.author-image {
		width: 50px;
		height: 50px;
		margin-right: 12px;
	}

	.author-content h2{
		font-size: 17px;
		margin-bottom: 3px;
	}

	.author-content p {
		font-size: 12px;
	}

	.testimonial-body p {
		font-size: 13px;
		line-height: 1.65;
	}

	.testimonial-body::before {
		font-size: 40px;
		top: -6px;
		left: -4px;
	}

	.testimonial-header{
		margin-bottom: 18px;
	}

	.testimonial-slider {
		padding: 0 8px;
	}

	.testimonial-slider .swiper-pagination {
		margin-top: 35px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faq-accordion{
		margin-left: 0px;
	}

	.faq-accordion .accordion-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.faq-accordion .accordion-item .accordion-button span{
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-button{
		font-size: 20px;
		padding: 5px 30px 5px 60px;
	}

	.faq-accordion.how-work-accordion .accordion-item .accordion-button::after,
	.faq-accordion.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-collapse .accordion-body{
		padding: 5px 30px 5px 60px;
	}

	.latest-news{
		padding: 50px 0 20px;
	}

	.post-item-content{
		padding: 20px;
	}

	.post-item-meta{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.post-item-body h2{
		font-size: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.about-footer{
		margin-right: 0px;
		margin-bottom: 40px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-content{
		margin-bottom: 20px;
	}

	.footer-social-links ul li a{
		font-size: 20px;
	}

	.footer-quick-links h2,
	.footer-contact-details h2, 
	.footer-newsletter h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-quick-links ul li{
		margin-bottom: 10px;
	}

	.footer-contact-box{
		padding-right: 0px;
	}

	.subscribe-content{
		max-width: 100%;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 100px 0px;
	}

	.page-header-box h1{
		font-size: 60px;
		margin-bottom: 20px;
	}

	.page-header-box ol{
		padding: 10px 20px;
	}

	.page-about-us{
		padding: 50px 0;
	}

	.about-us-image{
		max-width: 690px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.experience-counter-item{
		width: 180px;
		height: 150px;
	}

	.experience-counter-item .experience-counter-content h3{
		font-size: 36px;
	}
	
	.experience-counter-item .experience-counter-content p{
		font-size: 20px;
	}

	.about-story-content{
		padding-left: 0px;
	}

	.company-quality-item .icon-box{
		width: 65px;
		height: 65px;
	}

	.company-quality-item .icon-box img{
		width: 35px;
	}

	.company-quality-item .company-quality-content{
		width: calc(100% - 85px);
	}

	.about-story-footer ul li{
		margin-bottom: 15px;
	}

	.about-story-btn{
		margin-top: 10px;
	}

	.company-counter{
		padding: 40px 0 10px;
	}

	.company-counter .col-lg-3:nth-child(2n + 2) .company-counter-item:before{
		display: none;
	}

	.company-counter-item{
		margin-bottom: 30px;
	}

	.company-counter-item .counter-content h3{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.company-counter-item .counter-content p{
		font-size: 20px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.mission-vision-section {
		padding: 60px 0;
	}

	.mission-image,
	.vision-image {
		margin-top: 40px;
	}

	.mission-vision-section {
		padding: 50px 0;
	}

	.mission-details-section,
	.vision-future-section {
		padding: 60px 0;
	}

	.mission-goals,
	.vision-aspirations {
		margin-top: 25px;
	}

	.aspiration-item {
		padding: 20px;
	}

	.mission-card,
	.vision-goal-card {
		padding: 30px 20px;
		margin-bottom: 25px;
	}

	.company-expertise{
		padding: 50px 0;
	}

	.company-expertise-content{
		margin-bottom: 30px;
	}

	.company-expertise-footer ul li{
		padding: 10px 10px 10px 35px;
	}

	.company-expertise-footer ul li:before{
		font-size: 16px;
		top: 15px;
		left: 10px;
		transition: all 0.3s ease-in-out;
	}

	.expertise-counter-image{
		text-align: center;
		width: 100%;
		max-width: 550px;
		margin-left: 0;
		margin: 0 auto;
	}

	.satisfied-client{
		width: 250px;
		padding: 10px 20px;
	}

	.satisfied-client-icon img{
		width: 45px;
	}
	
	.satisfied-client-content{
		width: calc(100% - 60px);
		text-align: left;
	}

	.satisfied-client-content h3{
		font-size: 22px;
	}

	.satisfied-client-content p{
		font-size: 16px;
	}

	.meet-team{
		padding: 50px 0 20px;
	}

	.cta-box{
		padding: 50px 0;
	}

	.cta-content{
		max-width: 100%;
	}

	.cta-content-body{
		margin-bottom: 30px;
	}

	.cta-content-body:before{
		width: 70px;
		height: 70px;
		bottom: -70px;
		left: 170px;
	}

	@keyframes arrowmoveobjects{
		50%{
			left: 140px;
		}
	}

	.our-testimonial.about-testimonial{
		padding: 50px 0;
	}

	.page-service{
		padding: 50px 0 20px;
	}
	
	.service-item.page-service-item{
		min-height: 400px;
	}

	.our-testimonial.service-testimonial{
		padding: 50px 0;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		font-size: 24px;
	}

	.service-why-choose{
		padding: 50px 0;
	}

	.service-why-choose-content{
		margin-bottom: 30px;
	}

	.service-why-choose-body{
		margin-bottom: 20px;
	}

	.service-benefits{
		padding: 50px 0 20px;
	}

	.service-benefit-item{
		padding: 30px;
	}
	
	.service-benefit-item .icon-box{
		margin-bottom: 15px;
	}

	.service-benefit-item .service-benefit-content h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-strategy{
		padding: 50px 0;
	}

	.service-strategy-image{
		margin-bottom: 30px;
	}

	.service-strategy-title h3{
		margin-bottom: 20px;
	}

	.our-services-faqs{
		padding: 50px 0;
	}

	.page-blog{
		padding: 50px 0;
	}

	.post-pagination{
		margin-top: 10px;
	}

	.post-single-meta{
		padding: 6px 15px;
	}

	.post-single-meta ul li{
		margin-right: 20px;
	}

	.post-single-meta ul li i{
		font-size: 16px;
		margin-right: 5px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
        background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 30px 36px;
		background-size: 45px;
        padding: 30px 30px 30px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 36px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.tag-links{
		font-size: 26px;
	}

	.post-social-sharing{
		text-align: left;
	}

	.our-projects{
		padding: 50px 0 20px;
	}

	.our-projects-nav{
		margin-bottom: 30px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		margin-bottom: 30px;
	}

	.project-info-box-title h3{
		font-size: 20px;
	}

	.project-info-item .icon-box{
		width: 60px;
		height: 60px;
	}

	.project-info-item .icon-box img{
		width: 35px;
	}

	.project-info-content{
		width: calc(100% - 80px);
	}

	.project-info-content h3{
		margin-bottom: 5px;
	}

	.project-meta h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.company-benefits{
		padding: 50px 0;
	}

	.company-benefits-content{
		margin-bottom: 30px;
	}

	.company-benefits-counter h3{
		font-size: 36px;
	}

	.company-benefits-counter p{
		font-size: 16px;
	}

	.company-benefits-title h2{
		font-size: 36px;
	}

	.company-quality{
		padding: 50px 0;
	}

	.company-quality-img{
		margin-bottom: 30px;
	}

	.company-quality-title h2{
		font-size: 36px;
	}

	.our-project-faqs{
		padding: 50px 0;
	}

	.hr-department-team{
		padding: 50px 0 20px;
	}
	
	.research-department-team{
		padding: 50px 0 20px;
	}
	
	.project-department-team{
		padding: 50px 0 20px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-sidebar{
		margin-bottom: 30px;
	}

	.contact-info-title{
		margin-bottom: 20px;
	}

	.contact-info-title h3{
		font-size: 26px;
	}

	.contact-info-box{
		padding-right: 0px;
	}

	.google-map{
		padding: 50px 0;
	}

	.google-map-iframe{
		height: 400px;
	}
	
	.google-map-iframe iframe{
		height: 400px;
	}

	.our-gallery-page{
		padding: 50px 0 20px;
	}

	.our-gallery .gallery-image {
		height: 250px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: relative;
		top: 0;
	}

	.faq-category-box{
		padding: 20px 30px;
		margin-bottom: 30px;
	}

	.faqs-section{
		margin-bottom: 40px;
	}

	.faqs-section .faqs-section-title .section-title{
		margin-bottom: 30px;
	}

	.page-faqs-accordion .accordion-item .accordion-button{
		font-size: 20px;
		padding: 8px 30px 8px 60px;
	}

	.page-faqs-accordion .accordion-item .accordion-button span{
		font-size: 20px;
	}

	.error-page{
		text-align: center;
		padding: 50px 0;
	}

	.error-page-content-heading{
		margin-bottom: 30px;
	}

	.error-page-content-heading h2{
		font-size: 36px;
	}
}

@media only screen and (max-width: 767px){
	.service-item.page-service-item{
		min-height: 380px;
		padding: 30px 20px;
	}
	
	.service-body p{
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.topbar{
		padding: 10px 0;
	}

	.topbar-contact-info{
		text-align: center;
		justify-content: center;
		gap: 12px;
		flex-direction: column;
	}

	.topbar-contact-item{
		font-size: 12px;
		gap: 6px;
		justify-content: center;
	}

	.topbar-contact-item i{
		font-size: 13px;
	}

	.topbar-contact-text{
		font-size: 12px;
	}

	.topbar-social-links{
		display: none;
	}

	.section-title h1,
	.section-title h2{
        font-size: 30px;
    }

	.hero{
        padding: 80px 0;
    }

	.hero-content-title h3{
        font-size: 16px;
    }

	.hero-content-title h1, 
	.hero-content-title h2{
        font-size: 40px;
    }
	
	.hero-content-footer .btn-default.btn-highlighted{
		margin-left: 0px;
		margin-top: 10px;
	}

	.hero-slider-layout .hero-slide{
		padding: 80px 0 80px;
	}

	.hero-slider-layout .swiper-pagination{
		bottom: 20px;
	}

	.hero-slider-prev,
	.hero-slider-next {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.hero-slider-prev {
		left: 10px;
	}

	.hero-slider-next {
		right: 10px;
	}

	.about-us{
		background-size: 40px auto;
	}

	.our-services{
		background-size: 40px auto;
	}

	.about-content-body ul li{
		padding-left: 25px;
	}

	.about-content-body ul li:before{
		font-size: 16px;
		top: 4px;
	}

	.about-company-item .icon-box{
		margin-right: 10px;
	}

	.about-company-content{
		width: calc(100% - 70px);
	}

	.about-company-content h3{
        font-size: 18px;
    }

	.service-item{
        padding: 20px;
		margin-bottom: 30px;
    }

	.our-services .col-lg-3:nth-of-type(even) .service-item{
        margin-top: 0px;
    }

	.service-body h3{
        font-size: 18px;
    }

	.service-footer-btn{
		margin-top: 20px;
	}

	.why-choose-us{
		background-size: 40px auto;
	}

	.why-choose-item{
        padding: 20px;
    }

	.why-choose-body h3{
        font-size: 18px;
    }

	.intro-video-box .video-image img{
		aspect-ratio: 1 / 0.70;
	}

	.project-content h3{
        font-size: 18px;
    }

	.testimonial-item{
        padding: 22px 18px;
		border-radius: 12px;
    }

	.our-testimonial{
		padding: 60px 0 50px;
	}

	.author-image {
		width: 48px;
		height: 48px;
		margin-right: 12px;
	}

	.author-content h2{
        font-size: 16px;
		margin-bottom: 3px;
    }

	.author-content p {
		font-size: 12px;
	}

	.testimonial-body {
		margin-top: 6px;
	}

	.testimonial-body p {
		font-size: 13px;
		line-height: 1.65;
	}

	.testimonial-body::before {
		font-size: 35px;
		top: -5px;
		left: -3px;
	}

	.testimonial-header {
		margin-bottom: 16px;
	}

	.testimonial-slider {
		padding: 0 5px;
	}

	.testimonial-slider .swiper-pagination {
		margin-top: 30px;
	}

	.faq-accordion .accordion-item .accordion-button{
        font-size: 18px;
        padding: 5px 30px 5px 40px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 14px;
		height: 14px;
		transform: translate(0px, -6px) rotate(45deg);
	}

	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		transform: translate(0px, -6px) rotate(0deg);
	}

	.faq-accordion .accordion-item .accordion-button span{
		font-size: 18px;
		line-height: 1em;
	}

	.faq-accordion .accordion-item .accordion-collapse .accordion-body{
		padding: 5px 30px 5px 0px;
	}

	.our-gallery .gallery-image {
		height: 200px;
	}

	.latest-news{
		background-size: 40px auto;
	}

	.post-item-meta ul li a{
		font-size: 14px;
	}

	.post-item-meta ul li a i{
		font-size: 16px;
		margin-right: 5px;
	}

	.post-item-body h2{
        font-size: 18px;
    }

	.main-footer{
		background-size: 40px auto;
	}

	.footer-contact-details,
	.footer-quick-links{
		margin-bottom: 40px;
	}

	.footer-quick-links h2,
	.footer-contact-details h2, 
	.footer-newsletter h2{
        font-size: 18px;
    }

	.footer-contact-box .footer-info-box{
		padding-left: 25px;
		margin-bottom: 20px;
	}

	.footer-info-box .icon-box i{
		font-size: 18px;
	}

	.page-header{
		padding: 60px 0px;
	}

	.page-header-box h1{
		font-size: 36px;
	}

	.page-about-us{
        background-size: 40px auto;
    }

	.about-us-image{
		padding-bottom: 110px;
	}

	.about-img-1{
		width: 200px;
	}

	.about-img-2 img{
		aspect-ratio: 1 / 1;
		width: 190px;
	}

	.experience-counter-item{
		width: 125px;
		height: 110px;
	}

	.experience-counter-item .experience-counter-content h3{
        font-size: 28px;
		margin-bottom: 5px;
    }

	.experience-counter-item .experience-counter-content p{
        font-size: 16px;
    }
	
	.client-counter-item .client-counter-content img{
		width: 150px;
	}

	.client-counter-item .client-counter-content h3{
		font-size: 14px;
	}

	.about-company-quality .company-quality-item{
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.about-company-quality .company-quality-item:last-child{
		margin-bottom: 0;
	}

	.about-story-footer ul li{
		width: 100%;
		margin-right: 0;	
	}

	.about-story-btn{
		margin-top: 25px;
	}

	.company-counter-item:before{
		display: none;
	}

	.company-counter-item .counter-content h3{
		font-size: 28px;
	}

	.company-counter-item .counter-content p{
		font-size: 16px;
	}

	.how-it-work{
        background-size: 40px auto;
    }

	.faq-accordion.how-work-accordion .accordion-item .accordion-button::after,
	.faq-accordion.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		transform: translate(0, -6px) rotate(90deg);
	}

	.faq-accordion.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		transform: translate(0, -6px) rotate(45deg);
	}

	.company-expertise-footer ul{
		gap: 10px;
	}

	.company-expertise-footer ul li{
		width: 100%;
		margin-right: 0;
	}

	.company-expertise-footer ul li:last-child{
		margin-bottom: 0;
	}

	.satisfied-client-content h3{
		font-size: 20px;
	}

	.satisfied-client{
		top: 30px;
		width: 220px;
	}

	.meet-team{
        background-size: 40px auto;
    }

	.team-content h3{
		font-size: 20px;
	}

	.cta-content-body:before{
		width: 55px;
		height: 55px;
		left: 0;
	}

	@keyframes arrowmoveobjects{
		50%{
			left: 20px;
		}
	}

	.our-testimonial.about-testimonial{
        background-size: 40px auto;
    }

	.service-catagery-list{
		padding: 20px;
	}

	.service-catagery-list h3{
        font-size: 22px;
    }

	.service-why-choose{
		background-size: 40px auto;
	}

	.service-benefits{
		background-size: 40px auto;
	}

	.service-benefit-item{
		padding: 20px;
	}

	.service-strategy{
		background-size: 40px auto;
	}

	.our-services-faqs{
		background-size: 40px auto;
	}

	.post-entry blockquote{
        background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 20px 20px;
		background-size: 35px;
        padding: 50px 20px 20px 20px;
	}

	.post-entry h2{
        font-size: 30px;
    }

	.tag-links{
        font-size: 22px;
    }

	.project-info-box{
		padding: 20px;
	}

	.page-project-single{
		background-size: 40px auto;
	}

	.company-benefits-title h2{
		font-size: 28px;
	}

	.benefits-image-counter{
		margin-bottom: 30px;
	}

	.company-benefits-counter h3{
		font-size: 28px;
	}

	.company-benefits-img-2 img{
		aspect-ratio: 1 / 1.1;
	}

	.company-quality{
		background-size: 40px auto;
	}

	.company-quality-title h2{
		font-size: 28px;
	}

	.our-project-faqs{
		background-size: 40px auto;
	}

	.hr-department-team{
		background-size: 40px auto;
	}

	.research-department-team{
		background-size: 40px auto;
	}

	.project-department-team{
		background-size: 40px auto;
	}

	.contact-sidebar{
		padding: 20px;
	}

	.contact-info-title h3{
		font-size: 22px;
	}

	.google-map-iframe{
		height: 300px;
	}
	
	.google-map-iframe iframe{
		height: 300px;
	}

	.faq-category-box{
        padding: 20px;
    }

	.page-faqs-accordion .accordion-item .accordion-button{
        font-size: 18px;
        padding: 8px 30px 8px 35px;
    }

	.page-faqs-accordion .accordion-item .accordion-button span{
        font-size: 18px;
    }

	.page-faqs-accordion .accordion-item .accordion-collapse .accordion-body{
		padding: 5px 30px 5px 0px;
	}

	.error-page-content-heading h2{
		font-size: 30px;
	}
}

/* Panel Price Calculator */
.panel-price-calculator {
	padding: 50px 0;
	background-color: #f4f7f0;
}

/* Solar Calculator Suite */
.solar-calculator-suite {
	padding: 90px 0;
	background: #fff;
}

.solar-calculator-intro {
	max-width: 760px;
	margin: 0 auto 40px;
}

.solar-calculator-grid .solar-calculator-card {
	height: 100%;
	background: #f7faf6;
	border-radius: 28px;
	padding: 36px;
	box-shadow: 0 25px 80px rgba(10, 34, 16, 0.07);
	border: 1px solid rgba(29, 52, 38, 0.06);
	display: flex;
	flex-direction: column;
}

.solar-calculator-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.solar-calculator-card__header h3 {
	margin: 0;
	font-size: 26px;
	line-height: 1.25;
	color: #0e2f1c;
}

.solar-calculator-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.calc-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #4c5c56;
	margin-bottom: 8px;
}

.calc-field input,
.calc-field select {
	width: 100%;
	border: 1px solid rgba(29, 52, 38, 0.12);
	border-radius: 18px;
	padding: 14px 18px;
	font-size: 16px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-field input:focus,
.calc-field select:focus {
	border-color: #4c8a3c;
	box-shadow: 0 0 0 3px rgba(76, 138, 60, 0.15);
	outline: none;
}

.calc-note {
	font-size: 14px;
	margin: 0;
	color: #5f6c66;
}

.calc-subtitle {
	font-size: 15px;
	margin: 0 0 18px;
	color: #516359;
	line-height: 1.6;
}

.calc-actions {
	display: flex;
	justify-content: flex-start;
}

#demand-clear-btn {
	display: none;
}

.calc-feedback {
	font-size: 14px;
	margin: 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(235, 87, 87, 0.1);
	color: #b63232;
}

.calc-feedback[hidden] {
	display: none;
}

.calc-feedback.is-success {
	background: rgba(76, 138, 60, 0.12);
	color: #346d2b;
}

.calc-results {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.calc-result {
	background: #fff;
	border-radius: 18px;
	padding: 18px 20px;
	box-shadow: 0 15px 40px rgba(5, 21, 10, 0.06);
	border: 1px solid rgba(15, 37, 21, 0.05);
}

.calc-result p {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 11px;
	color: #7d8a82;
	margin-bottom: 6px;
}

.calc-result h4 {
	margin: 0;
	font-size: 24px;
	color: #0c2815;
}

.calc-result span {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: #6b766f;
}

.calc-disclaimer {
	margin-top: auto;
	padding-top: 24px;
	font-size: 13px;
	color: #7b877f;
}

.calc-disclaimer p {
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.solar-calculator-suite {
		padding: 60px 0;
	}

	.solar-calculator-card__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.solar-calculator-card__header h3 {
		font-size: 24px;
	}

	.calc-results {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

@media (max-width: 575px) {
	.solar-calculator-grid .solar-calculator-card {
		padding: 28px;
	}

	.calc-actions {
		flex-direction: column;
		gap: 10px;
	}

	.calc-actions .btn-default {
		width: 100%;
		text-align: center;
	}
}

.panel-price-heading h2 {
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 18px;
}

.panel-price-heading p {
	color: #556163;
	max-width: 420px;
}

.eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 15px;
	border-radius: 999px;

	/* Border added */
	border: 2px solid #2e7536;

	/* Background */
	background: rgba(66, 94, 56, 0.08);

	/* Text */
	color: #2e7536;
	font-weight: 800; /* Extra bold */

	margin-bottom: 16px;
}


.calculator-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}

.highlight-chip {
	flex: 1 1 140px;
	min-width: 150px;
	border-radius: 20px;
	padding: 18px 22px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(26, 39, 31, 0.08);
}

.highlight-chip span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #96a39b;
	margin-bottom: 6px;
}

.highlight-chip strong {
	font-size: 18px;
	color: #1a2a1e;
}

.calculator-card {
	background: #ffffff;
	border-radius: 32px;
	padding: 40px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
	color: #1a2a1e;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-card:before {
	content: "";
	position: absolute;
	inset: 20px;
	border-radius: 28px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	pointer-events: none;
}

.calculator-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.calculator-card-header .eyebrow {
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #96a39b;
	margin-bottom: 8px;
	font-weight: 600;
}

.calculator-card-header h3 {
	margin: 0;
	font-size: 28px;
	color: #1a2a1e;
}

.badge-soft {
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(66, 94, 56, 0.1);
	color: #425e38;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.calculator-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	z-index: 1;
}

.field-label {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #556163;
}

.input-with-unit {
	position: relative;
}

.input-with-unit input {
	width: 100%;
	background: #f8fbf5;
	border: 1px solid #e0e6dc;
	border-radius: 18px;
	padding: 18px 70px 18px 20px;
	color: #1a2a1e;
	font-size: 18px;
	outline: none;
	transition: border 0.2s ease, background 0.2s ease;
}

.input-with-unit input:focus {
	border-color: var(--accent-color);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(150, 208, 85, 0.1);
}

.input-with-unit input::placeholder {
	color: #96a39b;
}

.input-with-unit span {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #556163;
	font-weight: 600;
}

.modern-select {
	background: #f8fbf5;
	border-radius: 18px;
	position: relative;
	border: 1px solid #e0e6dc;
	transition: border 0.2s ease, background 0.2s ease;
}

.modern-select:focus-within {
	border-color: var(--accent-color);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(150, 208, 85, 0.1);
}

.modern-select select {
	width: 100%;
	background: transparent;
	border: none;
	padding: 18px 20px;
	color: #1a2a1e;
	font-size: 16px;
	appearance: none;
	outline: none;
	cursor: pointer;
}

.modern-select select option {
	background: #ffffff;
	color: #1a2a1e;
}

.modern-select:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	border-right: 2px solid #556163;
	border-bottom: 2px solid #556163;
	pointer-events: none;
}

.modern-select .select-helper {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #96a39b;
	padding: 0 20px 16px;
}

.btn-pill {
	border-radius: 999px;
	padding: 15px 32px;
	font-size: 16px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: normal;
	background: var(--accent-color);
	border: none;
	color: #ffffff;
	box-shadow: 0 15px 30px rgba(150, 208, 85, 0.3);
	transition: all 0.3s ease;
}

.btn-pill:hover {
	background: #7fc16c;
	color: #ffffff;
	box-shadow: 0 20px 40px rgba(127, 193, 108, 0.45);
	transform: translateY(-2px);
}

.calculator-meta {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 32px;
	position: relative;
	z-index: 1;
}

.calculator-meta p {
	margin: 0;
}

.meta-title {
	color: #1a2a1e;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.2em;
	margin-bottom: 8px;
}

.calculator-meta p {
	color: #556163;
}

.calculator-meta a {
	color: var(--accent-color);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.calculator-meta a:hover {
	color: #7fc16c;
}

/************************************/
/***   Career Opportunities CSS - Modern UI   ***/
/***********************************************/

.career-opportunities {
	padding: 120px 0 100px;
	background-color: #f7fafc;
	position: relative;
	overflow: hidden;
	color: #2f3947;
	--text-color: #4b5665;
	--white-color: #ffffff;
}

.career-opportunities::before {
	content: none;
}

.career-opportunities .container {
	position: relative;
	z-index: 1;
}

.career-section-header {
	margin-bottom: 70px;
}

.career-section-header .section-head {
	max-width: 700px;
}

.career-section-header .section-description {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-color);
	margin-top: 20px;
}

/* Modern Job Cards Grid */
.career-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

/* Modern Job Post Card */
.job-post-card-modern {
	background-color: #ffffff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	padding: 0;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.job-post-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--accent-color);
	background-size: 200% 100%;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.job-card-hover-effect {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(31, 107, 69, 0.08), transparent);
	transition: left 0.6s ease;
	pointer-events: none;
}

.job-post-card-modern:hover {
	transform: translateY(-10px);
	border-color: rgba(31, 107, 69, 0.35);
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(31, 107, 69, 0.18);
}

.job-post-card-modern:hover::before {
	transform: scaleX(1);
	animation: shimmer 2s infinite;
}

.job-post-card-modern:hover .job-card-hover-effect {
	left: 100%;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Job Card Header */
.job-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 28px 28px 20px;
	position: relative;
	z-index: 2;
}

.job-badge-wrapper {
	z-index: 3;
}

.job-badge-new {
	display: inline-block;
	padding: 8px 18px;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(31, 107, 69, 0.35);
	position: relative;
	overflow: hidden;
}

.job-badge-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.job-post-card-modern:hover .job-badge-new::before {
	left: 100%;
}

.job-card-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 24px;
	transition: all 0.3s ease;
}

.job-post-card-modern:hover .job-card-icon {
	background: var(--accent-color);
	color: var(--white-color);
	transform: scale(1.1) rotate(5deg);
}

/* Job Card Body */
.job-card-body {
	padding: 0 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.job-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.job-post-card-modern:hover .job-title {
	color: #1f6b45;
	background: linear-gradient(135deg, #1f6b45 0%, #f6c000 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.job-meta-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.job-meta-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(31, 107, 69, 0.08);
	border: 1px solid rgba(31, 107, 69, 0.15);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.job-meta-tag i {
	font-size: 14px;
	color: var(--accent-color);
}

.job-post-card-modern:hover .job-meta-tag {
	background: rgba(31, 107, 69, 0.12);
	border-color: rgba(31, 107, 69, 0.3);
	transform: translateY(-2px);
}

.job-description {
	margin-bottom: 24px;
	flex: 1;
}

.job-description p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

/* Job Card Footer */
.job-card-footer {
	padding: 24px 28px 28px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.job-posted-date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-color);
	font-weight: 500;
}

.job-posted-date i {
	color: var(--accent-color);
	font-size: 14px;
}

.job-apply-btn-modern {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background-color: #1f6b45;
	color: var(--white-color);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(31, 107, 69, 0.3);
	position: relative;
	overflow: hidden;
}

.job-apply-btn-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.job-apply-btn-modern:hover {
	transform: translateX(5px);
	box-shadow: 0 8px 25px rgba(31, 107, 69, 0.45);
}

.job-apply-btn-modern:hover::before {
	left: 100%;
}

.job-apply-btn-modern i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.job-apply-btn-modern:hover i {
	transform: translateX(5px);
}

/* Career Footer CTA */
.career-footer-cta {
	text-align: center;
	margin-top: 50px;
}

/* Empty State */
.career-empty-state {
	text-align: center;
	padding: 100px 40px;
	background-color: #ffffff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.career-empty-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.career-empty-icon::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 2px solid rgba(31, 107, 69, 0.25);
	border-radius: 50%;
	animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.career-empty-icon i {
	font-size: 48px;
	color: var(--accent-color);
	position: relative;
	z-index: 1;
}

.career-empty-state h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 16px;
}

.career-empty-state p {
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 35px;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
	.career-opportunities {
		padding: 80px 0 70px;
	}

	.career-section-header {
		margin-bottom: 50px;
	}

	.career-jobs-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 25px;
	}

	.job-card-header {
		padding: 24px 24px 18px;
	}

	.job-card-body {
		padding: 0 24px;
	}

	.job-card-footer {
		padding: 20px 24px 24px;
		flex-direction: column;
		align-items: stretch;
	}

	.job-apply-btn-modern {
		width: 100%;
		justify-content: center;
	}

	.job-title {
		font-size: 22px;
	}
}

@media only screen and (max-width: 767px) {
	.career-opportunities {
		padding: 60px 0 50px;
	}

	.career-jobs-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.job-card-header {
		padding: 20px 20px 16px;
	}

	.job-card-body {
		padding: 0 20px;
	}

	.job-card-footer {
		padding: 18px 20px 20px;
	}

	.job-title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.job-meta-grid {
		gap: 10px;
		margin-bottom: 20px;
	}

	.job-meta-tag {
		padding: 6px 12px;
		font-size: 13px;
	}

	.career-empty-state {
		padding: 60px 30px;
	}

	.career-empty-icon {
		width: 100px;
		height: 100px;
	}

	.career-empty-icon i {
		font-size: 40px;
	}

	.career-empty-state h3 {
		font-size: 26px;
	}

	.career-empty-state p {
		font-size: 16px;
	}
}

/* Career Page Additional Styles */
.career-intro-section {
	padding: 100px 0 80px;
	background: url('../images/squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.career-intro-content {
	margin-bottom: 30px;
}

.career-intro-body {
	margin-top: 25px;
}

.career-intro-body p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.career-intro-image {
	position: relative;
}

.career-intro-image img {
	aspect-ratio: 1/0.85;
	object-fit: cover;
	border-radius: 16px;
}

.why-join-us-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
}

.benefit-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.benefit-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.benefit-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
	color: var(--white-color);
}

.benefit-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.benefit-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.general-application-section {
	padding: 100px 0;
	background: url('../images/squre-bg-img-2.svg') no-repeat left top;
	background-size: auto;
}

.general-application-content {
	margin-bottom: 30px;
}

.general-application-body {
	margin-top: 25px;
}

.general-application-body p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.general-application-actions {
	display: flex;
	gap: 20px;
	margin-top: 35px;
	flex-wrap: wrap;
}

.general-application-image {
	position: relative;
}

.general-application-image img {

	object-fit: cover;
	border-radius: 16px;
}

.career-contact-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.career-contact-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.career-contact-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.career-contact-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.career-contact-card:hover .career-contact-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.career-contact-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.career-contact-card:hover .career-contact-icon i {
	color: var(--white-color);
}

.career-contact-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.career-contact-card p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.career-contact-card .btn-link {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.career-contact-card .btn-link:hover {
	color: var(--accent-color);
	gap: 12px;
}

.job-count-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: var(--accent-color);
	border-radius: 20px;
	color: var(--white-color);
	box-shadow: 0 8px 30px rgba(31, 107, 69, 0.35);
	min-width: 150px;
}

.job-count-badge strong {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.job-count-badge span {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.9;
}

.career-opportunities-page {
	padding: 80px 0 100px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
	position: relative;
	overflow: hidden;
}

.career-opportunities-page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 30%, rgba(31, 107, 69, 0.05) 0%, transparent 50%),
				radial-gradient(circle at 80% 70%, rgba(37, 76, 156, 0.04) 0%, transparent 50%);
	pointer-events: none;
}

.career-opportunities-page .container {
	position: relative;
	z-index: 1;
}

.job-requirements-preview {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.job-requirements-preview strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	display: block;
	margin-bottom: 8px;
}

.job-requirements-preview p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

.career-empty-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

/* Responsive Styles for Career Page Sections */
@media only screen and (max-width: 991px) {
	.career-intro-section,
	.why-join-us-section,
	.general-application-section,
	.career-contact-section {
		padding: 60px 0;
	}

	.career-intro-image,
	.general-application-image {
		margin-top: 40px;
	}

	.general-application-actions {
		justify-content: center;
	}

	.job-count-badge {
		margin-top: 30px;
	}

	.career-opportunities-page {
		padding: 60px 0 80px;
	}
}

@media only screen and (max-width: 767px) {
	.career-intro-section,
	.why-join-us-section,
	.general-application-section,
	.career-contact-section {
		padding: 50px 0;
	}

	.benefit-card {
		padding: 30px 20px;
		margin-bottom: 25px;
	}

	.career-contact-card {
		padding: 30px 20px;
		margin-bottom: 25px;
	}

	.general-application-actions {
		flex-direction: column;
	}

	.general-application-actions .btn-default {
		width: 100%;
		text-align: center;
	}

	.job-count-badge {
		min-width: 120px;
		padding: 25px;
	}

	.job-count-badge strong {
		font-size: 36px;
	}

	.career-opportunities-page {
		padding: 50px 0 60px;
	}
}

@media (max-width: 991px) {
	.panel-price-heading h2 {
		font-size: 38px;
	}
	.panel-price-calculator {
		padding: 90px 0;
	}
	.calculator-card {
		padding: 30px;
	}
}

@media (max-width: 575px) {
	.calculator-card {
		padding: 24px;
	}
	.highlight-chip {
		flex: 1 1 100%;
	}
}

/* Partner Page Styles */
/***   Partner With Us CSS   ***/
/********************************/

.partner-intro-section {
	padding: 100px 0 80px;
	background: url('../images/squre-bg-img.svg') no-repeat right bottom;
	background-size: auto;
}

.partner-intro-content {
	margin-bottom: 30px;
}

.partner-intro-body {
	margin-top: 25px;
}

.partner-intro-body p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.partner-intro-stats {
	display: flex;
	gap: 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.partner-stat-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.partner-stat-item strong {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 8px;
}

.partner-stat-item span {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.partner-intro-image {
	position: relative;
}

.partner-intro-image img {
	aspect-ratio: 1/0.85;
	object-fit: cover;
	border-radius: 16px;
}

.why-partner-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
}

.partner-benefit-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.partner-benefit-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.partner-benefit-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.partner-benefit-card:hover .partner-benefit-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.partner-benefit-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.partner-benefit-card:hover .partner-benefit-icon i {
	color: var(--white-color);
}

.partner-benefit-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.partner-benefit-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.partnership-types-section {
	padding: 100px 0;
	background: url('../images/squre-bg-img-2.svg') no-repeat left top;
	background-size: auto;
}

.partnership-type-card {
	background: var(--white-color);
	border: 2px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 20px;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
}

.partnership-type-card.featured {
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(31, 107, 69, 0.2);
}

.partnership-type-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 16px 50px rgba(15, 23, 42, 0.12);
}

.partnership-badge {
	position: absolute;
	top: -12px;
	right: 30px;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(31, 107, 69, 0.35);
}

.partnership-type-header {
	text-align: center;
	margin-bottom: 30px;
}

.partnership-type-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.partnership-type-card:hover .partnership-type-icon {
	background: var(--accent-color);
	transform: scale(1.1) rotate(5deg);
}

.partnership-type-icon i {
	font-size: 36px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.partnership-type-card:hover .partnership-type-icon i {
	color: var(--white-color);
}

.partnership-type-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

.partnership-type-body p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 25px;
}

.partnership-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.partnership-features li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--text-color);
}

.partnership-features li:last-child {
	border-bottom: none;
}

.partnership-features li i {
	color: var(--accent-color);
	font-size: 16px;
}

.partnership-type-action {
	margin-top: 30px;
	text-align: center;
}

.partnership-type-action .btn-default {
	display: inline-block;
	width: auto;
	min-width: 200px;
	text-align: center;
	padding: 16px 30px 16px 20px;
	font-size: 15px;
	border-radius: 12px;
}

.partnership-type-action .btn-default::before {
	right: 15px;
}

/* Partnership Booking Modal */
.partnership-booking-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.partnership-booking-modal .modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(8, 26, 47, 0.8);
	backdrop-filter: blur(5px);
}

.partnership-booking-modal .modal-content {
	position: relative;
	background: var(--white-color);
	border-radius: 20px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.partnership-booking-modal .modal-header {
	padding: 30px 30px 20px;
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.partnership-booking-modal .modal-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

.partnership-booking-modal .modal-close {
	background: none;
	border: none;
	font-size: 20px;
	color: var(--text-color);
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.partnership-booking-modal .modal-close:hover {
	background: var(--divider-color);
	color: var(--accent-color);
}

.partnership-booking-modal .modal-body {
	padding: 30px;
}

.partnership-booking-modal .partner-type-display {
	background: linear-gradient(135deg, var(--accent-color), var(--accent-yellow));
	color: white;
	padding: 15px 20px;
	border-radius: 12px;
	margin-bottom: 25px;
	text-align: center;
}

.partnership-booking-modal .partner-label {
	font-weight: 600;
	margin-right: 10px;
}

.partnership-booking-modal .partner-value {
	font-weight: 700;
	font-size: 18px;
}

.partnership-booking-modal .form-group {
	margin-bottom: 20px;
}

.partnership-booking-modal .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--primary-color);
}

.partnership-booking-modal .form-group input {
	width: 100%;
	padding: 14px 20px;
	border: 2px solid var(--divider-color);
	border-radius: 10px;
	font-size: 15px;
	font-family: var(--default-font);
	transition: all 0.3s ease;
}

.partnership-booking-modal .form-group input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(46, 117, 54, 0.1);
}

.partnership-booking-modal .form-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.partnership-booking-modal .form-actions .btn-default {
	flex: 1;
	padding: 16px 24px;
	text-align: center;
	border-radius: 12px;
}

.partnership-booking-modal .form-actions .btn-default::before {
	right: 15px;
}

/* Responsive Modal */
@media only screen and (max-width: 767px) {
	.partnership-booking-modal .modal-content {
		width: 95%;
		margin: 20px;
	}
	
	.partnership-booking-modal .modal-header,
	.partnership-booking-modal .modal-body {
		padding: 20px;
	}
	
	.partnership-booking-modal .form-actions {
		flex-direction: column;
	}
}

/* Custom Notification Modal */
.notification-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.notification-modal .notification-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(8, 26, 47, 0.6);
	backdrop-filter: blur(3px);
}

.notification-modal .notification-content {
	position: relative;
	background: var(--white-color);
	border-radius: 20px;
	max-width: 400px;
	width: 90%;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
	animation: notificationSlideIn 0.4s ease-out;
}

@keyframes notificationSlideIn {
	from {
		opacity: 0;
		transform: translateY(-30px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.notification-modal .notification-icon {
	margin-bottom: 20px;
}

.notification-modal .notification-icon i {
	font-size: 48px;
	transition: all 0.3s ease;
}

.notification-modal #successIcon {
	color: #28a745;
	display: none;
}

.notification-modal #errorIcon {
	color: #dc3545;
	display: none;
}

.notification-modal .notification-message {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 25px;
	line-height: 1.4;
}

.notification-modal .notification-actions {
	display: flex;
	justify-content: center;
}

.notification-modal .notification-actions .btn-default {
	padding: 14px 32px;
	font-size: 16px;
	border-radius: 12px;
	min-width: 120px;
}

.notification-modal .notification-actions .btn-default::before {
	right: 15px;
}

/* Success notification animation */
.notification-modal.success #successIcon {
	display: block;
	animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Error notification animation */
.notification-modal.error #errorIcon {
	display: block;
	animation: errorShake 0.5s ease-out;
}

@keyframes errorShake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-10px);
	}
	75% {
		transform: translateX(10px);
	}
}

/* Responsive Notification Modal */
@media only screen and (max-width: 767px) {
	.notification-modal .notification-content {
		width: 95%;
		padding: 30px 20px;
		margin: 20px;
	}
	
	.notification-modal .notification-icon i {
		font-size: 40px;
	}
	
	.notification-modal .notification-message {
		font-size: 16px;
	}
	
	.notification-modal .notification-actions .btn-default {
		padding: 12px 24px;
		font-size: 14px;
	}
}

.existing-partners-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.partner-logo-card-grid {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 30px 20px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.partner-logo-card-grid:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.partner-logo-wrapper {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.partner-logo-wrapper img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-logo-card-grid:hover .partner-logo-wrapper img {
	filter: grayscale(0%);
	opacity: 1;
}

.partner-logo-card-grid p {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.partner-process-section {
	padding: 100px 0;
	background: url('../images/squre-bg-img.svg') no-repeat left bottom;
	background-size: auto;
}

.process-step-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
}

.process-step-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.process-step-number {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 48px;
	font-weight: 700;
	color: rgba(31, 107, 69, 0.12);
	line-height: 1;
}

.process-step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.process-step-card:hover .process-step-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.process-step-icon i {
	font-size: 36px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.process-step-card:hover .process-step-icon i {
	color: var(--white-color);
}

.process-step-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.process-step-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.partner-cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.partner-cta-content {
	margin-bottom: 30px;
}

.partner-cta-body {
	margin-top: 25px;
}

.partner-cta-body p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 30px;
}

.partner-cta-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 35px;
}

.cta-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: var(--text-color);
}

.cta-feature-item i {
	color: var(--accent-color);
	font-size: 18px;
}

.partner-cta-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.partner-cta-image {
	position: relative;
}

.partner-cta-image img {
	
	object-fit: cover;
	border-radius: 16px;
}

.partner-contact-section {
	padding: 100px 0;
	background: url('../images/squre-bg-img-2.svg') no-repeat left top;
	background-size: auto;
}

.partner-contact-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.partner-contact-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.partner-contact-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.partner-contact-card:hover .partner-contact-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

.partner-contact-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.partner-contact-card:hover .partner-contact-icon i {
	color: var(--white-color);
}

.partner-contact-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.partner-contact-card p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 20px;
}

.partner-contact-card .btn-link {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.partner-contact-card .btn-link:hover {
	color: var(--accent-color);
	gap: 12px;
}

/* Partner Page Responsive Styles */
@media only screen and (max-width: 991px) {
	.partner-intro-section,
	.why-partner-section,
	.partnership-types-section,
	.existing-partners-section,
	.partner-process-section,
	.partner-cta-section,
	.partner-contact-section {
		padding: 60px 0;
	}

	.partner-intro-image,
	.partner-cta-image {
		margin-top: 40px;
	}

	.partner-intro-stats {
		justify-content: center;
	}

	.partner-cta-actions {
		justify-content: center;
	}
}

@media only screen and (max-width: 767px) {
	.partner-intro-section,
	.why-partner-section,
	.partnership-types-section,
	.existing-partners-section,
	.partner-process-section,
	.partner-cta-section,
	.partner-contact-section {
		padding: 50px 0;
	}

	.partner-benefit-card,
	.partnership-type-card,
	.partner-contact-card {
		padding: 30px 20px;
		margin-bottom: 25px;
	}

	.partner-stat-item strong {
		font-size: 28px;
	}

	.partner-cta-actions {
		flex-direction: column;
	}

	.partner-cta-actions .btn-default {
		width: 100%;
		text-align: center;
	}

	.process-step-number {
		font-size: 36px;
		top: 15px;
		left: 15px;
	}
}

/* === Dynamic About Section === */
.about-showcase {
	padding: 50px 0;
	background: #f8fbff;
}

.about-showcase .eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 15px;
	border-radius: 999px;

	/* Border added */
	border: 2px solid #2e7536;

	/* Background */
	background: rgba(66, 94, 56, 0.08);

	/* Text */
	color: #2e7536;
	font-weight: 800; /* Extra bold */

	margin-bottom: 16px;
}

.about-showcase-content h2 {
	font-size: clamp(2rem, 2.8vw, 3.2rem);
	margin-bottom: 20px;
}

.about-showcase-body p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4a5568;
	margin-bottom: 24px; 
	
	text-align: justify;

    /* FIX word cutting & line issues */
    hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
}

.about-showcase-actions .btn-default {
	padding-left: 32px;
	padding-right: 32px;
}

.about-slider-shell {
	position: relative;
	background: #ffffff;
	border-radius: 32px;
	padding: 24px;
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.about-slider-frame {
	border-radius: 24px;
	overflow: hidden;
	background: #000;
}

.about-slider-frame img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.about-slider-shell .swiper-pagination-bullets {
	position: absolute;
	left: 40px;
	bottom: 30px;
	width: auto;
}

.about-slider-shell .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
}

.about-slider-shell .swiper-pagination-bullet-active {
	background: #ffffff;
}

.about-slider-nav {
	position: absolute;
	right: 30px;
	bottom: 20px;
	display: flex;
	gap: 12px;
}

.about-slider-nav button {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #0b63ff;
	font-size: 1rem;
	cursor: pointer;
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-slider-nav button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 35px rgba(15, 23, 42, 0.18);
}

.about-slider-placeholder figure img {
	border-radius: 24px;
	width: 100%;
}

.about-empty-state {
	padding: 80px 24px;
	border-radius: 24px;
	background: #ffffff;
	text-align: center;
	font-size: 1.1rem;
	color: #6b7280;
	box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991px) {
	.about-showcase {
		padding: 80px 0;
	}

	.about-slider-frame img {
		height: 320px;
	}

	.about-slider-shell .swiper-pagination-bullets {
		left: 24px;
		bottom: 18px;
	}

	.about-slider-nav {
		right: 18px;
		bottom: 12px;
	}
}

@media (max-width: 575px) {
	.about-slider-shell {
		padding: 16px;
		border-radius: 24px;
	}

	.about-slider-frame img {
		height: 260px;
		border-radius: 18px;
	}

	.about-showcase-content h2 {
		font-size: 2rem;
	}
}

/* === Solar Journey Section === */
.solar-journey {
	padding: 110px 0 90px;
	padding-left: 100px;
	padding-right: 100px;
	background-color: #f6f9fc;
	color: #1f2a37;
}

.solar-journey .section-head {
	margin-bottom: 40px;
}

.solar-journey .section-head h2 {
	color: #1f2a37;
}

.solar-journey .eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 15px;
	border-radius: 999px;

	/* Border added */
	border: 2px solid #2e7536;

	/* Background */
	background: rgba(66, 94, 56, 0.08);

	/* Text */
	color: #2e7536;
	font-weight: 800; /* Extra bold */

	margin-bottom: 16px;
}

.journey-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.journey-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 22px;
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
	border: 2px solid #1f6b45;
}

.journey-icon {
	width: 72px;
	height: 72px;
	 border-radius: 18px;
	/* background: linear-gradient(135deg, #1f6b45 0%, #0d3f77 60%, #f6c000 100%); */ 
	background: var(--accent-color);
	display: grid;
	place-items: center;
	font-size: 1.75rem;
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(31, 107, 69, 0.35);
}

.journey-card h3 {
	margin: 0;
	font-size: 2rem;
	color: #0f172a;
}

.journey-card p {
	margin: 4px 0 0;
	color: #4b5665;
	font-size: 1rem;
}

@media (max-width: 991px) {
	.journey-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.journey-grid {
		grid-template-columns: 1fr;
	}

	.journey-card {
		flex-direction: column;
		text-align: center;
	}
}

/* === Partners Slider Section === */
.partners-section {
	padding: 120px 0 100px;
	padding-left: 100px;
	padding-right: 100px;
	background-color: #f7fafc;
	position: relative;
	overflow: hidden;
	color: #1f2a37;
	--text-color: #4b5665;
	--divider-color: rgba(15, 23, 42, 0.08);
	--white-color: #ffffff;
}

.partners-section::before {
	content: none;
}

.partners-section .container {
	position: relative;
	z-index: 1;
}

.partners-section .section-head {
	margin-bottom: 60px;
}

.partners-slider-wrapper {
	position: relative;
	padding: 0 70px;
	overflow: visible;
}

.partner-logo-card {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	padding: 45px 30px;
	text-align: center;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.partner-logo-card img {
	max-width: 220px;
	max-height: 90px;
	object-fit: contain;
	filter: grayscale(0%) opacity(1);
	background: transparent;
	position: relative;
	z-index: 2;
	padding: 10px;
}

.partner-logo-card p {
	margin: 0;
	font-weight: 700;
	color: var(--accent-color);
	font-size: 0.9rem;
	position: relative;
	z-index: 2;
	letter-spacing: 0.3px;
}

.partners-slider-nav {
	position: absolute;
	top: 50%;
	left: -25px;
	right: -25px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
}

.partners-slider-nav button {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2px solid rgba(15, 23, 42, 0.1);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.partners-slider-nav button:hover {
	transform: scale(1.1);
	background: linear-gradient(135deg, #1f6b45 0%, #f6c000 100%);
	color: #0b2f1f;
	border-color: var(--accent-color);
	box-shadow: 0 12px 35px rgba(31, 107, 69, 0.35);
}

.partners-slider-nav button i {
	font-size: 16px;
}

.partners-pagination {
	margin-top: 40px;
	position: relative;
	display: flex;
	justify-content: center;
}

.partners-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(15, 23, 42, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
}

.partners-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 30px;
	border-radius: 5px;
}

.partners-empty-state {
	text-align: center;
	color: #64748b;
	padding: 80px 0;
	font-size: 1.1rem;
}

@media (max-width: 991px) {
	.partners-section {
		padding: 80px 0 70px;
	}

	.partners-slider-wrapper {
		padding: 0 30px;
	}

	.partner-logo-card {
		height: 180px;
		padding: 35px 25px;
	}

	.partner-logo-card img {
		max-width: 180px;
		max-height: 75px;
	}
}

@media (max-width: 767px) {
	.partners-section {
		padding: 60px 0 50px;
	}

	.partners-slider-wrapper {
		padding: 0 15px;
	}

	.partners-slider-nav {
		display: none;
	}

	.partner-logo-card {
		height: 160px;
		padding: 30px 20px;
		gap: 12px;
	}

	.partner-logo-card img {
		max-width: 150px;
		max-height: 60px;
	}
}

/* === Project Showcase (Modern) === */
/* === Modern Projects Section === */
.projects-section-modern {
	padding: 120px 0 100px;
	background-color: #f7fafc;
	position: relative;
	overflow: hidden;
}

.projects-section-modern::before {
	content: none;
}

.projects-section-modern .container {
	position: relative;
	z-index: 1;
}

.projects-header-modern {
	margin-bottom: 60px;
}

.projects-header-modern .section-head {
	max-width: 700px;
}

.projects-header-modern .section-description {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-color);
	margin-top: 20px;
}

.projects-stat-modern {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--accent-color);
	font-family: var(--default-font);
}

.stat-label {
	font-size: 14px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	opacity: 0.8;
}

/* Modern Projects Grid */
.projects-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	margin-bottom: 50px;
}

/* Modern Project Card */
.project-card-modern {
	background: var(--white-color);
	border: 1.5px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.project-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1f6b45 0%, #f6c000 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	z-index: 3;
}

.project-card-modern:hover {
	transform: translateY(-8px);
	border-color: rgba(31, 107, 69, 0.25);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.project-card-modern:hover::before {
	transform: scaleX(1);
}

.project-card-image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #f0f0f0;
}

.project-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.project-card-modern:hover .project-card-image img {
	transform: scale(1.1);
}

.project-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.project-card-modern:hover .project-card-overlay {
	opacity: 1;
}

.project-card-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
}

.badge-tag {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--accent-color);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: var(--white-color);
}

.project-card-header {
	margin-bottom: 12px;
}

.project-card-header h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.project-card-modern:hover .project-card-header h3 {
	color: var(--accent-color);
}

.project-location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-color);
	opacity: 0.8;
}

.project-location i {
	font-size: 12px;
	color: var(--accent-color);
}

.project-summary {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 20px;
	flex: 1;
}

.project-card-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.project-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.project-link-btn::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: width 0.3s ease;
}

.project-link-btn:hover {
	color: var(--accent-yellow);
	gap: 12px;
}

.project-link-btn:hover::after {
	width: 100%;
}

.project-link-btn i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.project-link-btn:hover i {
	transform: translateX(5px);
}

/* Empty State */
.projects-empty-modern {
	text-align: center;
	padding: 100px 40px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.empty-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, rgba(31, 107, 69, 0.12) 0%, rgba(246, 192, 0, 0.12) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.empty-icon i {
	font-size: 48px;
	color: var(--accent-color);
}

.projects-empty-modern h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.projects-empty-modern p {
	color: var(--text-color);
	font-size: 16px;
	margin: 0;
}

/* Footer CTA */
.projects-footer-modern {
	text-align: center;
	margin-top: 50px;
}

.projects-footer-modern .btn-default,
.projects-footer-modern .btn-default.btn-highlighted {
	background-color: #1f6b45;
	color: #ffffff;
	padding: 20px 64px 20px 34px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	border-radius: 16px;
}

.projects-footer-modern .btn-default::before,
.projects-footer-modern .btn-default.btn-highlighted::before {
	color: #ffffff;
}

.projects-footer-modern .btn-default::after,
.projects-footer-modern .btn-default.btn-highlighted::after {
	background: rgba(255, 255, 255, 0.15);
}

.projects-footer-modern .btn-default:hover,
.projects-footer-modern .btn-default.btn-highlighted:hover {
	color: #0b2f1f;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.projects-footer-modern .btn-default:hover::before,
.projects-footer-modern .btn-default.btn-highlighted:hover::before {
	color: #0b2f1f;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
	.projects-section-modern {
		padding: 80px 0 70px;
	}

	.projects-header-modern {
		margin-bottom: 50px;
	}

	.projects-stat-modern {
		align-items: flex-start;
		margin-top: 30px;
	}

	.projects-grid-modern {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 24px;
	}

	.project-card-image {
		height: 220px;
	}
}

@media only screen and (max-width: 767px) {
	.projects-section-modern {
		padding: 60px 0 50px;
	}

	.projects-grid-modern {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.project-card-image {
		height: 200px;
	}

	.project-card-content {
		padding: 20px;
	}

	.project-card-header h3 {
		font-size: 18px;
	}

	.projects-empty-modern {
		padding: 60px 30px;
	}

	.empty-icon {
		width: 80px;
		height: 80px;
	}

	.empty-icon i {
		font-size: 40px;
	}

	.projects-empty-modern h3 {
		font-size: 24px;
	}
}

/* === Service Categories Modern === */
.service-categories-modern {
	padding: 110px 0 90px;
	padding-left: 100px;
	padding-right: 100px;
	background-color: #f7fafc;
	color: #1f2a37;
	--text-color: #4b5665;
	--white-color: #ffffff;
}

.service-categories-modern__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.service-categories-modern__head h2 {
	font-size: clamp(2rem, 3vw, 2.8rem);
	margin: 12px 0;
}

.service-categories-modern__head p {
	color: #5b6575;
	font-size: 1.05rem;
}

.service-categories-modern .btn-default.btn-highlighted{
	background-color: #1f6b45;
	color: #ffffff;
	padding: 20px 64px 20px 34px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	border-radius: 16px;
}

.service-categories-modern .btn-default.btn-highlighted::before{
	color: #ffffff;
}

.service-categories-modern .btn-default.btn-highlighted::after{
	background: rgba(255, 255, 255, 0.15);
}

.service-categories-modern .btn-default.btn-highlighted:hover{
	color: #0b2f1f;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.service-categories-modern .btn-default.btn-highlighted:hover::before{
	color: #0b2f1f;
}

.service-categories-modern__empty {
	text-align: center;
	color: #6b7280;
	padding: 60px 0;
}

.service-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.service-category-card {
	background-color: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-category-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
	border-color: rgba(31, 107, 69, 0.35);
}

.service-category-card__media {
	position: relative;
	padding-top: 65%;
	overflow: hidden;
}

.service-category-card__media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-category-card:hover .service-category-card__media img {
	transform: scale(1.05);
}

.service-category-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	display: grid;
	place-items: center;
	color: #1c7d3a;
	font-size: 1.2rem;
}

.service-category-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.service-category-card__body h3 {
	margin: 0;
	font-size: 1.05rem;
	color: #1f2937;
	line-height: 1.3;
}

.service-category-card__body p {
	margin: 0;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.5;
}

.service-category-card__actions {
	margin-top: auto;
}

.service-category-card__actions .btn-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #1c7d3a;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.service-category-card__actions .btn-link i {
	font-size: 0.95rem;
	transition: transform 0.2s ease;
}

.service-category-card:hover .btn-link i {
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.service-category-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 18px;
	}
}

@media (max-width: 767px) {
	.service-categories-modern__head {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.service-category-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.service-category-card__body {
		padding: 16px;
	}
}

/*--------------------------------------------------------------
	Header Refresh
--------------------------------------------------------------*/
.gc-site-header {
	position: relative;
	z-index: 50;
}

.gc-site-header__top {
	background: #256c35;
	color: #ffffff;
	font-size: 0.9rem;
	padding: 8px 0;
}

.gc-site-header__top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.gc-top-links {
	/* display: flex;
	align-items: center;
	gap: 24px;
	flex: 1 1 auto; */
	display: flex;
    align-items: anchor-center;
    gap: 24px;
    flex: 1 1 auto;
    justify-content: space-around;
	font-size: 20px;
}

.gc-top-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-weight: 600;
}

.gc-top-link i {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: grid;
	place-items: center;
	font-size: 0.85rem;
}

.gc-top-link__value {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.25;
	align-items: center;
}

.gc-top-link__value a {
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
}

.gc-top-link--phones .gc-top-link__value a:not(:last-child)::after {
	content: ", ";
	color: rgba(255, 255, 255, 0.85);
	margin-left: 0;
}

.gc-top-link--emails .gc-top-link__value a:not(:last-child)::after {
	content: " | ";
	color: rgba(255, 255, 255, 0.65);
	margin-left: 0;
}

.gc-top-social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.gc-top-work-text {
	text-align: center;
}

.gc-top-social__label {
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.74rem;
}

.gc-top-social .gc-social-list {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-top-social .gc-social-list li a {
	/* width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(52 190 21 / 15%);
    display: grid;
    place-items: center;
    color: #26c926
    transition: background 0.2s ease, transform 0.2s ease; */
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: grid;
	place-items: center;
	color: #ffffff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gc-top-social .gc-social-list li a:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}





.gc-top-social-header .gc-social-list-header li a {
	
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: grid;
	place-items: center;
	color: #ffffff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gc-top-social-header .gc-social-list-header li a:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.gc-site-header__nav {
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.gc-primary-nav {
	padding: 14px 0;
	display: flex;
	align-items: center;
	width: 100%;
	gap: 10px;
}

.gc-primary-nav .navbar-brand img {
	height: 110px;
	width: auto;
	object-fit: contain;
}

.navbar-brand--mobile {
	display: none;
}

.gc-nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.gc-language-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: transparent;
	color: #2a8f3c;
	border: 1px solid #2a8f3c;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.gc-language-btn:hover {
	background: rgba(42, 143, 60, 0.08);
	transform: translateY(-1px);
}

/* Hide Contact Us from desktop navigation menu */
	.nav-pill-menu .nav-item:nth-child(8) {
		display: none !important;
	}
	
	/* Hide contact buttons in desktop nav actions */
	.gc-nav-actions .gc-primary-btn--ghost {
		display: none !important;
	}

.gc-language-btn i {
	font-size: 0.85rem;
}

.gc-nav__cta .gc-language-btn {
	margin-left: 12px;
	background: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.gc-nav__cta .gc-language-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.gc-nav-actions .gc-primary-btn {
	display: none;
}

.gc-nav__inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.gc-nav__inner .navbar-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	flex: 1;
	justify-content: center;
}

.gc-site-header .main-menu ul.nav-pill-menu,
.gc-site-header .main-menu ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-site-header .main-menu ul li {
	margin: 0;
	position: relative;
	z-index: 5;
}

.gc-nav__inner .nav-link {
	font-weight: 600;
	color: #0b2f1f;
	font-size: 1rem;
	text-transform: none;
	padding: 10px 0;
	position: relative;
}

.gc-nav__inner .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 3px;
	background: var(--accent-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	border-radius: 2px;
}

.gc-nav__inner .nav-link:hover::after {
	transform: scaleX(1);
}

.gc-nav__inner .nav-link.is-active::after {
	transform: scaleX(1);
	background: var(--accent-color);
}

.gc-nav__inner .nav-link.is-active {
	color: var(--accent-color) !important;
	font-weight: 700;
}

.gc-site-header .main-menu ul li a {
	padding: 10px 0 !important;
	min-width: auto;
	text-transform: none;
	letter-spacing: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.gc-site-header .main-menu ul li a:hover,
.gc-site-header .main-menu ul li a:focus {
	background: transparent;
	box-shadow: none;
}

.gc-site-header .main-menu ul li a.is-active::before {
	display: none;
}

.gc-site-header .main-menu ul li.submenu > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.main-menu ul li.submenu > a:after,
.gc-site-header .main-menu ul li.submenu > a:after {
	content: none !important;
}

.gc-site-header .main-menu ul li.submenu > a .submenu-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: #6b7280;
	transition: color 0.2s ease, transform 0.2s ease;
	line-height: 1;
}

.gc-site-header .main-menu ul li.submenu:hover > a .submenu-arrow {
	color: #2a8f3c;
	transform: translateY(2px);
}

.gc-site-header .main-menu ul li.submenu {
	position: relative;
}

/* Invisible bridge to eliminate gap and prevent dropdown from closing */
.gc-site-header .main-menu ul li.submenu::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 12px;
	z-index: 26;
}

.gc-site-header .main-menu ul ul {
	position: absolute;
	top: calc(100% - 12px);
	left: 0;
	background: #ffffff;
	border-radius: 10px;
	border: 1px solid rgba(42, 143, 60, 0.1);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15), 0 2px 8px rgba(15, 23, 42, 0.08);
	padding: 20px 0 8px;
	min-width: 220px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	z-index: 25;
	display: block !important;
	gap: 0;
}

.gc-site-header .main-menu ul li.submenu:hover > ul,
.gc-site-header .main-menu ul li.submenu ul:hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.gc-site-header .main-menu ul ul li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

.gc-site-header .main-menu ul ul li:first-child {
	border-radius: 10px 10px 0 0;
}

.gc-site-header .main-menu ul ul li:last-child {
	border-radius: 0 0 10px 10px;
}

.gc-site-header .main-menu ul ul li a {
	padding: 12px 13px !important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #0f2d1d;
	width: 100%;
	white-space: nowrap;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
	border-left: 3px solid transparent;
}

.gc-site-header .main-menu ul ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #2a8f3c;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gc-site-header .main-menu ul ul li a:hover {
	background: linear-gradient(90deg, rgba(42, 143, 60, 0.08), rgba(42, 143, 60, 0.04));
	color: #2a8f3c;
	padding-left: 24px !important;
	transform: translateX(2px);
}

.gc-site-header .main-menu ul ul li a:hover::before {
	opacity: 1;
}

.gc-nav__inner .nav-link:hover::after,
.gc-nav__inner .nav-link.is-active::after {
	transform: scaleX(1);
}

.gc-nav__cta .eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
}

.gc-nav__cta strong {
	font-size: 1.05rem;
	color: #0f2d1d;
}

/* Social Icons Header Styles */
.gc-top-social-header {
	display: flex;
	align-items: center;
}

.gc-social-list--header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-social-list--header li {
	margin: 0;
}

.gc-social-list--header a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(46, 117, 54, 0.1);
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.gc-social-list--header a:hover {
	background-color: var(--accent-color);
	color: white;
	transform: translateY(-2px);
}

.gc-nav__cta {
	display: flex;
	align-items: center;
}

.gc-primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #2a8f3c;
	color: #ffffff;
	font-weight: 500;
	font-size: 0.8rem;
	text-decoration: none;
	box-shadow: 0 12px 25px rgba(42, 143, 60, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gc-primary-btn i {
	font-size: 0.85rem;
}

.gc-primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(42, 143, 60, 0.4);
	color: #ffffff;
}

.gc-primary-btn--ghost {
	background: transparent;
	color: #2a8f3c;
	box-shadow: none;
	border: 1px solid rgba(42, 143, 60, 0.4);
	padding: 8px 18px;
}

.gc-primary-btn--ghost:hover {
	background: rgba(42, 143, 60, 0.08);
}

@media (max-width: 1199px) {
	.gc-nav__inner {
		margin-left: 0;
	}
}

@media (max-width: 991px) {
	.gc-site-header__top .container {
		flex-wrap: wrap;
		justify-content: center;
		white-space: normal;
	}

	.gc-primary-nav {
		flex-wrap: wrap;
	}

	.gc-nav-actions .gc-primary-btn {
		display: none;
	}

	

	.navbar-brand {
		display: none;
	}

	.navbar-brand--mobile {
		display: block !important;
	}

	.gc-nav__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 20px;
	}

	.gc-nav__inner .navbar-nav {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 12px;
	}

	.gc-nav__cta {
		width: 100%;
		justify-content: space-between;
	}

	.gc-site-header .main-menu ul.nav-pill-menu,
	.gc-site-header .main-menu ul {
		flex-direction: column;
		width: 100%;
		gap: 14px;
	}

	.gc-site-header .main-menu ul li a {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.gc-site-header__top {
		display: none;
	}

	.gc-top-links {
		flex-direction: column;
		align-items: center;
		flex: initial;
		width: 100%;
		gap: 12px;
		text-align: center;
	}

	.gc-top-link {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		gap: 6px;
	}

	.gc-top-link__value {
		justify-content: center;
	}

	.gc-top-social {
		width: 100%;
		justify-content: center;
	}

	.gc-top-social .gc-social-list {
		justify-content: center;
	}

	.gc-nav__cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* Calculator Results Modal Enhancement */
.contact-modal .calculator-results {
	margin-top: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-modal .calculator-results .card-header {
	border-radius: 8px 8px 0 0;
	padding: 15px 20px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #1e5f28 100%);
}

.contact-modal .calculator-results .card-body {
	padding: 20px;
	background-color: #f8f9fa;
}

.contact-modal .calculator-results .row {
	margin: 0;
}

.contact-modal .calculator-results .col-md-6 {
	padding: 8px 15px;
	border-bottom: 1px solid #e9ecef;
}

.contact-modal .calculator-results .col-md-6:nth-child(even) {
	border-left: 1px solid #e9ecef;
}

.contact-modal .calculator-results .col-md-6:nth-last-child(-n+2) {
	border-bottom: none;
}

.contact-modal .success-message h4 {
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-modal .next-steps {
	background-color: #e8f5e8;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid var(--accent-color);
}

.contact-modal .next-steps h6 {
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-modal .alert-success.p-4 {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border: 1px solid #c3e6cb;
	border-radius: 8px;
}

/* Ensure proper modal footer display */
.contact-modal__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

/* Responsive adjustments for calculator results */
@media (max-width: 767px) {
	.contact-modal .calculator-results .col-md-6 {
		border-left: none !important;
		padding: 10px 0;
	}
	
	.contact-modal .calculator-results .col-md-6:not(:last-child) {
		border-bottom: 1px solid #e9ecef;
	}
}

/************************************/
/*** 26. Career Application Modal ***/
/************************************/

.career-application-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.career-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.career-modal-content {
	position: relative;
	background: var(--white-color);
	max-width: 800px;
	margin: 50px auto;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	animation: slideUp 0.3s ease;
}

.career-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px;
	border-bottom: 1px solid #e9ecef;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px 12px 0 0;
}

.career-modal-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: white;
}

.career-modal-close {
	background: none;
	border: none;
	color: var(--white-color);
	font-size: 20px;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.career-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(90deg);
}

.career-modal-content form {
	padding: 30px;
}

.career-modal-content .form-group {
	margin-bottom: 20px;
}

.career-modal-content label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--primary-color);
}

.career-modal-content input[type="text"],
.career-modal-content input[type="email"],
.career-modal-content input[type="tel"],
.career-modal-content input[type="file"] {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.career-modal-content input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(46, 117, 54, 0.1);
}

.career-modal-content small {
	display: block;
	margin-top: 5px;
	color: #6c757d;
	font-size: 12px;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}

.btn-primary {
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #236a2b;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #6c757d;
	color: var(--white-color);
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: #5a6268;
	transform: translateY(-2px);
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive styles for career modal */
@media (max-width: 768px) {
	.career-modal-content {
		margin: 20px;
		max-height: 95vh;
	}
	
	.career-modal-header {
		padding: 20px;
	}
	
	.career-modal-content form {
		padding: 20px;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.btn-primary, .btn-secondary {
		width: 100%;
	}
}

/************************************/
/***     Enhanced Mobile Responsive for index.php     ***/
/************************************/

/* General Mobile Improvements */
@media (max-width: 991px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row {
		margin-left: -15px;
		margin-right: -15px;
	}
	
	.section-title h1,
	.section-title h2 {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
	}
	
	.eyebrow-badge {
		font-size: 0.75rem;
		padding: 4px 12px;
	}
}

/* Mobile Navigation Enhancements */
@media (max-width: 991px) {
	.gc-site-header__nav {
		padding: 10px 0;
	}
	
	.gc-primary-nav {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 15px;
	}
	
	.navbar-toggle {
		display: block;
		position: static;
		right: auto;
		top: auto;
		transform: none;
		z-index: 1001;
		order: 3; /* Place it after language button */
	}
	

	
	.gc-nav-actions {
		display: flex;
		align-items: center;
		gap: 10px;
		order: 3; /* Place it after navbar toggle */
	}
	
	.main-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		background: var(--white-color);
		box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
		transition: left 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
	}
	
	.main-menu.active {
		left: 0;
	}
	
	.main-menu::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	
	.main-menu.active::before {
		opacity: 1;
		visibility: visible;
		left: 320px;
		width: calc(100% - 320px);
	}
	
	.gc-nav__inner {
		padding: 80px 20px 20px;
	}
	
	.gc-site-header .main-menu ul.nav-pill-menu {
		flex-direction: column;
		gap: 8px;
	}
	
	.gc-site-header .main-menu ul li a {
		min-width: auto;
		padding: 12px 16px !important;
		font-size: 14px;
		text-align: left;
		border-radius: 8px;
		background: rgba(46, 117, 54, 0.05);
		border: 1px solid rgba(46, 117, 54, 0.1);
	}
	
	.gc-site-header .main-menu ul li a:hover,
	.gc-site-header .main-menu ul li a.is-active {
		background: var(--accent-color);
		color: white;
		transform: none;
	}
	
	.gc-site-header .main-menu ul ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: rgba(46, 117, 54, 0.05);
		margin: 8px 0 0 16px;
		padding: 8px 0;
		border-radius: 6px;
	}
	
	.gc-site-header .main-menu ul ul li a {
		background: transparent;
		border: none;
		padding: 8px 12px !important;
		font-size: 13px;
	}
	
	.gc-nav__cta {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}
	
	.gc-top-social-header {
		justify-content: center;
		margin-top: 16px;
		padding-top: 16px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}
}

@media (max-width: 575px) {
	.main-menu {
		width: 90%;
		max-width: 280px;
	}
	
	.gc-nav__inner {
		padding: 70px 15px 15px;
	}
	
	.navbar-brand--mobile img {
		height: 45px !important;
	}
	

	
	.gc-primary-nav {
		gap: 10px;
	}
	
	.navbar-toggle {
		flex-shrink: 0;
	}
}

/* Hero Section Mobile Responsive */
@media (max-width: 991px) {
	.hero-card-media {
		height: 500px;
	}
	
	.hero-card-content--banner {
		left: 30px;
		right: 30px;
		max-width: none;
		padding: 40px 30px;
	}
	
	.hero-card-content--banner h1 {
		font-size: clamp(1.8rem, 6vw, 2.8rem);
	}
	
	.hero-card-content--banner p {
		font-size: clamp(0.9rem, 2.5vw, 1rem);
	}
	
	.hero-review-pill {
		flex-wrap: nowrap;
		max-width: 100%;
		overflow-x: auto;
		padding: 8px 14px;
		font-size: 0.85rem;
	}
	
	.hero-review-pill img {
		width: 24px;
		height: 24px;
	}
	
	.hero-whatsapp-btn {
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.hero-card-nav .hero-slider-prev,
	.hero-card-nav .hero-slider-next {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
	
	.hero-card-nav .hero-slider-prev {
		left: 5px;
	}
	
	.hero-card-nav .hero-slider-next {
		right: 5px;
	}
}

@media (max-width: 767px) {
	.hero-card-media {
		height: 400px;
	}
	
	.hero-card-content--banner {
		left: 20px;
		right: 20px;
		padding: 30px 20px;
		gap: 12px;
	}
	
	.hero-card-content--banner h1 {
		line-height: 1.1;
	}
	
	.hero-review-pill {
		margin-bottom: 8px;
	}
	
	.hero-card-actions {
		margin-top: 0;
	}
	
	.hero-whatsapp-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}
}

@media (max-width: 575px) {
	.hero-card-media {
		height: 320px;
	}
	
	.hero-card-content--banner {
		left: 15px;
		right: 15px;
		padding: 25px 15px;
	}
	
	.hero-card-content--banner h1 span {
		display: inline;
	}
}

/* Solar Calculator Section Mobile */
@media (max-width: 991px) {
	.solar-calculator-suite {
		padding: 60px 0;
	}
	
	.solar-calculator-grid {
		gap: 30px;
	}
	
	.solar-calculator-card {
		padding: 35px 30px;
	}
	
	.solar-calculator-card__header h3 {
		font-size: 1.4rem;
	}
	
	.calc-subtitle {
		font-size: 0.95rem;
		margin-bottom: 25px;
	}
	
	.calc-field {
		margin-bottom: 20px;
	}
	
	.calc-field label {
		font-size: 0.9rem;
		margin-bottom: 8px;
	}
	
	.calc-field input,
	.calc-field select {
		padding: 12px 15px;
		font-size: 15px;
	}
	
	.calc-actions .btn-default {
		width: 100%;
		padding: 14px 28px 14px 20px;
	}
	
	.calc-results {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		margin-top: 25px;
	}
	
	.calc-result {
		padding: 20px 15px;
	}
	
	.calc-result h4 {
		font-size: 1.3rem;
	}
}

@media (max-width: 767px) {
	.solar-calculator-suite {
		padding: 50px 0;
	}
	
	.solar-calculator-grid {
		gap: 25px;
	}
	
	.solar-calculator-card {
		padding: 30px 25px;
	}
	
	.solar-calculator-card__header h3 {
		font-size: 1.3rem;
	}
	
	.calc-results {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.calc-result {
		padding: 18px 15px;
	}
	
	.calc-result h4 {
		font-size: 1.4rem;
	}
}

@media (max-width: 575px) {
	.solar-calculator-card {
		padding: 25px 20px;
	}
	
	.solar-calculator-card__header h3 {
		font-size: 1.2rem;
	}
	
	.calc-subtitle {
		font-size: 0.9rem;
	}
	
	.calc-note {
		font-size: 0.85rem;
	}
	
	.calc-disclaimer p {
		font-size: 0.8rem;
	}
}

/* About Section Mobile */
@media (max-width: 991px) {
	.about-showcase {
		padding: 80px 0;
	}
	
	.about-showcase-content {
		text-align: center;
		margin-bottom: 40px;
	}
	
	.about-showcase-content h2 {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
	}
	
	.about-showcase-body {
		font-size: 1rem;
	}
	
	.about-slider-shell {
		padding: 20px;
	}
	
	.about-slider-nav {
		bottom: 10px;
	}
	
	.about-slider-prev,
	.about-slider-next {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.about-showcase {
		padding: 60px 0;
	}
	
	.about-showcase-content {
		margin-bottom: 30px;
	}
	
	.about-slider-shell {
		padding: 15px;
		border-radius: 20px;
	}
	
	.about-slider-frame {
		border-radius: 12px;
	}
	
	.about-slider-pagination {
		bottom: 10px;
	}
}

@media (max-width: 575px) {
	.about-showcase {
		padding: 50px 0;
	}
	
	.about-showcase-content h2 {
		font-size: 1.8rem;
	}
	
	.about-showcase-actions {
		text-align: center;
	}
	
	.btn-default {
		padding: 16px 32px 16px 20px;
		font-size: 15px;
	}
}

.google-reviews-simple{

	position: relative;

	padding: clamp(70px, 8vw, 120px) 0;

	padding-left: 100px;

	padding-right: 100px;

	background: #f9fbff;

}

.google-reviews-simple__intro{

	display: flex;

	justify-content: space-between;

	gap: 32px;

	flex-wrap: wrap;

	margin-bottom: clamp(24px, 5vw, 48px);

}

.google-reviews-simple__intro p{

	color: #485366;

	margin-top: 8px;

	max-width: 560px;

}

.google-reviews-simple__chips{

	display: flex;

	gap: 12px;

	flex-wrap: wrap;

	align-items: center;

}

.google-reviews-simple__chips span{

	font-size: 13px;

	text-transform: uppercase;

	letter-spacing: 0.08em;

	font-weight: 600;

	padding: 8px 14px;

	border-radius: 999px;

	background: #fff;

	box-shadow: inset 0 0 0 1px rgb(0 0 0);

}

.google-reviews-simple__layout{

	display: grid;

	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);

	gap: clamp(24px, 4vw, 48px);

	align-items: stretch;

}

.google-reviews-simple__summary{

	background: #fff;

	border-radius: 20px;

	box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);

	padding: 28px;

	display: flex;

	flex-direction: column;

	gap: 16px;

}

.google-reviews-simple__brand{

	display: flex;

	gap: 18px;

	align-items: center;

	max-width: 335px;

	overflow: hidden;

}

.google-reviews-simple__summary img{

	width: 56px;

	height: 56px;

}

.google-reviews-simple__place{

	font-weight: 600;

	margin-bottom: 4px;

	color: #0f172a;

}

.google-reviews-simple__rating{

	display: flex;

	align-items: center;

	gap: 12px;

}

.google-reviews-simple__rating strong{

	font-size: 38px;

	color: #0f172a;

	line-height: 1;

}

.google-reviews-simple__rating .stars{

	color: #facc15;

	display: flex;

	gap: 4px;

	font-size: 16px;

}

.google-reviews-simple__stats{

	display: grid;

	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 12px;

	padding: 16px 0 8px;

}

.google-reviews-simple__stat{

	background: #f1f5f9;

	border-radius: 16px;

	padding: 14px;

	text-align: center;

}

.google-reviews-simple__stat .value{

	display: block;

	font-size: 22px;

	font-weight: 700;

	color: #0f172a;

}

.google-reviews-simple__stat .label{

	display: block;

	font-size: 12px;

	text-transform: uppercase;

	letter-spacing: 0.08em;

	color: #475569;

}

.google-reviews-simple__count{

	margin: 0;

	color: #475569;

	font-size: 14px;

}

.google-reviews-simple__cta{

	display: inline-flex;

	align-items: center;

	justify-content: center;

	gap: 8px;

	padding: 12px 18px;

	border-radius: 999px;

	background: var(--accent-color);

	color: #fff;

	font-weight: 600;

	text-decoration: none;

	transition: background 0.2s ease;

	width: 100%;

}

.google-reviews-simple__cta i{

	font-size: 14px;

}

.google-reviews-simple__cta:hover{

	background: #0b4ed6;

}

.review-error{

	color: var(--error-color);

	font-size: 14px;

	margin: 0;

}

.review-error.hidden{

	display: none;

}

.google-review-slider{

	position: relative;

	background: #fff;

	border-radius: 28px;

	padding: clamp(16px, 2vw, 24px);

	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);

	display: flex;

	flex-direction: column;

	gap: 16px;

}

.google-review-slider__footer{

	display: flex;

	align-items: center;

	justify-content: space-between;

	flex-wrap: wrap;

	gap: 12px;

	padding-top: 8px;

}

.google-review-slider .swiper-wrapper{

	display: flex;

	align-items: stretch;

	width: 100% !important;

	height: auto !important;

}

.google-review-slider .swiper-slide{

	width: 100% !important;

	max-width: 400px !important;

	height: auto !important;

	flex-shrink: 0;

	margin-right: 24px;

}

.google-review-slider .swiper-slide:last-child{

	margin-right: 0;

}

.google-review-card{

	background: #fdfdfd;

	border-radius: 20px;

	padding: 8px;

	min-height: 250px;

	display: flex !important;

	flex-direction: column;

	gap: 16px;

	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);

	visibility: visible !important;

	opacity: 1 !important;

}

.google-review-card header{

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 18px;

}

.google-mark{

	width: 34px;

	height: 34px;

}

.review-author{

	display: flex;

	align-items: center;

	gap: 12px;

}

.review-author img{

	width: 50px;

	height: 50px;

	border-radius: 50%;

	object-fit: cover;

	border: 2px solid rgba(15, 23, 42, 0.08);

}

.review-author h4{

	font-size: 16px;

	margin: 0;

}

.review-author span{

	font-size: 13px;

	color: var(--text-color);

	opacity: 0.8;

}

.review-stars{

	color: #f59e0b;

	font-size: 16px;

	display: flex;

	gap: 4px;

}

.review-text{

	color: var(--text-color);

	line-height: 1.6;

	flex: 1;

	overflow: hidden;

	display: -webkit-box;

	-webkit-line-clamp: 4;

	line-clamp: 4;

	-webkit-box-orient: vertical;

}

.google-review-card.expanded .review-text{

	-webkit-line-clamp: unset;

	line-clamp: unset;

}

.review-toggle{

	border: none;

	background: transparent;

	color: var(--accent-color);

	font-weight: 600;

	align-self: flex-start;

	cursor: pointer;

	padding: 0;

	display: inline-flex;

	align-items: center;

	gap: 6px;

}

.review-toggle::after{

	content: '\f061';

	font-family: "Font Awesome 6 Free";

	font-weight: 900;

	font-size: 11px;

}

.google-review-pagination{

	width: 200px;

	max-width: 100%;

	margin: 0;

}

.google-review-nav{

	display: inline-flex;

	gap: 12px;

}

.google-review-nav button{

	width: 48px;

	height: 48px;

	border-radius: 16px;

	border: none;

	background: #0f172a;

	color: #fff;

	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);

	cursor: pointer;

	transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.google-review-nav button:hover{

	transform: translateY(-2px);

	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);

}



@media (max-width: 991px){

	.google-reviews-simple__layout{

		grid-template-columns: 1fr;

	}

	.google-reviews-simple__summary{

		order: -1;

	}

	.google-reviews-simple__chips{

		justify-content: center;

	}

}



@media (max-width: 768px){

	.google-review-slider__footer{

		flex-direction: column;

		align-items: center;

		gap: 15px;

	}

	.google-review-pagination{

		width: 100%;

	}

	.google-review-nav{

		justify-content: center;

	}

}



@media (max-width: 575px){

	.google-review-nav button{

		min-height: 44px;

		min-width: 44px;

		height: 44px;

		border-radius: 14px;

	}

}


/* Solar Journey Section Mobile */
@media (max-width: 991px) {
	.solar-journey {
		padding: 80px 0;
	}
	
	.journey-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.journey-card {
		padding: 25px 20px;
		text-align: center;
	}
	
	.journey-icon {
		width: 60px;
		height: 60px;
		margin: 0 auto 15px;
		font-size: 1.5rem;
	}
	
	.journey-card h3 {
		font-size: 2rem;
		margin-bottom: 8px;
	}
	
	.journey-card p {
		font-size: 0.95rem;
	}
}

@media (max-width: 767px) {
	.solar-journey {
		padding: 60px 0;
	}
	
	.journey-grid {
		gap: 25px;
	}
	
	.journey-card {
		padding: 20px 15px;
	}
	
	.journey-icon {
		width: 50px;
		height: 50px;
		font-size: 1.3rem;
	}
	
	.journey-card h3 {
		font-size: 1.8rem;
	}
}

@media (max-width: 575px) {
	.journey-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.journey-card {
		padding: 25px 20px;
	}
	
	.journey-icon {
		width: 55px;
		height: 55px;
		font-size: 1.4rem;
	}
	
	.journey-card h3 {
		font-size: 2rem;
	}
}

/* Gujarat Presence Section Mobile */
@media (max-width: 991px) {
	.gujarat-presence {
		padding: 80px 0;
	}
	
	.presence-content {
		text-align: center;
		margin-bottom: 40px;
	}
	
	.presence-content h2 {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
	}
	
	.presence-states {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.presence-highlights {
		text-align: left;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.presence-highlights li {
		font-size: 0.95rem;
		padding: 12px 0;
	}
	
	.presence-map {
		text-align: center;
	}
	
	.presence-map img {
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 767px) {
	.gujarat-presence {
		padding: 60px 0;
	}
	
	.presence-highlights li {
		font-size: 0.9rem;
		align-items: flex-start;
		padding: 10px 0;
	}
	
	.presence-highlights li i {
		margin-top: 2px;
		flex-shrink: 0;
	}
}

@media (max-width: 575px) {
	.gujarat-presence {
		padding: 50px 0;
	}
	
	.presence-content h2 {
		font-size: 1.8rem;
	}
	
	.presence-states span {
		font-size: 0.9rem;
		padding: 8px 16px;
	}
	
	.presence-highlights li {
		font-size: 0.85rem;
	}
}

/* Service Categories Section Mobile */
@media (max-width: 991px) {
	.service-categories-modern {
		padding: 80px 0;
	}
	
	.service-categories-modern__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		text-align: left;
	}
	
	.service-categories-modern__head .btn-default {
		align-self: flex-start;
	}
	
	.service-category-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 25px;
	}
	
	.service-category-card {
		border-radius: 16px;
	}
	
	.service-category-card__body {
		padding: 25px 20px;
	}
	
	.service-category-card__body h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 767px) {
	.service-categories-modern {
		padding: 60px 0;
	}
	
	.service-category-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 20px;
	}
	
	.service-category-card__body {
		padding: 20px 15px;
	}
	
	.service-category-card__body h3 {
		font-size: 1.2rem;
	}
	
	.service-category-card__body p {
		font-size: 0.9rem;
	}
}

@media (max-width: 575px) {
	.service-categories-modern {
		padding: 50px 0;
	}
	
	.service-categories-modern__head h2 {
		font-size: 1.8rem;
	}
	
	.service-category-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.service-category-card {
		border-radius: 12px;
	}
	
	.service-category-card__body {
		padding: 25px 20px;
		text-align: center;
	}
	
	.service-category-card__actions {
		justify-content: center;
	}
}

/* Partners Section Mobile */
@media (max-width: 991px) {
	.partners-section {
		padding: 80px 0 70px;
		padding-left: 50px;
		padding-right: 50px;
	}

	.partners-slider-wrapper {
		padding: 0 60px;
	}

	.partner-logo-card {
		padding: 20px 15px;
		height: 170px;
		max-width: 280px;
		margin: 0 auto;
	}

	.partner-logo-card img {
		max-height: 50px;
		max-width: 160px;
	}

	.partner-logo-card p {
		font-size: 0.85rem;
		margin-top: 8px;
	}

	.partners-slider-nav {
		left: -20px;
		right: -20px;
	}
}

@media (max-width: 767px) {
	.partners-section {
		padding: 60px 0 50px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.partners-slider-wrapper {
		padding: 0 45px;
	}

	.partner-logo-card {
		padding: 15px 10px;
		height: 150px;
		max-width: 260px;
		margin: 0 auto;
	}

	.partner-logo-card img {
		max-height: 40px;
		max-width: 140px;
	}

	.partner-logo-card p {
		font-size: 0.8rem;
	}

	.partners-slider-nav {
		left: -25px;
		right: -25px;
	}

	.partners-slider-nav button {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.partners-section {
		padding: 50px 0 40px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.partners-slider-wrapper {
		padding: 0 40px;
	}

	.partner-logo-card {
		padding: 20px;
		text-align: center;
		height: 140px;
		max-width: 240px;
		margin: 0 auto;
	}

	.partner-logo-card img {
		max-height: 45px;
		max-width: 130px;
	}

	.partner-logo-card p {
		font-size: 0.85rem;
	}

	.partners-slider-nav {
		left: -20px;
		right: -20px;
	}

	.partners-slider-nav button {
		width: 32px;
		height: 32px;
	}

	.partners-slider-nav button i {
		font-size: 12px;
	}
}

/* Footer Mobile Responsive */
@media (max-width: 991px) {
	.newsletter-area-modern {
		padding: 50px 0;
	}
	
	.newsletter-wrapper {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
	
	.newsletter-content {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.newsletter-form-wrapper {
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
	}
	
	.footer-modern {
		padding: 50px 0 30px;
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.footer-col {
		text-align: left;
	}
	
	.footer-title {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
	
	.footer-links li {
		margin-bottom: 10px;
	}
	
	.footer-links a {
		font-size: 0.9rem;
		padding: 8px 0;
	}
	
	/* Contact info improvements */
	.footer-contact .footer-links li {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.footer-contact .footer-links li strong {
		margin-bottom: 5px;
	}
	
	.phone-numbers,
	.email-links {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
	
	.footer-bottom-modern {
		padding: 25px 0;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.footer-links-bottom {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.footer-links-bottom .separator {
		display: none;
	}
	
	/* Additional mobile improvements */
	.footer-card-wrapper {
		order: -1;
		margin-bottom: 30px;
	}
	
	.footer-contact .footer-links span {
		font-size: 0.85rem;
		line-height: 1.4;
	}
	
	.footer-contact .footer-links li a {
		font-size: 0.85rem;
		word-break: break-all;
	}
}

@media (max-width: 767px) {
	.newsletter-area-modern {
		padding: 40px 0;
	}
	
	.newsletter-content h3 {
		font-size: 1.5rem;
	}
	
	.newsletter-content p {
		font-size: 0.95rem;
	}
	
	.input-group-modern {
		flex-direction: column;
		gap: 15px;
	}
	
	.form-control-modern {
		padding: 15px;
		font-size: 16px; /* Prevents zoom on iOS */
	}
	
	.btn-subscribe {
		padding: 15px 25px;
		font-size: 16px;
		justify-content: center;
	}
	
	.footer-modern {
		padding: 40px 0 25px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-col {
		text-align: center;
		padding: 0 15px;
	}
	
	.footer-card-wrapper {
		order: -1;
		margin-bottom: 20px;
	}
	
	.footer-title {
		font-size: 1.3rem;
		text-align: center;
		margin-bottom: 25px;
	}
	
	.footer-links {
		text-align: center;
	}
	
	.footer-links li {
		text-align: center;
		margin-bottom: 12px;
	}
	
	.phone-numbers,
	.email-links {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}
	
	.footer-contact .footer-links li {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	
	.footer-contact .footer-links li strong {
		margin-bottom: 8px;
		text-align: center;
	}
	
	.footer-links a {
		justify-content: center;
		font-size: 0.95rem;
		padding: 10px 0;
	}
	
	/* Footer card mobile improvements */
	.footer-card {
		padding: 25px 20px;
		margin: 0 auto;
		max-width: 100%;
	}
	
	.footer-card-content {
		gap: 20px;
	}
	
	.footer-card-logo-img {
		max-width: 120px;
	}
	
	.footer-card-description {
		font-size: 14px;
		text-align: center;
	}
	
	.footer-card-social-title {
		font-size: 16px;
	}
	
	/* Enhanced mobile contact layout */
	.footer-contact .footer-links li span {
		display: block;
		text-align: center;
		margin-bottom: 10px;
	}
	
	.footer-contact .footer-links li.phone-numbers,
	.footer-contact .footer-links li.email-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		width: 100%;
	}
	
	.footer-contact .footer-links li.phone-numbers a,
	.footer-contact .footer-links li.email-links a {
		text-align: center;
		width: 100%;
		padding: 8px 12px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 6px;
		margin-bottom: 5px;
	}
	
	.footer-contact .footer-links li.phone-numbers a:hover,
	.footer-contact .footer-links li.email-links a:hover {
		background: rgba(255, 255, 255, 0.1);
	}
}

@media (max-width: 575px) {
	.newsletter-area-modern {
		padding: 35px 0;
	}
	
	.newsletter-wrapper {
		gap: 25px;
	}
	
	.newsletter-icon {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	
	.newsletter-content h3 {
		font-size: 1.4rem;
	}
	
	.newsletter-content p {
		font-size: 0.9rem;
	}
	
	.footer-modern {
		padding: 35px 0 20px;
	}
	
	.footer-grid {
		gap: 25px;
	}
	
	.footer-col {
		padding: 0 10px;
	}
	
	.footer-title {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
	
	.footer-links a {
		font-size: 0.9rem;
		padding: 12px 0;
	}
	
	.footer-links li {
		margin-bottom: 8px;
	}
	
	/* Enhanced contact info for small mobile */
	.footer-contact .footer-links span {
		font-size: 0.85rem;
		line-height: 1.4;
	}
	
	.footer-contact .footer-links strong {
		font-size: 0.9rem;
	}
	
	.footer-contact .footer-links li a {
		font-size: 0.85rem;
		padding: 8px 0;
	}
	
	.phone-numbers,
	.email-links {
		gap: 8px;
	}
	
	.footer-bottom-modern {
		padding: 18px 0;
	}
	
	.copyright p {
		font-size: 0.8rem;
		line-height: 1.4;
	}
	
	.footer-links-bottom a {
		font-size: 0.8rem;
		padding: 4px 8px;
	}
	
	/* Footer card small mobile improvements */
	.footer-card {
		padding: 20px 15px;
	}
	
	.footer-card-content {
		gap: 15px;
	}
	
	.footer-card-logo-img {
		max-width: 100px;
	}
	
	.footer-card-description {
		font-size: 13px;
	}
	
	.footer-card-social-title {
		font-size: 15px;
		margin-bottom: 15px;
	}
	
	.footer-card-social-links {
		gap: 8px;
	}
	
	.footer-card-social-links a {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
}

/* Extra Small Mobile Devices */
@media (max-width: 390px) {
	.newsletter-area-modern {
		padding: 30px 0;
	}
	
	.newsletter-content h3 {
		font-size: 1.3rem;
	}
	
	.newsletter-content p {
		font-size: 0.85rem;
	}
	
	.footer-modern {
		padding: 30px 0 18px;
	}
	
	.footer-grid {
		gap: 20px;
	}
	
	.footer-col {
		padding: 0 5px;
	}
	
	.footer-title {
		font-size: 1.1rem;
		margin-bottom: 18px;
	}
	
	.footer-links a {
		font-size: 0.85rem;
		padding: 10px 0;
	}
	
	.footer-contact .footer-links span {
		font-size: 0.8rem;
	}
	
	.footer-contact .footer-links strong {
		font-size: 0.85rem;
	}
	
	.footer-contact .footer-links li a {
		font-size: 0.8rem;
	}
	
	.footer-bottom-modern {
		padding: 15px 0;
	}
	
	.copyright p {
		font-size: 0.75rem;
	}
	
	.footer-links-bottom a {
		font-size: 0.75rem;
		padding: 3px 6px;
	}
	
	/* Footer card extra small mobile */
	.footer-card {
		padding: 18px 12px;
	}
	
	.footer-card-content {
		gap: 12px;
	}
	
	.footer-card-logo-img {
		max-width: 90px;
	}
	
	.footer-card-description {
		font-size: 12px;
	}
	
	.footer-card-social-title {
		font-size: 14px;
		margin-bottom: 12px;
	}
	
	.footer-card-social-links a {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
}

/* Touch Optimizations */
@media (max-width: 991px) {
	.btn-default,
	.hero-whatsapp-btn,
	.gc-primary-btn {
		min-height: 44px; /* iOS touch target minimum */
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}
	
	.btn-default:active,
	.hero-whatsapp-btn:active,
	.gc-primary-btn:active {
		transform: scale(0.98);
	}
	
	/* Footer link touch optimizations */
	.footer-links a {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 12px 16px;
		border-radius: 8px;
		transition: all 0.3s ease;
	}
	
	.footer-links a:hover,
	.footer-links a:focus {
		background: rgba(255, 255, 255, 0.1);
		transform: translateX(4px);
	}
	
	.footer-links a:active {
		transform: translateX(2px) scale(0.98);
	}
	
	/* Footer card social links touch optimization */
	.footer-card-social-links a {
		min-height: 44px;
		min-width: 44px;
	}
	
	.footer-card-social-links a:active {
		transform: scale(0.95);
	}
	
	/* Newsletter form touch optimization */
	.form-control-modern {
		min-height: 48px;
		border-radius: 8px;
	}
	
	.btn-subscribe {
		min-height: 48px;
		border-radius: 8px;
	}
	
	/* Footer bottom links touch optimization */
	.footer-links-bottom a {
		min-height: 40px;
		display: flex;
		align-items: center;
		padding: 8px 12px;
		border-radius: 6px;
		transition: all 0.3s ease;
	}
	
	.footer-links-bottom a:hover,
	.footer-links-bottom a:focus {
		background: rgba(255, 255, 255, 0.1);
	}
}

/* Performance Optimizations for Mobile */
@media (max-width: 767px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
	}
	
	.hero-card-media-overlay {
		opacity: 0.85;
	}
	
	.image-anime:after {
		display: none;
	}
}

/* Landscape Mobile Optimizations */
@media (max-width: 991px) and (orientation: landscape) {
	.hero-card-media {
		height: 450px;
	}
	
	.solar-journey {
		padding: 60px 0;
	}
	
	.journey-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	
	.journey-card {
		padding: 20px 15px;
	}
}

@media (max-width: 767px) and (orientation: landscape) {
	.hero-card-media {
		height: 350px;
	}
	
	.hero-card-content--banner {
		padding: 25px 20px;
	}
	
	.solar-calculator-suite {
		padding: 40px 0;
	}
	
	.about-showcase {
		padding: 50px 0;
	}
}

/* ========================================
   MODERN MOBILE FOOTER ENHANCEMENTS
   ======================================== */
@media (max-width: 767px) {
	/* Footer Main Container Modernization */
	.footer-modern {
		background: linear-gradient(135deg, #1a5f3f 0%, #2e7536 50%, #1a5f3f 100%);
		position: relative;
		overflow: hidden;
	}
	
	.footer-modern::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
		pointer-events: none;
	}
	
	/* Footer Grid Modern Layout */
	.footer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 25px;
		position: relative;
		z-index: 1;
	}
	
	/* Footer Column Cards */
	.footer-col {
		background: rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(10px);
		border-radius: 16px;
		padding: 20px 18px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
	}
	
	.footer-col:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
		background: rgba(255, 255, 255, 0.12);
	}
	
	/* Footer Title Modern Styling */
	.footer-title {
		font-size: 1.15rem;
		font-weight: 700;
		color: #ffffff;
		margin-bottom: 20px;
		padding-bottom: 12px;
		border-bottom: 2px solid rgba(255, 255, 255, 0.2);
		position: relative;
		display: flex;
		align-items: center;
		gap: 10px;
	}
	
	.footer-title::before {
		content: '';
		width: 4px;
		height: 20px;
		background: linear-gradient(135deg, #4ade80, #22c55e);
		border-radius: 2px;
	}
	
	/* Footer Links Modern Styling */
	.footer-links {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	
	.footer-links li {
		margin-bottom: 3px;
	}
	
	.footer-links a {
		color: rgba(255, 255, 255, 0.85);
		text-decoration: none;
		font-size: 0.9rem;
		padding: 12px 16px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		gap: 12px;
		transition: all 0.3s ease;
		border: 1px solid transparent;
		min-height: 48px;
	}
	
	.footer-links a:hover {
		background: rgba(255, 255, 255, 0.15);
		color: #ffffff;
		transform: translateX(6px);
		border-color: rgba(255, 255, 255, 0.2);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}
	
	.footer-links a i {
		font-size: 0.8rem;
		color: #4ade80;
		transition: all 0.3s ease;
	}
	
	.footer-links a:hover i {
		color: #ffffff;
		transform: scale(1.2);
	}
	
	/* Contact Section Special Styling */
	.footer-col:has(.phone-numbers) {
		background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.05));
	}
	
	.footer-links span {
		color: rgba(255, 255, 255, 0.9);
		font-size: 0.85rem;
		line-height: 1.5;
		display: block;
		padding: 8px 0;
	}
	
	.footer-links strong {
		color: #ffffff;
		font-weight: 600;
		font-size: 0.95rem;
		display: block;
		padding: 12px 0 8px;
	}
	
	.phone-numbers {
		display: flex;
		flex-direction: column;
		gap: 8px;
		padding: 8px 0;
	}
	
	.phone-numbers a {
		background: rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		padding: 10px 14px;
		font-size: 0.85rem;
		color: #ffffff;
		border: 1px solid rgba(255, 255, 255, 0.15);
		transition: all 0.3s ease;
	}
	
	.phone-numbers a:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateX(4px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
	
	/* Email Section Special Styling */
	.footer-col:has(.email-links) {
		background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.05));
	}
	
	.email-links {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 8px 0;
	}
	
	.email-links a {
		background: rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		padding: 12px 16px;
		font-size: 0.85rem;
		color: #ffffff;
		border: 1px solid rgba(255, 255, 255, 0.15);
		transition: all 0.3s ease;
		text-align: center;
		position: relative;
		overflow: hidden;
	}
	
	.email-links a::before {
		content: '✉';
		position: absolute;
		left: -20px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1rem;
		opacity: 0;
		transition: all 0.3s ease;
	}
	
	.email-links a:hover::before {
		left: 12px;
		opacity: 1;
	}
	
	.email-links a:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateX(8px);
		padding-left: 40px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
	
	/* Footer Bottom Modern Styling */
	.footer-bottom-modern {
		background: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(10px);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 20px 0;
		position: relative;
		z-index: 1;
	}
	
	.footer-bottom-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}
	
	.copyright p {
		color: rgba(255, 255, 255, 0.7);
		font-size: 0.8rem;
		margin: 0;
		line-height: 1.4;
	}
	
	.footer-links-bottom {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
		align-items: center;
	}
	
	.footer-links-bottom a {
		color: rgba(255, 255, 255, 0.7);
		text-decoration: none;
		font-size: 0.75rem;
		padding: 6px 12px;
		border-radius: 6px;
		transition: all 0.3s ease;
		border: 1px solid transparent;
	}
	
	.footer-links-bottom a:hover {
		color: #ffffff;
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.2);
	}
	
	.separator {
		color: rgba(255, 255, 255, 0.4);
		font-size: 0.7rem;
		margin: 0 4px;
	}
	
	/* Newsletter Area Modern Mobile Enhancement */
	.newsletter-area-modern {
		background: linear-gradient(135deg, #1f6b45 0%, #2e7536 50%, #1f6b45 100%);
		padding: 35px 0;
		position: relative;
		overflow: hidden;
	}
	
	.newsletter-area-modern::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
					radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
		pointer-events: none;
	}
	
	.newsletter-wrapper {
		position: relative;
		z-index: 1;
	}
	
	.newsletter-content {
		text-align: center;
	}
	
	.newsletter-icon {
		width: 60px;
		height: 60px;
		background: rgba(255, 255, 255, 0.15);
		border-radius: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 20px;
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	}
	
	.newsletter-icon i {
		font-size: 1.5rem;
		color: #ffffff;
	}
	
	.newsletter-text h3 {
		font-size: 1.4rem;
		font-weight: 700;
		color: #ffffff;
		margin-bottom: 10px;
	}
	
	.newsletter-text p {
		color: rgba(255, 255, 255, 0.85);
		font-size: 0.9rem;
		line-height: 1.5;
		margin: 0;
	}
	
	.input-group-modern {
		display: flex;
		flex-direction: column;
		gap: 15px;
		max-width: 400px;
		margin: 0 auto;
	}
	
	.form-control-modern {
		width: 100%;
		padding: 16px 20px;
		border: 2px solid rgba(255, 255, 255, 0.2);
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.95);
		color: #333;
		font-size: 0.95rem;
		transition: all 0.3s ease;
		backdrop-filter: blur(10px);
	}
	
	.form-control-modern:focus {
		outline: none;
		border-color: #2e7536;
		background: #ffffff;
		box-shadow: 0 0 0 4px rgba(46, 117, 54, 0.1);
	}
	
	.form-control-modern::placeholder {
		color: #666;
	}
	
	.btn-subscribe {
		background: #2e7536;
		color: #ffffff;
		border: none;
		padding: 16px 24px;
		border-radius: 12px;
		font-size: 1rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		box-shadow: 0 4px 12px rgba(46, 117, 54, 0.3);
	}
	
	.btn-subscribe:hover {
		background: #1f6b45;
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(46, 117, 54, 0.4);
	}
	
	.btn-subscribe:active {
		transform: translateY(0);
	}
	
	/* Footer Card Modern Mobile Enhancement */
	.footer-card {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
		backdrop-filter: blur(10px);
		border-radius: 16px;
		padding: 25px 20px;
		border: 1px solid rgba(255, 255, 255, 0.15);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	}
	
	.footer-card-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		text-align: center;
	}
	
	.footer-card-logo-img {
		max-width: 120px;
		height: auto;
		filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	}
	
	.footer-card-description {
		color: rgba(255, 255, 255, 0.85);
		font-size: 0.85rem;
		line-height: 1.6;
	}
	
	.footer-card-social-title {
		color: #ffffff;
		font-size: 0.95rem;
		font-weight: 600;
		margin-bottom: 15px;
	}
	
	.footer-card-social-links {
		display: flex;
		gap: 12px;
		justify-content: center;
	}
	
	.footer-card-social-links a {
		width: 40px;
		height: 40px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		text-decoration: none;
		transition: all 0.3s ease;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}
	
	.footer-card-social-links a:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
	
	/* Smooth Animations */
	.footer-col,
	.footer-card,
	.newsletter-icon {
		animation: fadeInUp 0.6s ease-out;
	}
	
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	/* Stagger animation for footer columns */
	.footer-col:nth-child(1) { animation-delay: 0.1s; }
	.footer-col:nth-child(2) { animation-delay: 0.2s; }
	.footer-col:nth-child(3) { animation-delay: 0.3s; }

/************************************/
/***     Products Page CSS        ***/
/************************************/

/* Page Header Desktop Styles */
@media (min-width: 1200px) {
	.page-header {
		padding: 180px 0px !important;
		background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%), url('../images/page-header-bg.jpg') no-repeat center center !important;
		background-size: cover !important;
		position: relative !important;
	}
	
	.page-header::after {
		content: '' !important;
		position: absolute !important;
		background-image: url(../images/white-squre-bg-img.svg) !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		background-size: cover !important;
		width: 100% !important;
		height: 100% !important;
		top: 0 !important;
		left: 0 !important;
		opacity: 0.1 !important;
		z-index: 1 !important;
	}
	
	.page-header-box {
		position: relative !important;
		z-index: 2 !important;
		text-align: center !important;
	}
	
	.page-header-box h1 {
		color: var(--white-color) !important;
		font-size: 90px !important;
		letter-spacing: -0.02em !important;
		font-weight: 800 !important;
		line-height: 1.1 !important;
		margin-bottom: 20px !important;
		text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
	}
}

/* Products Hero Section */
.products-hero {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 45%, #f0f7ff 100%);
	position: relative;
	overflow: hidden;
}

.products-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(46, 117, 54, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.products-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(46, 117, 54, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.products-hero .container {
	position: relative;
	z-index: 1;
}

.products-hero-content .eyebrow-badge {
	background: linear-gradient(135deg, rgba(46, 117, 54, 0.15), rgba(46, 117, 54, 0.08)) !important;
	color: var(--accent-color) !important;
	border: 1px solid rgba(46, 117, 54, 0.25) !important;
	padding: 8px 20px !important;
	border-radius: 30px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.8px !important;
	display: inline-block !important;
	margin-bottom: 20px !important;
	text-transform: none !important;
}

.products-hero-content h2 {
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--primary-color);
	margin-bottom: 30px;
	background: linear-gradient(135deg, var(--primary-color), #0f2f44);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.products-hero-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 40px;
	font-weight: 500;
}

.products-hero-features {
	margin: 40px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 15px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(8, 26, 47, 0.08);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(8, 26, 47, 0.12);
	border-color: rgba(46, 117, 54, 0.2);
}

.feature-item i {
	color: var(--accent-color);
	font-size: 1.3rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.feature-item span {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.5;
}

.products-hero-actions {
	margin-top: 40px;
}

.products-hero-actions .btn-default {
	padding: 20px 48px 20px 36px;
	font-size: 17px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-color), #1f6b45);
	color: var(--white-color);
	border: none;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
}

.products-hero-actions .btn-default::before {
	font-size: 15px;
	right: 20px;
}

.products-hero-actions .btn-default::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.products-hero-actions .btn-default:hover {
	background: linear-gradient(135deg, #1f6b45, #196437);
	box-shadow: 0 18px 40px rgba(46, 117, 54, 0.35);
	transform: translateY(-2px);
}

.products-hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.products-hero-image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(135deg, rgba(46, 117, 54, 0.1), rgba(46, 117, 54, 0.05));
	border-radius: 30px;
	z-index: -1;
}

.products-hero-image img {
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(8, 26, 47, 0.15);
	width: 100%;
	height: auto;
	transition: all 0.4s ease;
	z-index: 1;
}

.products-hero-image:hover img {
	transform: scale(1.02);
	box-shadow: 0 30px 60px rgba(8, 26, 47, 0.2);
}

/* Product Category Sections */
.product-category {
	padding: 100px 0 !important;
	position: relative;
}

.product-category--alt {
	background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%) !important;
}

.product-category-header {
	text-align: center !important;
	margin-bottom: 80px !important;
	max-width: 900px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	position: relative;
}

.product-category-header .eyebrow-badge,
.product-features .eyebrow-badge {
	background: linear-gradient(135deg, rgba(46, 117, 54, 0.12), rgba(46, 117, 54, 0.06)) !important;
	color: var(--accent-color) !important;
	border: 1px solid rgba(46, 117, 54, 0.2) !important;
	padding: 8px 24px !important;
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	border-radius: 999px !important;
	margin-bottom: 20px !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	backdrop-filter: blur(10px) !important;
	box-shadow: 0 4px 12px rgba(46, 117, 54, 0.1) !important;
	text-transform: none !important;
}

.product-category-header h2 {
	font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	margin-bottom: 20px !important;
	background: linear-gradient(135deg, var(--primary-color), #0f2f44) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.product-category-header p {
	font-size: 1.1rem !important;
	line-height: 1.7 !important;
	color: var(--text-color) !important;
	max-width: 700px !important;
	margin: 0 auto !important;
	font-weight: 500 !important;
}

/* Product Grid */
.product-grid {
	margin-top: 60px;
}

.product-grid .row {
	gap: 30px;
}

.product-grid .col-lg-4,
.product-grid .col-lg-6,
.product-grid .col-lg-3 {
	margin-bottom: 30px;
}

/* Ensure proper spacing on all screen sizes */
@media (max-width: 991px) {
	.product-grid .row {
		gap: 20px;
	}
	
	.product-grid .col-md-6 {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.product-grid .row {
		gap: 15px;
	}
	
	.product-grid .col-md-6 {
		margin-bottom: 15px;
	}
}

/* Product Cards */
.product-card {
	background: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(8, 26, 47, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	border: 1px solid rgba(8, 26, 47, 0.08);
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #4a9c52);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover::before {
	opacity: 1;
}

.product-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 50px rgba(8, 26, 47, 0.18);
	border-color: rgba(46, 117, 54, 0.2);
}

.product-card--featured {
	border: 2px solid var(--accent-color);
	box-shadow: 0 15px 40px rgba(46, 117, 54, 0.15);
}

.product-card--featured::before {
	opacity: 1;
	background: linear-gradient(90deg, var(--accent-color), #4a9c52);
	height: 4px;
}

.product-card--compact {
	border: 1px solid #e1e8ed;
	box-shadow: 0 6px 20px rgba(8, 26, 47, 0.06);
}

.product-card__media {
	position: relative;
	overflow: hidden;
	height: 260px;
	background: linear-gradient(135deg, #f8fafb, #ffffff);
}

.product-card--compact .product-card__media {
	height: 200px;
}

.product-card__media::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(8, 26, 47, 0.02), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-card__media::before {
	opacity: 1;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(1);
}

.product-card:hover .product-card__media img {
	transform: scale(1.08);
	filter: brightness(1.05);
}

.product-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, var(--accent-color), #1f6b45);
	color: var(--white-color);
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	box-shadow: 0 6px 16px rgba(46, 117, 54, 0.3);
	z-index: 2;
	backdrop-filter: blur(10px);
}

.product-card__body {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: var(--white-color);
}

.product-card__body h3 {
	color: var(--primary-color);
	margin-bottom: 16px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.product-card__body h4 {
	color: var(--primary-color);
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.product-card__body p {
	color: var(--text-color);
	line-height: 1.7;
	margin-bottom: 24px;
	flex: 1;
	font-size: 15px;
	font-weight: 500;
}

/* Product Specifications */
.product-specs {
	background: linear-gradient(135deg, #f8fafb, #f0f4f8);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 24px;
	border: 1px solid rgba(8, 26, 47, 0.06);
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(8, 26, 47, 0.08);
	transition: all 0.3s ease;
}

.spec-item:last-child {
	border-bottom: none;
}

.spec-item:hover {
	padding-left: 8px;
	background: rgba(46, 117, 54, 0.03);
	border-radius: 8px;
	margin: 0 -8px;
	padding-right: 8px;
}

.spec-label {
	color: var(--text-color);
	font-weight: 600;
	font-size: 14px;
	opacity: 0.8;
}

.spec-value {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 15px;
	background: linear-gradient(135deg, var(--primary-color), #0f2f44);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Product Actions */
.product-card__actions {
	margin-top: auto;
	padding-top: 16px;
}

.product-card__actions .btn-link {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	font-size: 15px;
	padding: 12px 20px;
	border-radius: 12px;
	background: rgba(46, 117, 54, 0.08);
	border: 1px solid rgba(46, 117, 54, 0.15);
}

.product-card__actions .btn-link:hover {
	color: var(--primary-color);
	gap: 14px;
	background: rgba(8, 26, 47, 0.08);
	border-color: rgba(8, 26, 47, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(8, 26, 47, 0.12);
}

/* Product Features Section */
.product-features {
	padding: 100px 0;
	background: var(--white-color);
	position: relative;
}

.product-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(46, 117, 54, 0.1), transparent);
}

.features-grid {
	margin-top: 80px;
}

.feature-card {
	text-align: center;
	padding: 50px 30px;
	background: var(--white-color);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(8, 26, 47, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	position: relative;
	border: 1px solid rgba(8, 26, 47, 0.08);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #4a9c52);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 50px rgba(8, 26, 47, 0.18);
	border-color: rgba(46, 117, 54, 0.2);
}

.feature-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--accent-color), #4a9c52);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	box-shadow: 0 10px 25px rgba(46, 117, 54, 0.25);
	transition: all 0.3s ease;
}

.feature-icon i {
	color: var(--white-color);
	font-size: 36px;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
	box-shadow: 0 15px 35px rgba(46, 117, 54, 0.35);
}

.feature-card:hover .feature-icon i {
	transform: scale(1.1);
}

.feature-card h4 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	background: linear-gradient(135deg, var(--primary-color), #0f2f44);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-card p {
	color: var(--text-color);
	line-height: 1.7;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

/* Desktop-specific enhancements */
@media (min-width: 992px) {
	.products-hero-features {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 24px !important;
	}
	
	.product-category-header {
		margin-bottom: 100px !important;
	}
	
	.features-grid {
		margin-top: 100px !important;
	}
	
	.feature-card {
		padding: 60px 40px !important;
	}
	
	.feature-icon {
		width: 100px !important;
		height: 100px !important;
	}
	
	.feature-icon i {
		font-size: 40px !important;
	}
	
	/* Enhanced Product Cards Desktop */
	.product-card {
		transform: translateY(0) !important;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	}
	
	.product-card:hover {
		transform: translateY(-15px) !important;
		box-shadow: 0 25px 50px rgba(8, 26, 47, 0.2) !important;
	}
	
	.product-card__media {
		height: 280px !important;
	}
	
	.product-card--featured .product-card__media {
		height: 320px !important;
	}
	
	.product-card__body {
		padding: 32px !important;
	}
	
	.product-card__body h3 {
		font-size: 24px !important;
		margin-bottom: 18px !important;
	}
	
	.product-card__body h4 {
		font-size: 22px !important;
		margin-bottom: 16px !important;
	}
	
	.product-card__body p {
		font-size: 16px !important;
		line-height: 1.7 !important;
		margin-bottom: 28px !important;
	}
	
	.product-specs {
		margin-bottom: 28px !important;
		padding: 24px !important;
	}
	
	.spec-item {
		padding: 14px 0 !important;
		font-size: 15px !important;
	}
	
	.spec-label {
		font-size: 14px !important;
	}
	
	.spec-value {
		font-size: 16px !important;
	}
	
	/* Enhanced CTA Section Desktop */
	.cta-box {
		padding: 120px 0 !important;
		background: linear-gradient(186.24deg, rgba(14, 13, 27, 0.7) 4.68%, rgba(14, 13, 27, 0.95) 94.91%), url('../images/cta-bg-img.jpg') no-repeat center center !important;
		background-size: cover !important;
		position: relative !important;
	}
	
	.cta-box::before {
		content: '' !important;
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		background: linear-gradient(135deg, rgba(46, 117, 54, 0.1), transparent) !important;
		pointer-events: none !important;
	}
	
	.cta-content {
		max-width: 700px !important;
		position: relative !important;
		z-index: 2 !important;
	}
	
	.cta-content .section-title h3 {
		font-size: 18px !important;
		padding: 12px 24px !important;
		border-radius: 30px !important;
		margin-bottom: 20px !important;
		background: var(--accent-color) !important;
		color: var(--white-color) !important;
		display: inline-block !important;
	}
	
	.cta-content .section-title h2 {
		font-size: 48px !important;
		line-height: 1.2 !important;
		margin-bottom: 30px !important;
		color: var(--white-color) !important;
		font-weight: 800 !important;
	}
	
	.cta-content-body {
		margin-bottom: 50px !important;
		position: relative !important;
	}
	
	.cta-content-body p {
		font-size: 18px !important;
		line-height: 1.8 !important;
		color: rgba(255, 255, 255, 0.9) !important;
		margin: 0 !important;
	}
	
	.cta-content-footer .btn-default {
		padding: 18px 40px !important;
		font-size: 17px !important;
		font-weight: 700 !important;
		background: var(--accent-color) !important;
		color: var(--white-color) !important;
		border: none !important;
		border-radius: 50px !important;
		transition: all 0.3s ease !important;
		display: inline-flex !important;
		align-items: center !important;
		gap: 10px !important;
	}
	
	.cta-content-footer .btn-default:hover {
		background: #1f6b45 !important;
		transform: translateY(-3px) !important;
		box-shadow: 0 15px 35px rgba(46, 117, 54, 0.4) !important;
	}
	
	.cta-content-footer .btn-default::after {
		background: rgba(255, 255, 255, 0.15) !important;
	}
}

/* Large Desktop Styles (1200px and above) */
@media (min-width: 1200px) {
	.products-hero {
		padding: 120px 0 !important;
	}
	
	.products-hero-content h2 {
		font-size: 3.6rem !important;
	}
	
	.products-hero-features {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 30px !important;
		margin: 50px 0 !important;
	}
	
	.feature-item {
		background: linear-gradient(135deg, rgba(46, 117, 54, 0.05), rgba(46, 117, 54, 0.02)) !important;
		border: 1px solid rgba(46, 117, 54, 0.1) !important;
		border-radius: 12px !important;
		padding: 20px !important;
		transition: all 0.3s ease !important;
	}
	
	.feature-item:hover {
		transform: translateY(-4px) !important;
		box-shadow: 0 12px 32px rgba(8, 26, 47, 0.12) !important;
		border-color: rgba(46, 117, 54, 0.2) !important;
		background: linear-gradient(135deg, rgba(46, 117, 54, 0.08), rgba(46, 117, 54, 0.04)) !important;
	}
	
	.feature-item i {
		color: var(--accent-color) !important;
		font-size: 1.4rem !important;
		flex-shrink: 0 !important;
		margin-top: 2px !important;
	}
	
	.feature-item span {
		font-size: 1rem !important;
		font-weight: 600 !important;
		color: var(--primary-color) !important;
		line-height: 1.5 !important;
	}
	
	.product-category {
		padding: 120px 0 !important;
	}
	
	.product-category--alt {
		padding: 120px 0 !important;
	}
	
	.product-category-header {
		margin-bottom: 120px !important;
	}
	
	.product-category-header h2 {
		font-size: 3rem !important;
	}
	
	.product-grid {
		margin-top: 80px !important;
	}
	
	.product-card {
		height: 100% !important;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	}
	
	.product-card:hover {
		transform: translateY(-15px) scale(1.02) !important;
		box-shadow: 0 30px 60px rgba(8, 26, 47, 0.25) !important;
	}
	
	.product-card__media {
		height: 280px !important;
	}
	
	.product-card--featured .product-card__media {
		height: 320px !important;
	}
	
	.product-badge {
		position: absolute !important;
		top: 20px !important;
		right: 20px !important;
		background: linear-gradient(135deg, var(--accent-color), #1f6b45) !important;
		color: var(--white-color) !important;
		padding: 8px 16px !important;
		border-radius: 25px !important;
		font-size: 11px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.6px !important;
		box-shadow: 0 6px 16px rgba(46, 117, 54, 0.3) !important;
		z-index: 2 !important;
		backdrop-filter: blur(10px) !important;
	}
	
	.product-card__body {
		padding: 35px !important;
	}
	
	.product-card__body h3 {
		font-size: 24px !important;
		margin-bottom: 20px !important;
	}
	
	.product-card__body h4 {
		font-size: 22px !important;
		margin-bottom: 18px !important;
	}
	
	.product-card__body p {
		font-size: 16px !important;
		line-height: 1.8 !important;
		margin-bottom: 30px !important;
	}
	
	.product-specs {
		margin-bottom: 30px !important;
	}
	
	.spec-item {
		padding: 12px 0 !important;
		font-size: 15px !important;
	}
	
	.product-features {
		padding: 120px 0 !important;
	}
	
	.features-grid {
		margin-top: 120px !important;
	}
	
	.feature-card {
		padding: 70px 45px !important;
		transition: all 0.4s ease !important;
	}
	
	.feature-card:hover {
		transform: translateY(-10px) !important;
		box-shadow: 0 25px 50px rgba(8, 26, 47, 0.15) !important;
	}
	
	.feature-icon {
		width: 110px !important;
		height: 110px !important;
		margin-bottom: 25px !important;
	}
	
	.feature-icon i {
		font-size: 44px !important;
	}
	
	.feature-card h4 {
		font-size: 22px !important;
		margin-bottom: 20px !important;
	}
	
	.feature-card p {
		font-size: 16px !important;
		line-height: 1.8 !important;
	}
	
	.cta-box {
		padding: 100px 0 !important;
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.products-hero {
		padding: 60px 0;
	}
	
	.product-category {
		padding: 60px 0;
	}
	
	.product-features {
		padding: 60px 0;
	}
	
	.product-category-header {
		margin-bottom: 40px;
	}
	
	.features-grid {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.products-hero {
		padding: 40px 0;
	}
	
	.product-category {
		padding: 40px 0;
	}
	
	.product-features {
		padding: 40px 0;
	}
	
	.product-card__body {
		padding: 20px;
	}
	
	.feature-card {
		padding: 30px 20px;
	}
	
	.feature-icon {
		width: 60px;
		height: 60px;
	}
	
	.feature-icon i {
		font-size: 24px;
	}
}

/* Solar Calculator Field Toggle */
.calc-field {
    transition: all 0.3s ease-in-out;
}

.calc-field[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

.calc-field[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}
}

/* Make all footer section headings white - Corporate Office, Registered Office, Get in Touch */
.footer-contact .footer-links li strong,
.footer-col .footer-links li strong {
color: #ffffff !important;
}