/* ========================================
   COLOR THEME VARIABLES - Green + Gold
   ======================================== */
:root {
	/* Font Families */
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Raleway', 'Helvetica Neue', sans-serif;
	--font-numbers: 'Poppins', 'Helvetica Neue', sans-serif;

	/* Primary Colors - Light Green Theme */
	--primary-dark: #749A0F;
	--primary: #9ACD14;
	--primary-light: #B8DB48;
	--primary-lighter: #D6EA7B;

	/* Accent Colors - Premium Gold */
	--accent: #F0BA11;
	--accent-light: #F4CA46;
	--accent-dark: #C0950E;

	/* Text Colors */
	--text-dark: #1a1a1a;
	--text-body: #555555;
	--text-muted: #6B767D;
	--text-light: #888888;

	/* Background Colors */
	--bg-white: #ffffff;
	--bg-light: #f8f9fa;
	--bg-section: #e9ecef;
	--bg-dark: #1F2A04;

	/* RGB values for rgba() usage */
	--primary-rgb: 154, 205, 20;
	--primary-light-rgb: 184, 219, 72;
	--accent-rgb: 240, 186, 17;
}

html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	border: none;
	/* color: #747474;
	position: relative; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-family: var(--font-heading);
	color: #332F2F;
	margin-top: 0;
	font-weight: 600;
	letter-spacing: 2px;
}

p {
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	font-family: var(--font-body);
	color: #6B767D;
	letter-spacing: 0.4px;
}

a {
	color: var(--accent);
	background: none;
	text-decoration: none;
	outline: none;
}

a:hover,
a:active,
a:focus {
	color: var(--accent-dark);
	text-decoration: none;
	outline: none !important;

}

/* Number Font Utility Classes */
.number-text,
.phone-number,
.stat-number,
.counter-number,
.year-text {
	font-family: var(--font-numbers) !important;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* Phone numbers in footer and contact */
.footer-contact a[href^="tel"],
.contact-info a[href^="tel"],
a[href^="tel"] {
	font-family: var(--font-numbers);
	font-weight: 500;
	letter-spacing: 0.5px;
}

::selection {
	background: var(--accent);
	color: #FFF;
}

::-moz-selection {
	background: var(--accent);
	color: #FFF;
}

img {
	max-width: 100%;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.form-control {
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 25px;
	color: #FFF;
	height: 46px;
	width: 100%;
	vertical-align: middle;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	background: transparent;
	border: 2px solid rgba(236, 240, 241, 0.15);
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.form-control:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-color: var(--accent);
}


/*-----------------------------------------------------------------*/
/* Common Elements
/*-----------------------------------------------------------------*/

.btn-default {
	background: var(--primary);
	border: 1px solid var(--primary);
	padding: 6px 14px;
	box-shadow: none;
	color: #FFF;
	font-family: var(--font-heading);
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 0px;
	transition: all 700ms;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	color: #FFF;
	outline: none;
	box-shadow: none;
}

.btn-primary {
	background: transparent;
	border: 1px solid #DCE4E6;
	padding: 6px 14px;
	box-shadow: none;
	color: #656060;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 0px;
	transition: all 700ms;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
	background: var(--accent);
	border-color: var(--accent);
	color: #FFF;
	outline: none;
	box-shadow: none;
}

.btn-lg {
	padding: 10px 20px;
	font-size: 13px;
}

/* Premium Gold Button */
.btn-gold {
	background: var(--accent);
	color: var(--primary-dark);
	border: none;
	padding: 15px 40px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover,
.btn-gold:active,
.btn-gold:focus {
	background: var(--accent-light);
	color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
	outline: none;
}

/* Navy Outline Button */
.btn-navy-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
	padding: 14px 38px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.btn-navy-outline:hover,
.btn-navy-outline:active,
.btn-navy-outline:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
	color: #fff;
	transform: translateY(-3px);
	outline: none;
}

.btn-sm {
	padding: 4px 10px 2px;
	font-size: 13px;
}

.btn-color-white {
	color: #FFF;
}

.btn-color-brown {
	color: #6a3e0a;
	border-color: #6a3e0a;
}

::-webkit-input-placeholder {
	color: #FFF !important;
	font-weight: 500;
	letter-spacing: 1px;
}

:-moz-placeholder {
	color: #FFF !important;
	font-weight: 500;
	letter-spacing: 1px;
}

::-moz-placeholder {
	color: #FFF !important;
	font-weight: 500;
	letter-spacing: 1px;
}

:-ms-input-placeholder {
	color: #FFF !important;
	font-weight: 500;
	letter-spacing: 1px;
}

.clear {
	clear: both;
}

.scrollup {
	width: 35px;
	height: 35px;
	position: fixed;
	bottom: 30px;
	right: 15px;
	display: none;
	background-color: var(--primary);
	text-align: center;
	z-index: 200;
}

.scrollup i {
	color: #fff;
	font-size: 15px;
	display: block;
	line-height: 33px;
}

.scrollup:hover {
	background: rgba(252, 54, 44, 0.6);

}

.section {
	padding: 50px 0 30px;
	position: relative;
}


.section .container {
	position: relative;
	z-index: 100;
}

.heading {
	margin-bottom: 30px;
}

.section-header {
	text-align: center;
	margin: 0 0 20px;
}

.section-desc {
	text-align: center;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	color: #555;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.section-header .smt {
	display: table;
	position: relative;
	margin: 0 auto;
	font-family: var(--font-heading);
	font-size: 46px;
	font-weight: 900;
	padding: 0 42px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.section-header .smt:before,
.section-header .smt:after {
	display: inline-block;
	content: "";

	position: absolute;
	left: 0;
	top: 50%;
	width: 42px;
	margin-top: -1px;
}

.section-header .smt>span {
	display: block;
	padding: 10px 30px;
}

.section-header .smt:before,
.section-header .smt:after {
	display: inline-block;
	content: "";

	position: absolute;
	left: 0;
	top: 50%;
	width: 42px;
	margin-top: -1px;
}

.section-header .smt:after {
	left: auto;
	right: 0;
}

.section-white .section-header h2 {
	color: #FFF;
}

.color-white {
	color: #fff !important;
}

#pageloader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #FFF;
	z-index: 999999;
}

.loader {
	position: absolute;
	width: auto;
	height: auto;
	margin: -25px 0 0 -25px;
	top: 50%;
	left: 50%;
	text-align: center;
}

.overlay {
	background: url('../images/parallax.jpg') repeat rgba(0, 0, 0, .4);
	z-index: 1;
	position: absolute;
	display: block;
	width: 100%;

	top: 0;
	left: 0;
}

.overlayy {
	background: url('../images/parallax1.jpg') repeat rgba(0, 0, 0, .4);
	z-index: 1;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.overlaym {
	background: url('../images/whitebackground.png') repeat rgba(0, 0, 0, .4);
	z-index: 1;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.overlayk {
	background: url('../images/kirpich.jpg') repeat rgba(0, 0, 0, .4);
	z-index: 1;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.overlayc {
	background: url('../images/parallax2.jpg') repeat rgba(0, 0, 0, .4);
	z-index: 1;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.parallax {
	position: relative;
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat !important;
	background-size: cover;
}


/*========================================================================*/
/*  Flexslider
/*========================================================================*/

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides>li {
	display: none;
	-webkit-backface-visibility: hidden;
}

.flexslider .slides img {
	width: 100%;
	display: block;
	height: 630px;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

.slides:after {
	content: "\0020";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

.no-js .slides>li:first-child {
	display: block;
}

.flex-control-nav {
	position: absolute;
	bottom: 20px;
	text-align: center;
	width: 100%;
}

.flex-control-nav li {
	margin: 0 3px;
	display: inline-block;
}

.flex-control-nav li a {
	width: 30px;
	height: 5px;
	background: #FFF;
	text-indent: -9999px;
	display: block;
	opacity: 0.4;
}

.flex-control-nav li a.flex-active {
	opacity: 1;

}


.flex-direction-nav .flex-prev:hover,
.flex-direction-nav .flex-next:hover {
	opacity: 1;
}


/*========================================================================*/
/* Slider
/*========================================================================*/


#home {
	width: 100%;
	height: 100%;
	color: #fff;
}

.slider-overlay {
	/*background: url(../images/pattern.png) rgba(0,0,0,.4);*/
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
}

#home .tb {
	position: relative;
	z-index: 999;
}

.slide-text {
	width: 90%;
	margin: 0 auto;
}

#home h1 {
	font-size: 44px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #FFF;
	letter-spacing: 5px;
}

#home p {
	font-size: 18px;
	margin-bottom: 50px;
	font-weight: normal;
	line-height: 28px;
	color: #FFF;
	font-weight: 400;
}

.tb {
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
}

.tb-cell {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#text-slider {
	padding: 0px;
}

.tb-cell a {
	margin-bottom: 10px;
}

.tb-cell a:first-child {
	margin-right: 10px;
}

.homeslider {
	width: 100%;
	height: 100%;
	max-height: 100%;
	position: absolute;
}

.homeslider .flex-direction-nav .flex-prev:hover,
.homeslider .flex-direction-nav .flex-next:hover {
	opacity: 0.7;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.slides {
	height: 100%;
	max-height: 100%;
}

.bg {
	width: 100% !important;
	height: 100% !important;
	background-size: cover !important;
	position: absolute !important;
	z-index: 2 !important;
	background-attachment: fixed;
}

/* .slide1 {
	background: url(../images/img29.jpg) center center;

}

.slide2 {
	background: url(../images/img51.jpg) center center;
}

.slide3 {
	background: url(../images/img52.jpg) center center;
} */


/*-----------------------------------------------------------------*/
/* Navigation
/*-----------------------------------------------------------------*/

/* Fix sticky wrapper - remove white space */
.sticky-wrapper {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	background: transparent !important;
	height: auto !important;
	z-index: 9999 !important;
}

.sticky-wrapper.is-sticky {
	position: fixed !important;
	top: 0 !important;
	height: auto !important;
}

/* Fix header inside sticky wrapper */
.sticky-wrapper #header,
.sticky-wrapper #header.scrolled {
	position: relative !important;
	width: 100% !important;
}

/* Mobile: Keep header static - no layout changes on scroll */
@media (max-width: 992px) {
	.sticky-wrapper {
		height: auto !important;
	}

	.sticky-wrapper #header,
	.sticky-wrapper #header.scrolled,
	#header,
	#header.scrolled {
		background: var(--primary-dark) !important;
	}

	/* Logo size - same before and after scroll */
	.navbar-logo img,
	#header.scrolled .navbar-logo img,
	.sticky-wrapper #header .navbar-logo img,
	.sticky-wrapper #header.scrolled .navbar-logo img {
		max-height: 70px !important;
		transition: none !important;
	}

	/* Container padding - same before and after scroll */
	#header>.container,
	#header.scrolled>.container,
	.sticky-wrapper #header>.container,
	.sticky-wrapper #header.scrolled>.container {
		padding: 10px 15px !important;
		transition: none !important;
	}
}

#header {
	z-index: 999;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	background:
		linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
		linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%) !important;
	box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: none;
	margin-bottom: 0;
}

#header>.container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 10px 40px !important;
}

/* Hide mobile toggle on desktop */
.navbar-toggle {
	display: none;
}

/* Hide mobile close button on desktop */
.menu-close-btn {
	display: none;
}

/* Override Bootstrap navbar-right float */
#main-menu.navbar-right {
	float: none !important;
	margin-left: auto !important;
}

/* Keep the same navbar style before and after scroll */
#header.scrolled {
	background:
		linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
		linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%) !important;
	box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.35);
	backdrop-filter: blur(10px);
}

#header.scrolled>.container {
	padding: 10px 40px !important;
}

/* Mobile scrolled state - STATIC (no changes on scroll) */
@media (max-width: 992px) {

	#header,
	#header.scrolled {
		position: relative !important;
		z-index: 9999 !important;
		transition: none !important;
	}

	#header>.container,
	#header.scrolled>.container {
		padding: 10px 15px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-wrap: nowrap !important;
		transition: none !important;
	}

	#header .navbar-logo,
	#header.scrolled .navbar-logo {
		position: relative !important;
		z-index: 100 !important;
		flex-shrink: 0 !important;
	}

	/* STATIC logo size - no shrink on scroll */
	#header .navbar-logo img,
	#header.scrolled .navbar-logo img {
		max-height: 54px !important;
		transition: none !important;
	}

	#header .navbar-toggle,
	#header.scrolled .navbar-toggle {
		position: relative !important;
		right: auto !important;
		top: auto !important;
		transform: none !important;
		flex-shrink: 0 !important;
	}
}

#header.scrolled .logo-text {
	color: #fff;
	text-shadow: none;
}

#header.scrolled .logo-nav img {
	max-height: 70px;
}

#header.scrolled #main-menu ul li a {
	color: #fff;
	text-shadow: none;
}

#header.scrolled #main-menu ul li a:hover {
	background-color: rgba(var(--accent-rgb), 0.15);
	color: var(--accent);
}

#header.scrolled .navbar-toggle {
	color: #fff;
}

/* Logo Styles - Original */
.logo-nav {
	flex-shrink: 0;
}

.logo-nav a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-nav img {
	max-height: 260px;
	width: auto;
	transition: all 0.3s ease; 
}

.logo-nav a:hover img {
	opacity: 0.9;
}

/* Navbar Logo */
.navbar-logo {
	flex-shrink: 0;
}

.navbar-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.navbar-logo img {
	max-height: 82px;
	width: auto;
	transition: all 0.3s ease;
}

.navbar-logo a:hover img {
	opacity: 0.85;
}

#header.scrolled .navbar-logo img {
	max-height: 82px;
}

/* Desktop: visually enlarge logos without changing header layout
   Use transform so the element is scaled visually but does not affect
   the document flow (header height/width stay the same). */
@media (min-width: 993px) {
	#header {
		overflow: visible;
	}

	.navbar-logo img {
		transform: scale(1);
		transform-origin: left center;
	}

	.logo-nav img {
		transform: scale(1.45);
		transform-origin: left center;
	}
}

#header.scrolled .navbar-logo {
	position: relative;
	z-index: 100;
	flex-shrink: 0;
}

#main-menu {
	z-index: 300;
	visibility: visible;
	display: flex;
	align-items: center;
}

#main-menu ul.nav {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#main-menu ul li {
	display: inline-block;
	position: relative;
}

#main-menu ul li a {
	display: inline-block;
	font-family: var(--font-body);
	padding: 12px 10px;
	line-height: 1.4;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 6px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	position: relative;
	white-space: nowrap;
}

#main-menu ul li a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	transition: width 0.3s ease;
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.5);
}

#main-menu ul li a:hover::after {
	width: 70%;
}

#main-menu ul li a:hover {
	color: var(--accent) !important;
	transform: translateY(-2px);
	background: transparent;
	text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5);
}

#main-menu ul li.active>a,
#main-menu ul li.active.has-child>a {
	color: var(--accent) !important;
	text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.4);
}

#main-menu ul li.active>a::after {
	width: 70%;
}

#main-menu ul.nav>li>a:hover,
#main-menu ul.nav>li>a:focus {
	background: transparent;
	color: var(--accent) !important;
}

#main-menu ul li a i.fa-chevron-down {
	font-size: 10px;
	margin-left: 5px;
	transition: transform 0.3s ease;
}

#main-menu ul li.product-menu:hover a i.fa-chevron-down {
	transform: rotate(180deg);
}

.submenu-toggle {
	display: none;
}

.clear-toggle {
	display: none;
}

.navbar-toggle {
	display: none;
	color: #fff;
	padding: 10px;
	font-size: 28px;
	background: none;
	border: none;
	cursor: pointer;
}

.logo-nav a:hover .logo-text {
	color: var(--accent);
}

#header .col-sm-12 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* flex-wrap: wrap; allows responsiveness */
	padding-left: 0;
	padding-right: 0;
}

#main-menu .nav {
	display: flex;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.banner,
.about-hero,
.page-header {
	margin-top: 0;
	padding-top: 20px;
}



/*-----------------------------------------------------------------*/
/* Services
/*-----------------------------------------------------------------*/


#services {
	padding-bottom: 50px;
}

.row.services-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	/* space between boxes */
}

.services-box {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	text-align: left;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	height: 100%;
	box-sizing: border-box;
}

.services-box .services-icon {
	width: 50px;
	height: 50px;
	color: #494A4B;
	font-size: 22px;
	line-height: 50px;
	margin-bottom: 30px;
	text-align: center;
	border: 1px solid #494A4B;
	border-radius: 50%;
	position: relative;
	transition: all 0.25s linear;
	margin-bottom: 0;
	flex-shrink: 0;
}

.services-box:hover .services-icon {
	color: #FFF;
	border: 1px solid var(--primary);
	background: var(--primary);
}

.services-box .services-desc {
	flex: 1;
	margin-left: 0;
	max-width: 100%;

}


/*-----------------------------------------------------------------*/
/* Works
/*-----------------------------------------------------------------*/

#works {
	padding: 80px 0 60px;
	position: relative;
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.work-grid .mix {
	opacity: 0;
	display: none;
}

.filtering {
	text-align: center;
	display: none;
	margin-left: 0;
	margin-bottom: 50px;
	padding: 0;
	list-style: none;
}

.filter {
	position: relative;
	display: inline-block;
	margin: 0 10px 15px 10px;
	padding: 12px 30px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	background: #fff;
	border: 2px solid var(--primary-dark);
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.3s ease;
	transition: all 0.25s linear;
}

.filter:hover {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	color: var(--accent);
	border-color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.filter.active {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	color: #fff;
	border-color: var(--primary-dark);
	box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.filter.active:after {
	display: none;
}

.full-width {
	width: 100%;
	display: table;
}

.display-table {
	display: table;
	width: 100%;
	height: 100%;
}

.display-table-cell {
	display: table-cell;
	vertical-align: middle;
}

.work-grid {
	width: 100%;
	margin: 0;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

.work-item {
	display: inline-block;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	transition: all 0.4s ease;
}

.work-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.25);
}

.work-item a {
	position: relative;
	height: 100%;
	display: block;
}

.work-item a img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.work-item:hover a img {
	transform: scale(1.1);
}

.work-item .work-info {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(var(--primary-rgb), 0.85) 100%);
	opacity: 0;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.work-item:hover .work-info {
	opacity: 1;
}

.work-item .work-info .work-info-detail {
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.work-item:hover .work-info .work-info-detail {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.work-item .work-info .work-info-detail h4,
.work-item .work-info .work-info-detail p {
	color: #fff;
	font-family: var(--font-heading);
}

.work-item .work-info .work-info-detail h4 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.work-item .work-info .work-info-detail p {
	margin-bottom: 15px;
}

.work-item .work-info .work-info-detail h4:after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	margin: 12px auto;
	border-radius: 2px;
}

.thumbnail-img {
	position: relative;
	float: left;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	border-radius: 15px;
}

.work-all {
	text-align: center;
	margin-top: 50px;
	padding-bottom: 50px;
}

/* Mobile first - show filtering on all screens */
.filtering {
	display: flex !important;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 10px;
}

/* Mobile filter buttons - smaller */
@media (max-width: 640px) {
	.filter {
		padding: 8px 16px;
		font-size: 12px;
		margin: 0 4px 8px 4px;
		letter-spacing: 1px;
	}

	.thumbnail-img {
		width: 100% !important;
	}

	.work-item a img {
		height: 200px;
	}
}

@media only screen and (min-width: 40.063em) {
	.thumbnail-img {
		width: calc(50% - 15px);
	}

	.work-item a img {
		height: 250px;
	}
}

@media only screen and (min-width: 64.063em) {

	.thumbnail-img {
		width: 33.3333333%;
	}
}


/*-----------------------------------------------------------------*/
/* Team
/*-----------------------------------------------------------------*/


#team {
	background: #ECF0F1;
}

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

.team-member img {
	max-width: 100%;
	width: 100%;
}

.team-member .team-info {
	padding: 20px 10px 10px 10px;
	background: #FCFCFC;
}

.team-member .team-info p {
	font-size: 16px;
}

.team-member .team-info:hover {
	background: var(--primary);
}

.team-member .team-info:hover h4,
.team-member .team-info:hover p {
	color: #fff;
}

.team-member .socials {
	margin-top: 20px;
	padding: 0px;
}

.team-member .socials li {
	list-style: none;
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;
}

.team-member .socials li a {
	border: 1px solid #BFB9B9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50px;
	color: #BFB9B9;
	display: block;
	height: 34px;
	line-height: 32px;
	text-align: center;
	width: 34px;
}

.team-member .team-info:hover .socials li a {
	border-color: #fff;
	color: #fff;
}

.team-member .team-info .socials li a:hover {
	background-color: #fff;
	color: var(--accent);
}


/*-----------------------------------------------------------------*/
/* Call to Action
/*-----------------------------------------------------------------*/


#cta {
	background: url(../images/parallax/cta.jpg);
}

.call-to-action {
	text-align: center;
	margin-bottom: 30px;
}

.call-to-action h3 {
	margin-bottom: 25px;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--primary);
	font-size: 42px;
	letter-spacing: 3px;
}

.call-to-action h1 {
	margin-bottom: 25px;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--primary);
	font-size: 42px;
	letter-spacing: 3px;
}

.call-to-action p {
	font-size: 16px;
	margin-bottom: 30px;
	color: black;
}

.call-to-action a {
	margin-right: 10px;
	margin-bottom: 10px;
}

.call-to-action a:last-child {
	margin-right: 0px;
}


/*-----------------------------------------------------------------*/
/* Features
/*-----------------------------------------------------------------*/

#features {
	background: #FFF;
	padding-bottom: 100px;
}

.features-intro {
	max-width: 800px;
	margin: 0px auto 50px;
	text-align: center;
	padding: 0px 10px;
}

.features-intro h3 {
	font-size: 20px;
	font-weight: 500;
	opacity: 0.9;
}

.features-intro p {
	font-size: 16px;
}

.features-main {
	margin-top: 20px;
	display: inline-block;
}

.features-left,
.features-right {
	padding-top: 20px;
}

.features-left .features-item,
.features-right .features-item {
	margin-bottom: 40px;
}

.features-left .features-icon,
.features-right .features-icon {
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	color: #515456;
	font-size: 22px;
	font-weight: 600;
	border: 1px solid #515456;
	position: relative;
	border-radius: 28px;
	transition: all 0.5s ease-in-out 0s;
}

.features-left .features-icon {
	float: right;
}

.features-right .features-icon {
	float: left;
}

.features-left .features-info {
	text-align: right;
	margin-right: 90px;
}

.features-right .features-info {
	text-align: left;
	margin-left: 90px;
}

.features-item:hover .features-icon {
	background: var(--primary);
	border-color: var(--primary);
	color: #FFF;
}

/*-----------------------------------------------------------------*/
/* Facts
/*-----------------------------------------------------------------*/


/* Facts Section Styles */
#facts {
	position: relative;
	padding: 100px 0;
}

.facts-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

#facts .container {
	position: relative;
	z-index: 10;
}

#facts .call-to-action h1 {
	font-family: var(--font-heading);
	font-size: 60px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#facts .call-to-action h3 {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

#facts .call-to-action p {
	font-size: 40px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	max-width: 1100px;
	margin: 0 auto 35px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.highlight-text {
	color: var(--accent);
	font-weight: 600;
}

#facts .call-to-action strong {
	color: var(--accent-light);
}

.facts-btn {
	display: inline-block;
	padding: 16px 50px;
	background: var(--accent);
	color: var(--primary-dark);
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
	border: 2px solid var(--accent);
}

.facts-btn:hover {
	background: var(--accent-light);
	border-color: var(--accent-light);
	color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.5);
}

/* Word by word animation from bottom */
.facts-text-animated {
	font-size: 96px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	max-width: 1100px;
	margin: 0 auto 40px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	font-family: var(--font-heading);
	font-weight: 500;
}

.facts-text-animated .word {
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	margin-right: 8px;
}

.facts-text-animated.animate .word {
	-webkit-animation: wordRevealUp 0.5s ease-out forwards;
	animation: wordRevealUp 0.5s ease-out forwards;
	-webkit-animation-delay: calc(var(--i) * 0.08s);
	animation-delay: calc(var(--i) * 0.08s);
}

.facts-text-animated .word.highlight-word {
	color: var(--accent);
	font-weight: 700;
	text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.6);
}

.facts-text-animated .word.italic {
	font-style: italic;
}

@-webkit-keyframes wordRevealUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes wordRevealUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* Stats Section - Enhanced */
.stats-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/pattern.png') repeat;
	opacity: 0.05;
}

.stats-section::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.stats-row {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.stats-item {
	flex: 1;
	min-width: 220px;
	max-width: 280px;
	text-align: center;
	padding: 40px 30px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.stats-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.stats-item:hover::before {
	left: 100%;
}

.stats-item:hover {
	transform: translateY(-15px);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.stats-icon {
	margin-bottom: 25px;
}

.stats-icon i {
	font-size: 45px;
	color: #fff;
	width: 100px;
	height: 100px;
	line-height: 100px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	display: inline-block;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-item:hover .stats-icon i {
	transform: scale(1.1) rotate(10deg);
	background: rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stats-content {
	position: relative;
}

.stats-number {
	font-family: var(--font-numbers);
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: 1px;
}

.stats-plus {
	font-family: var(--font-numbers);
	font-size: 40px;
	font-weight: 700;
	color: var(--accent-light);
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-label {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 10px;
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.stats-item {
		min-width: 45%;
		max-width: 48%;
	}

	.stats-number {
		font-size: 42px;
	}

	.stats-icon i {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 35px;
	}
}

@media (max-width: 480px) {
	.stats-item {
		min-width: 100%;
		max-width: 100%;
	}
}

/* Keep old facts-detail for backwards compatibility */
.facts-detail {
	text-align: center;
	margin-bottom: 30px;
}

.facts-detail i {
	font-size: 35px;
	color: #ffffff;
	display: inline-block;
	margin-bottom: 25px;
	width: 80px;
	height: 80px;
	background: var(--primary);
	line-height: 80px;
	border-radius: 50%;
	border: 1px solid #FFF;
}

.facts-detail span {
	display: block;
	margin-bottom: 15px;
	font-size: 36px;
	font-weight: 600;
	font-family: var(--font-numbers);
	color: var(--primary);
	letter-spacing: 1px;
}

.facts-detail p {
	margin-bottom: 0px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--primary);
}

#facts .row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	/* ensures responsiveness on smaller screens */
	gap: 20px;
	/* optional spacing between blocks */
}

/*-----------------------------------------------------------------*/
/* Pricing Page
/*-----------------------------------------------------------------*/


#pricing {
	padding-top: 100px;
	background: url(../images/img15.jpg);
}

.pricing-table {
	text-align: center;
	margin-bottom: 30px;
	background: #FFF;
}

.pricing-table h1 {
	padding: 25px 0;
	margin: 0;
	font-size: 20px;
}

.pricing-table h2 {
	margin: 0;
	padding: 25px;
	color: #FFF;
	font-size: 4em;
	background: var(--primary);
}

.pricing-table h2 small {
	font-size: 14px;
	font-weight: 700;
	color: #FFF;
}

.pricing-table .feature-list {
	padding: 15px 0;
}

.pricing-table .feature-list ul {
	list-style: none outside none;
	padding: 0px;
}

.pricing-table .feature-list ul li {
	padding: 13px 0px;
	border-bottom: 1px solid #E5E5E5;
	margin: 0px 40px;
}


.pricing-table .price-signup {
	padding: 10px 0 30px;
}


/*-----------------------------------------------------------------*/
/* Testimonial
/*-----------------------------------------------------------------*/


/* Testimonials Section - Enhanced */
.testimonials-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.testimonials-section::after {
	content: '';
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
	border-radius: 50%;
}

.testimonials-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.testimonial-card {
	flex: 1;
	min-width: 300px;
	max-width: 380px;
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
	border-radius: 20px 20px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
	opacity: 1;
}

.testimonial-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.15);
}

.quote-icon {
	margin-bottom: 25px;
}

.quote-icon i {
	font-size: 40px;
	color: var(--primary-dark);
	opacity: 0.3;
}

.testimonial-text {
	font-family: var(--font-heading);
	font-size: 18px;
	font-style: italic;
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
	position: relative;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.author-avatar i {
	font-size: 24px;
	color: #fff;
}

.author-info h4 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-dark);
	margin: 0 0 5px 0;
}

.author-info p {
	font-size: 14px;
	color: #888;
	margin: 0 0 8px 0;
}

.rating {
	display: flex;
	gap: 3px;
}

.rating i {
	color: #FFD700;
	font-size: 14px;
}

/* Testimonials Button */
.testimonials-cta {
	text-align: center;
	margin-top: 50px;
}

.testimonial-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 45px;
	background: var(--accent);
	color: var(--primary-dark) !important;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 10px 35px rgba(var(--accent-rgb), 0.35);
	position: relative;
	overflow: hidden;
}

.testimonial-btn span {
	color: var(--primary-dark) !important;
}

.testimonial-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.5s ease;
}

.testimonial-btn:hover::before {
	left: 100%;
}

.testimonial-btn:hover {
	background: var(--accent-light);
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.5);
	color: var(--primary-dark) !important;
}

.testimonial-btn:hover span {
	color: var(--primary-dark) !important;
}

.testimonial-btn i {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.testimonial-btn:hover i {
	transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
	.testimonial-card {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.testimonials-section {
		padding: 60px 0;
	}

	.testimonial-card {
		min-width: 100%;
	}

	.testimonial-btn {
		padding: 15px 35px;
		font-size: 16px;
	}
}

/* Old testimonials styles for backwards compatibility */
#testimonials {
	position: relative;
	padding: 100px 0px;
	background: #ECF0F1;
}

#testimonials .container {
	width: 90%;
	position: relative;
}

#testimonials .items {
	margin-bottom: 30px;
	margin-top: -7px;
	color: #474545;
}

#testimonials .desc {
	font-size: 17px;
	line-height: 32px;
	font-weight: 500;
}

#testimonials .name {
	font-weight: 500;
	margin-top: 20px;
	font-size: 18px;
}

#testimonials .owl-controls .owl-page span {
	background: #ccc;
	border-radius: 0;
	display: block;
	margin: 5px 4px;
	opacity: 1;
	width: 12px;
	height: 12px;
	margin-right: 10px;
}

#testimonials .owl-controls .owl-page.active span {
	background: var(--accent) !important;
	border: 1px solid var(--accent);
}


/*-----------------------------------------------------------------*/
/* Client
/*-----------------------------------------------------------------*/


#clients {
	background: #FFF;
	text-align: center;
}

.clients-carousel figure {
	margin: 5px;
	background: rgba(172, 108, 32, 0.35);
	padding: 40px 10px;
	margin-bottom: 30px;

}

.clients-carousel figure img {
	display: block;
	margin: 0 auto;
}


/*-----------------------------------------------------------------*/
/* Blog
/*-----------------------------------------------------------------*/


#blog {
	padding: 100px 0 50px;
	position: relative;
	background: #ECF0F1;
}

.blog-post {
	background: #FEFDFD;
	border: 1px solid #F6F6F6;
	margin-bottom: 30px;
	text-align: center;
}

.post-desc {
	margin-bottom: 20px;
	padding: 0px 10px;
}

.post-date span {
	font-size: 17px;
	color: #FFF;
}

.post-desc .entry-meta {
	margin: 15px 0px;
}

.post-desc .entry-meta li {
	display: inline;
	margin-right: 7px;
	font-size: 14px;
	color: #969696;
}

.post-desc p {
	margin-bottom: 20px;
}

.post-media {
	overflow: hidden;
	max-height: 360px;
	position: relative;
	margin-bottom: 25px;
}

.post-media img {
	max-width: 100%;
	height: auto;
}

.post-blog .btn {
	text-transform: uppercase;
	margin-top: 15px;
}


/*-----------------------------------------------------------------*/
/* Contact
/*-----------------------------------------------------------------*/


#contact {
	background: url('../images/parallax/contact.jpg');
	padding-top: 100px;
}


.contact-form {
	margin-bottom: 30px;
	padding-right: 30px;
}

.contact-address {
	margin-bottom: 30px;
}

.contact-address p {
	margin-bottom: 23px;
	color: #FFF;
	font-size: 15px;
	letter-spacing: 0.9px;
	line-height: 35px;
}

/* contact-style.css */

/* Contact form container */
.contact-form {
	border-radius: 20px;
	padding: 0px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	font-family: var(--font-heading);
}

/* Input and textarea fields */
.contact-form input,
.contact-form textarea {

	border-radius: 10px;
	padding: 12px 15px;
	font-size: 16px;
	margin-bottom: 15px;
	width: 100%;
	box-sizing: border-box;
}

/* Submit button */
/* .contact-form button {
  background-color: #2b2b2b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
} */

/* .contact-form button:hover {
  background-color: var(--primary-dark);
  color: #fff;
} */

/* Section heading */
.section-header h2 {
	font-family: var(--font-heading);
	font-size: 36px;
	color: #333;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.btn-default {
	background-color: var(--primary);

	border: none;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

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


/* .contact-address p span {
	display: inline-block;
	margin-left: 70px;
} */

/* .contact-address i {
	font-size: 16px;
  color: #fff;
  width: 20px;
  text-align: center;
  height: auto;
  position: static !important; /* 🔥 This disables the absolute positioning */
/* margin: 4px 0 0;
  border: none;
} */
*/
/*-----------------------------------------------------------------*/
/* Portfolio Single Page
/*-----------------------------------------------------------------*/

.full-section {
	width: 100%;
	padding: 80px 0px 50px;
	position: relative;
}

/* Offset for fixed navbar on non-homepage sections */
.full-section.single-work {
	padding-top: 50px;
}

.banner {
	background: url(../images/page-header.png);
	padding: 100px 0px 80px;
	position: relative;
	width: 100%;
}

.banner .container {
	position: relative;
	z-index: 100;
}

.banner h4 {
	font-size: 34px;
	color: var(--accent);
	font-weight: 700;
	margin: 0px;
	float: left;
}

.site_map {
	font-size: 16px;
	float: right;
	color: #FFF;
	padding-top: 8px;
	text-align: right;
	text-transform: uppercase;
}

.site_map a {
	color: #FFF;
}

.work-detail .btn {
	margin-top: 30px;
}

.work-detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.work-detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.work-detail-list li {
	padding: 5px 0;
	line-height: 22px;
	font-size: 16px;
	font-family: var(--font-body);
	letter-spacing: 0.9px;
}

.work-detail-list li span {
	font-weight: 600;
	padding-right: 15px;
	text-transform: uppercase;
	font-size: 14px;
}

.single-work-slider {
	margin-bottom: 30px;
}

.single-work-slider .owl-controls {
	height: 43px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: auto;
}



.single-work-slider .owl-prev,
.single-work-slider .owl-next {
	display: block !important;
	width: 30px !important;
	height: 30px !important;
	line-height: 20px !important;
	font-size: 20px !important;
	border-radius: 0 !important;
	opacity: 1 !important;
	background: var(--accent) !important;
	position: absolute !important;
}

.single-work-slider .owl-prev {
	left: 0;
	margin-right: 10px;
}

.single-work-slider .owl-next {
	right: 0;
	margin-left: 10px;
}

.single-work-slider .owl-prev:hover,
.single-work-slider .owl-next:hover {
	background: #4F3B3B !important;
}

.single-work-slider .item img {
	display: block;
	width: 100%;
	height: auto;
}

.related-project .image-wrapper {
	margin-bottom: 20px;
}

.owl-theme .owl-controls .owl-page span {
	background: #a0a0a0;
}

/*------------Related Project Carousel------------*/

.featured-works {
	background: #F5F5F5;
	padding: 50px 0px;
}

.featured-work-carousel {
	display: inline-block;
	width: 100%;
}

.featured-works .item {
	height: auto;
	z-index: 300;
	cursor: pointer;
}

.featured-works .item .fworks-image {
	overflow: hidden;
	width: 100%;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
}

.featured-works .item .fworks-image img {
	width: 100%;
	height: auto;
}

.featured-works .item .featured-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	background: rgba(0, 0, 0, .5);
}

.featured-works .item .featured-caption h4 {
	font-size: 18px;
	color: #FFF;
	margin: 30px 0px 0px 30px;
}

.featured-works .item .featured-caption p {
	font-size: 14px;
	color: #FFF;
	margin: 5px 0px 0px 30px;
	text-transform: uppercase;
}

.featured-works .item .hover-link {
	left: 30px;
	position: absolute;
	bottom: 15px;
	opacity: 0;
	z-index: 200;
}

.featured-works .item .hover-link a {
	position: relative;
	font-size: 15px;
	line-height: 35px;
	text-align: center;
	display: inline-block;
	background: var(--accent);
	color: #F9F6F6;
	width: 35px;
	height: 35px;
	margin: 0px;
	border-radius: 100%;
}

.featured-works .item:hover .hover-link,
.featured-works .item:hover .featured-caption {
	opacity: 1;
}

.featured-works .owl-controls {
	margin-top: 30px;
	margin-bottom: 100px;
}

.featured-works .owl-controls {
	height: 43px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: 0;
}

.featured-works .owl-prev,
.featured-works .owl-next {
	display: block !important;
	width: 30px !important;
	height: 30px !important;
	line-height: 20px !important;
	font-size: 20px !important;
	border-radius: 0 !important;
	opacity: 1 !important;
	background: var(--accent) !important;
	position: absolute !important;
}

.featured-works .owl-prev {
	left: 0;
}

.featured-works .owl-next {
	right: 0;
}

/*-----------------------------------------------------------------*/
/* Blog Page
/*-----------------------------------------------------------------*/

.post-content {
	margin-top: 0;
}

.post-img {
	margin: 0 0 25px 0;
	overflow: hidden;
	position: relative;
}

.post-img img {
	width: 100%;

}

.blog-img-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
}

.post-img:hover .blog-img-hover {
	opacity: 1;
}

.blog-img-hover span {
	font-size: 15px;
	position: absolute;
	top: 40%;
	width: 30px;
	height: 30px;
	background: #F0353A;
	color: #FFF;
	line-height: 30px;
	border-radius: 50%;
}

.post-meta {
	margin: 10px 0px 20px;
	line-height: 20px;
	color: #999;
}

.post-meta a {
	font-size: 13px;
	color: #A29E9E;
	font-style: italic;
	font-weight: 500;
}

.post-meta a i {
	color: #AAA6A6;
	margin-right: 5px;
}

.post-description p {
	margin-bottom: 25px;
}

.post-description h3 {
	font-size: 22px;
}

.post-description h3 a {
	color: #2E343C;
}

.post-description h3 a:hover {
	color: #F0353A;
}

blockquote {
	display: block;
	padding: 20px 20px;
	background: #F1F1F1;
	margin: 25px 15px;
	font-size: 15px;
	line-height: 21px;
	text-align: justify;
	color: #9F9A9A;
	letter-spacing: 0.1px;
	border-left: 5px solid var(--accent);
}

blockquote a {
	text-decoration: none;
	background: #eee;
	cursor: pointer;
	padding: 0 3px;
}

blockquote a:hover {
	color: #666;
}

blockquote em {
	font-style: italic;
}

/*------------Comments------------*/

.comments-section {
	padding: 50px 0;
}

.comments-section h3 {
	margin-bottom: 20px;
}

.comment-form input,
.search-box input,
.comment-form textarea {
	border: 2px solid #F0EDED;
}

.comment-list {
	margin: 40px 0;
	padding-top: 20px;
	font-family: var(--font-body);
}

.comment-list h3 {
	font-family: var(--font-body);
}

/*------------Comment List------------*/

.comment-list ol {
	list-style: none;
	margin-left: 0px;
	padding: 0;
}

.comment-list ol.comment-sub {
	list-style: none;
}

li.comment .single_comment.first-comment {
	margin-top: 25px;
}

li.comment .single_comment {
	padding: 20px 20px;
	background: #F5F5F5;
	margin-bottom: 20px;
}

li.comment ol.comment-sub {
	margin-left: 65px;
}

/*------------Comment List Content------------*/

.comment-list ol .comment-avatar {
	float: left;
	margin-right: 25px;
}

.comment-list ol .comment-avatar img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.comment-list ol .comment-content {
	overflow: hidden;
}

.comment-list ol .comment-name {
	font-weight: 700;
}

.comment-list ol .comment-name span {
	font-weight: normal;
	color: #aaa;
	margin: 0 8px;
}

.comment-list ol .comment-name a {
	font-size: 15px;
	font-weight: 600;
	color: #9E9C9C;
}

.comment-list ol .comment-name a.comment-reply {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
}

.comment-list ol .comment-desc {
	font-size: 14px;
	margin-bottom: 10px;
	color: #999;
	margin-top: 10px;
}


/*------------Sidebar Latest Post------------*/

.widget-main {
	margin-bottom: 30px;
	padding: 20px 20px 10px 20px;
	border: 1px solid #EAEAEA;
}

.widget-sidebar .search-box {
	position: relative;
}

.widget-sidebar .search-box input {
	padding-left: 10px;
}

.widget-sidebar .search-box i {
	position: absolute;
	right: 20px;
	top: 14px;
	font-size: 16px;
}

.post-categories ul {
	padding: 0px;
	margin: 0px;
}

.post-categories li {
	list-style: none;
	margin-bottom: 5px;
	border-bottom: 1px solid #f0f1f2;
	padding: 4px 0 4px 15px;
	position: relative;
}

.post-categories li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}

.post-categories li a:before {
	content: "\f105";
	display: block;
	font-family: FontAwesome;
	position: absolute;
	left: -15px;
}

.post-categories a {
	position: relative;
	color: #2A2929;
	font-size: 15px;
	display: inline-block;
	width: 100%;
	letter-spacing: 0.9px;
	padding-bottom: 10px;
	line-height: 20px;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.post-categories a:hover {
	color: var(--accent);
}

.sidebar-widget {
	font-size: 11px;
	line-height: 15px;
	margin-right: 8px;
}

.sidebar-widget a {
	color: #625F5F;
}

.sidebar-widget a:hover {
	color: var(--accent);
}

.sidebar-widget img {
	float: left;
	width: 80px;
	height: 67px;
	margin: 6px 14px 22px 0px;
}

.sidebar-widget p.date {
	color: #333;
}

.sidebar-widget p.sidebar-widget-title {
	font-size: 14px;
	line-height: 20px;
}

/*------------Tags------------*/

.tags {
	padding: 10px 0 10px;
	display: inline-block;
}

.tags a {
	float: left;
	padding: 10px 7px;
	font-size: 15px;
	color: #FFF;
	margin: 0 6px 6px 0;
	background: var(--primary);
}

.tags a:hover {
	background: #333333;
}

/*------------Pagenation------------*/

.pagenation {
	padding: 40px 0 50px;
}

.pagenation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin: auto;
}

.pagenation li {
	float: left;
	margin-left: 4px;
	background: #fff;
	border: 1px solid #e4e7e8;
}

.pagenation li.active {
	border: 1px solid #F0353A;
}

.pagenation li:hover {
	border: 1px solid #F0353A;
}

.pagenation li:first-child {
	margin-left: 0;
}

.pagenation li a {
	color: #868e9c;
	font-size: 14px;
	padding: 12px 15px;
	line-height: 12px;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
}

.pagenation li.active a,
.pagenation li:hover a {
	color: #F0353A;
}



/*-----------------------------------------------------------------*/
/* Footer
/*-----------------------------------------------------------------*/


/* Modern Footer Styles */
.modern-footer {
	background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.modern-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent), var(--accent-light));
}

.footer-top {
	padding: 80px 0 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 50px;
}

/* Brand Section */
.footer-brand {
	padding-right: 30px;
}

.footer-logo img {
	max-height: 90px;
	width: auto;
	margin-bottom: 20px;
	border-radius: 8px;
	background: var(--primary-dark);
	padding: 5px;
	transform: scale(0.7);
	transform-origin: left center;
}

.footer-tagline {
	font-family: var(--font-heading);
	font-size: 18px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 25px;
}

.footer-social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	border-color: var(--primary);
	transform: translateY(-5px);
	color: #fff;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	border-radius: 2px;
}

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

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.footer-links ul li a i {
	font-size: 12px;
	color: var(--accent);
	transition: transform 0.3s ease;
}

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

.footer-links ul li a:hover i {
	transform: translateX(5px);
}

/* Contact Info */
.footer-contact .contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-contact .contact-item i {
	width: 40px;
	height: 40px;
	background: rgba(var(--accent-rgb), 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
}

.footer-contact .contact-item div strong {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 5px;
}

.footer-contact .contact-item div p,
.footer-contact .contact-item div a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	text-decoration: none;
	transition: color 0.3s ease;
	font-variant-numeric: tabular-nums;
}

/* Phone numbers in footer */
.footer-contact .contact-item div a[href^="tel"] {
	font-family: var(--font-numbers);
	font-weight: 500;
	letter-spacing: 0.5px;
}

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

/* Footer Phone Number - Styled prominently under each address */
.footer-contact .contact-item div .footer-phone {
	display: block;
	margin-top: 8px;
	margin-left: 0;
	padding-left: 0;
	color: var(--accent) !important;
	font-family: var(--font-numbers);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact .contact-item div .footer-phone:hover {
	color: var(--accent-light) !important;
}

/* Override circular icon style for phone icon inside footer-phone */
.footer-contact .contact-item div .footer-phone i,
.footer-contact .contact-item .footer-phone i {
	margin-right: 8px;
	font-size: 13px;
	width: auto !important;
	height: auto !important;
	background: none !important;
	display: inline !important;
	border-radius: 0 !important;
	color: var(--accent) !important;
	flex-shrink: unset !important;
	align-items: unset !important;
	justify-content: unset !important;
}

/* Footer Bottom */
.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.footer-bottom-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-variant-numeric: tabular-nums lining-nums;
	letter-spacing: 0.5px;
	font-family: 'Poppins', 'Raleway', sans-serif;
}

/* Consistent number styling in footer */
.footer-contact p,
.footer-contact .contact-item p,
.footer-contact .contact-item div p {
	font-variant-numeric: tabular-nums lining-nums;
	font-family: 'Poppins', 'Raleway', sans-serif;
	font-size: 14px;
}

.footer-bottom-content a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom-content a:hover {
	color: var(--accent-light);
}

/* Footer Responsive */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-brand {
		grid-column: 1 / -1;
		text-align: center;
		padding-right: 0;
	}

	.footer-social-links {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.footer-links h4::after,
	.footer-contact h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-links ul li a {
		justify-content: center;
	}

	.footer-contact .contact-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
}

/* Old Footer Fix - kept for other pages */
.footer-wrapper {
	width: 100%;
	background-color: #111;
	color: white;
	padding: 40px 0 20px;
	position: absolute;
}

.footer-wrapper .footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* .footer-wrapper p,
.footer-wrapper span,
.footer-wrapper a,
.footer-wrapper i {
  color: white;
  font-size: 16px;
  letter-spacing: 0.9px;
} */

.footer-wrapper .footer-social {
	margin: 20px 0;
	padding: 0;
	list-style: none;
}

/* .footer-wrapper .footer-social li {
  display: inline-block;
  margin: 0 10px;
} */

.footer-wrapper .footer-social li a {
	color: white;
	border: 1px solid white;
	display: inline-block;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 20%;
	transition: all 0.3s ease;
}

/* .footer-wrapper .footer-social li a:hover {
  background-color: white;
  color: #ffc107;
} */
/* ===== Footer Fix: Align Both Offices Vertically in Columns ===== */
.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding: 20px 0;
	width: 100%;
}

/* Tamil Nadu Office block */
.footer-container>.row {
	flex: 1 1 48%;
	max-width: 48%;
	display: flex;
	flex-direction: column;
}

/* Force Bootstrap columns inside .row to stack vertically */
.footer-container>.row>.col-md-4,
.footer-container>.row>.col-md-8 {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0%;
	padding: 4px;
}

/* Kerala block */
.footer-container>.col-md-6.contact-address {
	flex: 1 1 48%;
	max-width: 48%;
	display: flex;
	flex-direction: column;
}

/* Common spacing for map */
.footer-container .google-map {
	margin-top: 10px;
}

/* Responsive stacking */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
	}

	.footer-container>.row,
	.footer-container>.col-md-6.contact-address {
		max-width: 100%;

	}
}

.contact-address p {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.6;
}

.contact-address p i {
	margin-top: 4px;
	flex-shrink: 0;
}

.contact-address p span {
	display: inline-block;
	margin-left: 50px;
}

.footer-wrapper .contact-address {
	width: 48%;
	float: left;
	padding: 15px;
	box-sizing: border-box;
}

/* .footer-wrapper .google-map {
  width: 48%;
  float: left;
  box-sizing: border-box;
  margin: 0 1%;
} */
.footer-wrapper .google-map iframe {
	width: 100%;
	height: 300px;
	display: block;
}

/* .footer-wrapper .google-map {
  width: 48%;
  float: left;
  box-sizing: border-box;
  margin: 0 1%;
} */

.footer-wrapper .google-map {
	padding: 0 10px;
	box-sizing: border-box;
}

.footer-maps-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-wrapper::after {
	content: "";
	display: table;
	clear: both;
}

/* Stack maps on small screens */
@media (max-width: 768px) {
	.footer-wrapper .google-map {
		width: 100%;
		float: none;
		margin: 15px 0;
	}
}

@media (max-width: 768px) {
	.footer-wrapper .contact-address {
		width: 100%;
		float: none;
	}
}

.footer-wrapper .contact-address p {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 15px;
}

.footer-wrapper .contact-address p i {
	flex-shrink: 0;
	font-size: 16px;
	margin-top: 4px;
	color: white;
	width: 20px;
	text-align: center;
}

.footer-wrapper .contact-address p span {
	margin-left: 0;
	display: inline-block;
	line-height: 1.6;
	/* Remove large indent */
}

/* .footer-wrapper .col-md-6.contact-address .google-map {
	padding-top: 50px; 
} */
.footer-wrapper .row>.google-map {
	padding-top: 35px;
}

/*-----------------------------------------------------------------*/
/*  Media queries
/*-----------------------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1024px) {

	.navbar-right {
		float: none !important;
	}

}


@media (min-width: 992px) {

	#main-menu.collapse {
		display: block !important;
	}

	.thumbnail-img {
		width: calc(33.333% - 20px);
	}

	.work-item a img {
		height: 300px;
	}

}



@media (max-width: 992px) {

	/* Sticky wrapper on mobile */
	.sticky-wrapper {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 9999 !important;
	}

	.sticky-wrapper.is-sticky {
		position: fixed !important;
		top: 0 !important;
	}

	/* Header inside sticky wrapper on mobile */
	.sticky-wrapper #header,
	.sticky-wrapper #header.scrolled {
		position: relative !important;
		width: 100% !important;
	}

	/* Header fixed position on mobile */
	#header {
		position: relative !important;
		width: 100% !important;
		z-index: 9999 !important;
	}

	#header>.container {
		padding: 8px 12px !important;
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-wrap: nowrap !important;
		gap: 10px;
	}

	#header.scrolled>.container,
	#header.is-sticky>.container,
	.sticky-wrapper #header>.container,
	.sticky-wrapper.is-sticky #header>.container {
		padding: 8px 12px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-wrap: nowrap !important;
		gap: 10px;
	}

	.navbar-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 22px;
		padding: 10px;
		z-index: 100;
		background: rgba(var(--primary-rgb), 0.9);
		border: none;
		border-radius: 8px;
		cursor: pointer;
		position: relative !important;
		right: auto !important;
		top: auto !important;
		transform: none !important;
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
	}

	.navbar-toggle:hover {
		background: var(--accent);
		color: var(--primary-dark);
	}

	.navbar-logo {
		position: relative !important;
		z-index: 100 !important;
		flex: 1 1 auto !important;
		min-width: 0 !important;
		max-width: calc(100% - 52px) !important;
	}

	.navbar-logo img {
		display: block;
		width: auto;
		max-width: 100% !important;
		max-height: 48px !important;
	}

	#main-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: var(--primary-dark) !important;
		z-index: 9999;
		transition: right 0.4s ease-in-out;
		padding-top: 80px;
		display: block !important;
		overflow-y: auto;
	}

	#main-menu.open {
		right: 0;
	}

	/* Override Bootstrap collapse for mobile only */
	#main-menu.collapse {
		display: block !important;
		height: 100vh !important;
		background: var(--primary-dark) !important;
	}

	#main-menu ul.nav {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	#main-menu ul li {
		display: block;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
		overflow: hidden;
	}

	#main-menu ul li .nav-item-row {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 62px;
		position: relative;
	}

	#main-menu ul li a {
		color: #fff !important;
		padding: 18px 20px !important;
		display: block;
		font-size: 16px !important;
	}

	#main-menu ul li .nav-item-row > a {
		flex: 0 1 auto;
		width: auto;
		display: block !important;
		text-align: center;
		color: #fff !important;
		-webkit-text-fill-color: #fff !important;
		opacity: 1 !important;
		visibility: visible !important;
		text-indent: 0 !important;
		overflow: visible !important;
		white-space: nowrap;
		font-weight: 700;
		letter-spacing: 0.8px;
	}

	#main-menu ul li .submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		border: none;
		background: transparent;
		color: #fff;
		font-size: 20px;
		flex-shrink: 0;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	#main-menu ul li.submenu-open > .nav-item-row .submenu-toggle .fa {
		transform: rotate(180deg);
	}

	#main-menu ul li.active > .nav-item-row > a,
	#main-menu ul li.submenu-open > .nav-item-row > a {
		color: var(--accent) !important;
		-webkit-text-fill-color: var(--accent) !important;
	}

	#main-menu ul li.submenu-open > .nav-item-row {
		background: rgba(255, 255, 255, 0.06);
	}

	#main-menu ul li .submenu-toggle .fa {
		transition: transform 0.25s ease;
	}

	#main-menu ul li a::after {
		display: none;
	}

	#main-menu ul li.active>a {
		box-shadow: none !important;
		background: rgba(255, 255, 255, 0.1);
	}

	#main-menu ul li:hover ul.custom-dropdown,
	#main-menu ul li.product-menu:hover .custom-dropdown {
		position: relative;
		top: 0;
		margin-top: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	#main-menu ul li ul.custom-dropdown li a {
		padding: 14px 20px !important;
		background: rgba(0, 0, 0, 0.18);
		text-align: center;
		font-size: 14px !important;
		font-weight: 600;
		white-space: normal;
	}

	.logo-nav img {
		max-height: 50px;
	}

	/* Show close button on mobile */
	.menu-close-btn {
		display: block;
		position: absolute;
		top: 20px;
		right: 25px;
		font-size: 32px;
		background: none;
		border: none;
		color: #fff;
		cursor: pointer;
		z-index: 10000;
	}

	#main-menu ul li.has-dropdown ul.custom-dropdown,
	#main-menu ul li.has-dropdown .mega-dropdown {
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		margin-top: 0;
	}

	#main-menu ul li.submenu-open > ul.custom-dropdown,
	#main-menu ul li.submenu-open > .mega-dropdown {
		display: block;
	}

	#main-menu ul li.submenu-open > .mega-dropdown {
		display: flex;
	}

}

@media (max-width: 560px) {

	#home h1 {
		font-size: 30px;
	}

	.navbar-logo {
		position: relative;
		z-index: 10002;
	}

	.navbar-logo img {
		max-height: 50px;
	}

	.logo-nav img {
		max-height: 50px;
	}

	.navbar-toggle {
		width: 42px;
		height: 42px;
		font-size: 20px;
		right: 10px;
	}

}


@media (max-width: 500px) {

	.header-info h1 {
		font-size: 27px;
		line-height: 37px;
	}

	.header-info {
		padding: 0px 30px;
	}


}


@media (max-width: 479px) {

	.section-header .smt {
		font-size: 26px;
		padding: 0;
	}

	.section-header .smt:before,
	.section-header .smt:after {
		width: 18px;
	}

	img.align-left,
	img.align-right {
		display: block;
		float: none;
		margin: 0 auto 20px;
	}


}



@media (max-width: 330px) {

	.header-info h1 {
		font-size: 18px !important;
		line-height: 22px;
	}

	.header-info {
		padding: 0px 10px;
	}


}

/* .nav {
      list-style: none;
      display: flex;
      gap: 20px;
      background-color: #fff;
      padding: 10px 30px;
    } */

/* .nav li {
      position: relative;
    } */

/* .nav a {
      color: black;
      text-decoration: none;
      padding: 10px 15px;
      display: block;
    } */

/* Dropdown Styles */
.custom-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	min-width: 200px;
	background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-light) 100%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	border-radius: 8px;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#main-menu ul li.product-menu:hover .custom-dropdown {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.custom-dropdown li {
	margin: 0;
	padding: 0;
	line-height: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown li:last-child {
	border-bottom: none;
}

.custom-dropdown li a {
	display: block;
	padding: 12px 20px !important;
	margin: 0 !important;
	white-space: nowrap;
	font-size: 13px !important;
	line-height: 1.4 !important;
	color: #fff !important;
	text-shadow: none !important;
	transition: all 0.3s ease;
	border-radius: 0 !important;
}

.custom-dropdown li a:hover {
	background: rgba(var(--accent-rgb), 0.15) !important;
	padding-left: 25px !important;
	color: var(--accent) !important;
}

/* .custom-dropdown li {
      display: block;
      width: 100%;
      border-bottom: 1px solid #eee;
    } */

/* .custom-dropdown li a {
      color: #333;
      padding: 10px 15px;
      text-decoration: none;
    } */

/* .custom-dropdown li a:hover {
      background-color: var(--primary-dark);
      color: white;
    } */

/* Show dropdown only on hover */
/* .product-menu:hover .custom-dropdown {
      display: flex;
    } */

/* Fix: Hide dropdown by default */
#main-menu ul li ul.custom-dropdown {
	display: none;
}

/* Show only on hover */
#main-menu ul li.product-menu:hover ul.custom-dropdown {
	display: block;
}

/* ============================================
   MEGA MENU STYLES
   ============================================ */

/* Mega Menu Container */
.mega-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	min-width: 750px;
	padding: 30px 20px;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 10px;
}

/* Show mega menu on hover */
#main-menu ul li.mega-menu-parent:hover .mega-dropdown {
	display: flex;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

/* Mega Menu Columns */
.mega-dropdown .mega-column {
	flex: 1;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-dropdown .mega-column:last-child {
	border-right: none;
}

.mega-dropdown .mega-column h5 {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mega-dropdown .mega-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-dropdown .mega-column ul li {
	margin: 0;
	padding: 0;
}

.mega-dropdown .mega-column ul li {
	display: block;
}

.mega-dropdown .mega-column ul li a {
	display: block;
	padding: 10px 0 !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	text-shadow: none !important;
	opacity: 1 !important;
	-webkit-text-fill-color: #ffffff !important;
}

.mega-dropdown .mega-column ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.mega-dropdown .mega-column ul li a:hover {
	color: var(--accent) !important;
	padding-left: 10px !important;
	-webkit-text-fill-color: var(--accent) !important;
}

/* Ensure Interior column items stack vertically and have spacing */
.mega-dropdown .mega-column.interior-column ul {
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
}

.mega-dropdown .mega-column.interior-column ul li {
	display: block !important;
	width: 100% !important;
}

.mega-dropdown .mega-column.interior-column ul li a {
	display: block !important;
	width: 100% !important;
	padding: 0.5px 0 !important;
	line-height: 1.8 !important;
}

.mega-dropdown .mega-column ul li a:hover::after {
	width: 100%;
}

/* UPVC and other regular dropdowns enhanced */
#main-menu ul.nav>li.has-dropdown>a::after {
	content: '\f107' !important;
	font-family: 'FontAwesome' !important;
	display: inline-block !important;
	margin-left: 6px;
	font-size: 12px;
	transition: transform 0.3s ease;
	position: static !important;
	width: auto !important;
	height: auto !important;
	background: none !important;
	transform: none;
	bottom: auto !important;
	left: auto !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

#main-menu ul.nav>li.has-dropdown:hover>a::after {
	transform: rotate(180deg) !important;
	width: auto !important;
}

/* Enhanced Custom Dropdown */
#main-menu ul li.has-dropdown ul.custom-dropdown {
	min-width: 200px;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	border-radius: 12px;
	padding: 10px 0;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
	margin-top: 15px;
}

#main-menu ul li.has-dropdown:hover ul.custom-dropdown {
	margin-top: 0;
}

#main-menu ul li.has-dropdown ul.custom-dropdown li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#main-menu ul li.has-dropdown ul.custom-dropdown li:last-child {
	border-bottom: none;
}

#main-menu ul li.has-dropdown ul.custom-dropdown li a {
	padding: 12px 25px !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 600;
	transition: all 0.3s ease;
	text-shadow: none !important;
	opacity: 1 !important;
	-webkit-text-fill-color: #ffffff !important;
}

#main-menu ul li.has-dropdown ul.custom-dropdown li a:hover {
	background: rgba(var(--accent-rgb), 0.15) !important;
	color: var(--accent) !important;
	padding-left: 30px !important;
	-webkit-text-fill-color: var(--accent) !important;
}

#main-menu ul li:hover .mega-dropdown .mega-column ul li a,
#main-menu ul li:hover ul.custom-dropdown li a {
	color: #ffffff !important;
	text-shadow: none !important;
	opacity: 1 !important;
	-webkit-text-fill-color: #ffffff !important;
}

#main-menu ul li:hover .mega-dropdown .mega-column ul li a:hover,
#main-menu ul li:hover ul.custom-dropdown li a:hover {
	color: var(--accent) !important;
	-webkit-text-fill-color: var(--accent) !important;
}

/* Catalogs Dropdown - Align to right to prevent overflow */
#main-menu ul li.catalogs-menu ul.custom-dropdown {
	left: auto;
	right: 0;
	min-width: 220px;
	max-width: 280px;
}

#main-menu ul li.catalogs-menu ul.custom-dropdown li a {
	white-space: normal;
	word-wrap: break-word;
	line-height: 1.4 !important;
}

/* Mobile Responsive Mega Menu */
@media (max-width: 991px) {
	.mega-dropdown {
		position: relative;
		left: 0;
		transform: none;
		min-width: 100%;
		flex-direction: column;
		padding: 15px;
		border-radius: 0;
		margin-top: 0;
		box-shadow: none;
	}


	.mega-dropdown .mega-column {
		padding: 15px 10px;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.mega-dropdown .mega-column:last-child {
		border-bottom: none;
	}

	.mega-dropdown .mega-column h5 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.mega-dropdown .mega-column ul li a {
		padding: 8px 0 !important;
		font-size: 13px !important;
	}

	#main-menu ul li.has-dropdown ul.custom-dropdown {
		position: relative;
		min-width: 100%;
		border-radius: 0;
		margin-top: 0;
	}
}

.container {
	text-align: left;
	margin-top: 30px;
	margin-bottom: 50px;
}

.door-type-title {
	text-align: left;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: bold;
	color: #2b2b2b;

	border-bottom: 1px solid black;
	padding-bottom: 10px;

}

.img-responsive {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* footer {
	  width:100%;
      background-color: #333;
      color: white;
      padding: 20px 0;
      text-align: center;
    } */
/* .full-width-footer {
  width: 100%;
  background-color: #111; /* black footer */
/* color: white;
  padding: 40px 0 20px;
} */

/* Optional for content inside the container */
/* .full-width-footer .container {
  padding-left: 20px;
  padding-right: 20px;
} */
*/
/* .section-header.left-align {
  text-align: left !important;
  margin-left: 0;
} */

/* .door-heading {
  text-align: left;
  margin: 40px 0 20px 0;
} */

/* .door-heading h2 {
 text-align: left;
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-transform: uppercase;
} */

.heading-line {
	width: 100%;
	height: 1px;
	background-color: #333;
}

/* .col-md-4 img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
} */

.col-md-4 img:hover {
	transform: scale(1.03);
}

/* .col-md-4 {
  flex: 23%; /* ~4 per row with small gaps */
/* max-width: 23%;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin: 0;
  padding: 0;
} */
*/

/* .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* justify-content: center; */
/* gap: 20px; /* control gap between images */
/* padding: 0;
  margin: 0;
} */
*/ */ .door-section img {
	width: 100%;
	height: 300px;
	/* Consistent height */
	object-fit: cover;
	/* Crop to fit without distortion */
	border-radius: 8px;
	display: block;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	/* Optional visual enhancement */
}

@media (min-width: 992px) {
	.col-md-4 {
		width: 25%;
		float: left;
		padding: 50px 10px;
		box-sizing: border-box;
	}
}

@media (max-width: 991px) {
	.col-md-4 {
		width: 50%;
	}
}

@media (max-width: 575px) {
	.col-md-4 {
		width: 100%;
	}
}

.col-md-4 img {
	border-radius: 8px;
	opacity: 0;
	transform: translateX(-100px);
	animation: slideLeft 1s ease-out forwards;
}

.col-md-4:nth-child(1) img {
	animation-delay: 0.2s;
}

.col-md-4:nth-child(2) img {
	animation-delay: 0.5s;
}

.col-md-4:nth-child(3) img {
	animation-delay: 0.8s;
}

@keyframes slideLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}



.single-work-slider .item img {
	height: 600x;
	/* or your desired height */
	width: 100%;
	object-fit: cover;
	/* ensures the image covers the area without distortion */
	display: block;
}

body {
	font-family: var(--font-body);
}

h1 {
	font-weight: 700;
}

p {
	font-weight: 400;
}

body {
	/* font-family: Arial, sans-serif; */
	text-align: center;
	/* background-color: #f4f4f4; */
	margin: 0;
	/* padding: 20px; */
}

h1 {
	margin-bottom: 20px;
	color: #2c3e50;
}

.virtual-room-container {
	position: relative;
	display: inline-block;
	border: 2px solid #ccc;
	background: white;
}

.room-bg {
	width: 600px;
	height: auto;
}

.window-img {
	position: absolute;
	top: 40px;
	left: 120px;
	width: 360px;
	opacity: 0.95;
	transition: 0.3s ease-in-out;
}

.product-details {
	margin-top: 10px;
}

.controls {
	margin-top: 20px;
}

button {
	margin: 8px;
	padding: 10px 20px;
	font-size: 16px;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

button:hover {
	background-color: var(--primary-dark);
}

.hero-split {
	display: flex;
	height: 100vh;
	overflow: hidden;
	flex-wrap: wrap;
}

.hero-left,
.hero-right {
	flex: 1 1 50%;
	position: relative;
	min-height: 100%;
}

/* REMOVE THIS - we're deleting the image
.hero-left img,
.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
*/

/* ADD THIS INSTEAD for the left section */
.hero-left {
	background-color: var(--primary-dark);
	/* Navy background */
	display: flex;
	align-items: center;
	justify-content: center;

}

.hero-right video {
	width: 100%;
	height: 800px;
	object-fit: cover;
	display: block;
	margin: 1 auto;
}

.hero-text-slider {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: white;
	text-align: center;
	/* text-shadow: 2px 2px 8px rgba(0,0,0,0.6); */
	width: 80%;
	/* Added for better text containment */
}

#text-slider {
	list-style: none;
	padding: 0;
	margin: 0;
}

#text-slider li {
	font-size: 2.5rem;
	/* Slightly larger text */
	font-weight: bold;
	display: none;
	animation: fade 1s ease-in-out;
	padding: 0 20px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#text-slider li.active {
	display: block;
}

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive design */
@media screen and (max-width: 768px) {
	.hero-split {
		flex-direction: column;
		height: auto;
	}

	.hero-left,
	.hero-right {
		flex: 1 1 100%;
		min-height: 50vh;
	}

	.hero-text-slider {
		top: 40%;
		color: white;
	}

	#text-slider li {
		font-size: 1.8rem;
		/* Smaller text on mobile */
	}
}

#text-slider,
#text-slider li,
#text-slider li h1 {
	color: black !important;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.hero-right {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: none;
}

.gallery-item video {
	max-width: 100%;
	border-radius: 8px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.gallery-item.image img {
	display: block;
	width: 100%;
	height: 200px;
	border-radius: 8px;
	margin-top: 20px;
	margin-bottom: 20px;
}


#door-specs {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.spec-row {
	display: block;
	clear: both;
	overflow: auto;
	padding: 20px 0;
	/* vertical spacing inside */
}

#door-specs .col-6 {
	display: inline-block;
	width: 48%;
	vertical-align: top;
}

/* Make every even-numbered .col-6 appear on the same row as the previous one */
#door-specs .col-6:nth-child(odd) {
	clear: left;
	float: left;
}

#door-specs .col-6:nth-child(even) {
	float: right;
	text-align: left;
}


#window-specs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* Reduced from 15px for tighter spacing */
}

#window-specs .row {
	display: flex;
	margin: 0;
	padding: 8px 0;
}

#window-specs .col-6 {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 15px;
}

#window-specs .col-6:first-child {
	font-weight: bold;
	color: #555;
}

#interior-specs {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#interior-specs .row {
	display: block;
	clear: both;
	overflow: auto;
	padding: 20px 0;
	/* vertical spacing inside */
}

#interior-specs .col-6 {
	display: inline-block;
	width: 48%;
	vertical-align: top;
}

/* Align the first column left and second column right */
#interior-specs .col-6:nth-child(odd) {
	clear: left;
	float: left;
}

#interior-specs .col-6:nth-child(even) {
	float: right;
	text-align: left;
}


/* .container {
      max-width: 1000px;
      margin: 40px auto;
      text-align: center;
    } */

.room-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	/* 👈 Adds the gap between images */
	padding: 50px;
	/* background-color: #f8f8f8; */
	flex-wrap: wrap;
}

.room-bg {
	width: 100%;
	display: block;
}

.room-wrapper img {
	border-radius: 12px;
	/* 👈 Rounded corners */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	/* Optional: depth */
	max-width: 100%;
	height: auto;
}


/* .store-image {
      position: absolute;
      top: 30%;
      left: 50%;
      /* transform: translate(-50%, -30%); */
/* width: 40%; */
/* opacity: 0.95;
      transition: all 0.3s ease; */
/* } */

/* h2 {
      color: #2c3e50;
      margin-bottom: 20px;
    } */

/* .instructions {
      margin-top: 20px;
      font-size: 15px;
      color: #777;
    } */


/*-----------------------------------------------------------------*/
/* Hero Section - Homepage Banner
/*-----------------------------------------------------------------*/

.hero-banner {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.hero-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hero-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1);
}

/* Warm golden overlay - premium luxury feel */
.hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(20, 15, 10, 0.3) 0%,
			rgba(30, 20, 10, 0.25) 50%,
			rgba(40, 25, 10, 0.4) 100%);
	top: 0;
	left: 0;
	z-index: 1;
}

.hero-content {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0 20px;
}

.hero-text-wrapper {
	text-align: center;
	max-width: 900px;
}

.hero-subtitle {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-bottom: 30px;
	padding: 14px 40px;
	border: 1.5px solid rgba(var(--accent-rgb), 0.7);
	border-radius: 50px;
	background: rgba(var(--accent-rgb), 0.15);
	animation: fadeInDown 1s ease 0.3s forwards;
	opacity: 0;
}

.hero-title {
	font-family: var(--font-heading);
	margin-bottom: 20px;
}

.hero-title .title-line {
	display: block;
	font-size: 100px;
	font-weight: 600;
	color: #F5F0E6;
	text-transform: uppercase;
	letter-spacing: 18px;
	line-height: 1.0;
	text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
	animation: fadeInUp 1s ease 0.5s forwards;
	opacity: 0;
}

.hero-title .title-line.highlight {
	color: #F5F0E6;
	font-size: 50px;
	font-weight: 500;
	letter-spacing: 25px;
	text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
	display: inline-block;
	margin-top: 5px;
	overflow: hidden;
	white-space: nowrap;
	border-right: 4px solid var(--accent);
	max-width: 0;
	opacity: 1 !important;
	animation:
		typingLoop 2.5s steps(7) infinite,
		blinkCursor 0.6s step-end infinite !important;
}

/* Typing animation keyframes */
@keyframes typingLoop {

	0%,
	100% {
		max-width: 0;
	}

	40%,
	80% {
		max-width: 500px;
	}
}

@keyframes blinkCursor {

	0%,
	100% {
		border-color: var(--accent);
	}

	50% {
		border-color: transparent;
	}
}

.hero-description {
	font-family: var(--font-heading);
	font-size: 22px;
	color: #F5F0E6;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 2px;
	margin-bottom: 45px;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease 0.9s forwards;
	opacity: 0;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	animation: fadeInUp 1s ease 1.1s forwards;
	opacity: 0;
}

.btn-hero {
	font-family: var(--font-heading);
	padding: 18px 50px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 50px;
	transition: all 0.4s ease;
	text-decoration: none;
}

.btn-hero.primary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
	box-shadow: none;
	position: relative;
	overflow: hidden;
}

.btn-hero.primary:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
	color: #fff;
	border-color: #fff;
}

.btn-hero.secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
	position: relative;
	overflow: hidden;
}

.btn-hero.secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
	transform: translateY(-3px);
	color: #fff;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}


/* Hero Indicators */
.hero-indicators {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	gap: 15px;
}

.hero-indicators .indicator {
	width: 40px;
	height: 5px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-indicators .indicator.active {
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	width: 60px;
	box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5);
}

.hero-indicators .indicator:hover {
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
	width: 26px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.scroll-indicator .wheel {
	width: 4px;
	height: 8px;
	background: linear-gradient(180deg, var(--accent-light), var(--accent));
	border-radius: 2px;
	animation: scroll 2s infinite;
	box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.5);
}

.scroll-indicator .scroll-text {
	font-family: var(--font-body);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Hero Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes scroll {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(10px);
	}
}

/* Hero Responsive */
@media (max-width: 992px) {
	.hero-title .title-line {
		font-size: 50px;
		letter-spacing: 8px;
	}

	.hero-title .title-line.highlight {
		font-size: 60px;
		letter-spacing: 15px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-subtitle {
		font-size: 12px;
		letter-spacing: 3px;
	}
}

@media (max-width: 576px) {
	.hero-banner {
		height: 100vh;
		min-height: 500px;
	}

	.hero-title .title-line {
		font-size: 36px;
		letter-spacing: 5px;
	}

	.hero-title .title-line.highlight {
		font-size: 42px;
		letter-spacing: 10px;
	}

	.hero-description {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.hero-subtitle {
		font-size: 10px;
		letter-spacing: 2px;
		padding: 8px 15px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.btn-hero {
		padding: 12px 30px;
		font-size: 12px;
	}

	.logo-text {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.nav-logo {
		width: 40px;
		height: 40px;
	}
}

/* Remove margin for hero page */
.margin {
	display: none;
}

/*-----------------------------------------------------------------*/
/* About Us Section - Enhanced
/*-----------------------------------------------------------------*/

.about-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f0f5f0 100%);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-content-row {
	display: flex;
	align-items: center;
	margin-top: 50px;
}

/* Image Container */
.about-image-container {
	position: relative;
	padding: 20px;
}

.about-main-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(var(--primary-rgb), 0.2);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-main-image::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.7s ease;
	z-index: 2;
}

.about-main-image:hover::before {
	left: 100%;
}

.about-main-image:hover {
	transform: translateY(-10px);
	box-shadow: 0 35px 100px rgba(var(--primary-rgb), 0.3);
}

.about-main-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-main-image:hover img {
	transform: scale(1.08);
}

.about-overlay-image {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 200px;
	height: 200px;
	border-radius: 20px;
	overflow: hidden;
	border: 6px solid #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	transition: all 0.4s ease;
}

.about-overlay-image:hover {
	transform: scale(1.05) rotate(-3deg);
	box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.35);
}

.about-overlay-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.about-overlay-image:hover img {
	transform: scale(1.1);
}

.experience-badge {
	position: absolute;
	top: 30px;
	left: -20px;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	animation: badgePulse 2s ease-in-out 1;
	color: #fff;
	padding: 25px 20px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

.experience-badge .years {
	display: block;
	font-family: var(--font-numbers);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1px;
}

.experience-badge .text {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

@keyframes badgePulse {

	0%,
	100% {
		box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
	}

	50% {
		box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.6);
	}
}

/* Content Styles */
.about-content {
	padding: 20px 40px;
	position: relative;
}

.about-title {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 20px;
	line-height: 1.3;
	position: relative;
}

.about-divider {
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
	border-radius: 2px;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.about-divider::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: dividerShine 2s ease-in-out infinite;
}

@keyframes dividerShine {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.about-text {
	font-size: 17px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 20px;
}

.about-text strong {
	color: var(--primary);
	font-weight: 600;
}

.about-features {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}

.about-features li {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.about-features li:hover {
	transform: translateX(10px);
	border-left-color: var(--primary);
	box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.15);
}

.about-features li i {
	color: var(--primary);
	font-size: 22px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--primary-rgb), 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.about-features li:hover i {
	background: var(--primary);
	color: #fff;
	transform: scale(1.1);
}

.about-btn {
	display: inline-block;
	padding: 16px 45px;
	background: var(--accent);
	color: var(--primary-dark);
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}

.about-btn::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;
}

.about-btn:hover::before {
	left: 100%;
}

.about-btn:hover {
	background: var(--accent-light);
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.5);
	color: var(--primary-dark);
}

/* About Section Responsive */
@media (max-width: 992px) {
	.about-section {
		padding: 60px 0;
	}

	.about-content-row {
		flex-direction: column;
	}

	.about-image-container {
		margin-bottom: 50px;
	}

	.about-overlay-image {
		right: 10px;
		bottom: -20px;
		width: 150px;
		height: 150px;
	}

	.experience-badge {
		left: 10px;
		top: 10px;
		padding: 15px;
	}

	.experience-badge .years {
		font-size: 36px;
	}

	.about-content {
		padding: 20px;
	}

	.about-title {
		font-size: 28px;
	}
}

@media (max-width: 576px) {
	.about-main-image img {
		height: 300px;
	}

	.about-overlay-image {
		width: 120px;
		height: 120px;
	}

	.about-title {
		font-size: 24px;
	}

	.about-btn {
		padding: 12px 30px;
		font-size: 14px;
	}
}
