/*
Theme Name: Spectrum
Theme URI: https://wordpress.com/
Author: Developer
Author URI: https://wordpress.com/
Description: 
Version: 11.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spectrum
Tags: 
*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

@font-face {
    font-family: 'KG Eyes Wide Open';
    src: url('assets/fonts/KGEyesWideOpen.eot');
    src: url('assets/fonts/KGEyesWideOpen.eot?#iefix') format('embedded-opentype'),
         url('assets/fonts/KGEyesWideOpen.woff2') format('woff2'),
         url('assets/fonts/KGEyesWideOpen.woff') format('woff'),
         url('assets/fonts/KGEyesWideOpen.ttf') format('truetype'),
         url('assets/fonts/KGEyesWideOpen.svg#KGEyesWideOpen') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
	--font-body: 'Raleway', sans-serif;
	--font-heading: 'Playfair Display', serif;
	--font-script: 'KG Eyes Wide Open', cursive; 
    --primary-color: #562093;
	--secondary-color: #f4f4f4;
	--text-color: #333;
	--heading-color: #000;
	--header-bg: rgba(189, 145, 123, 0.8);
	--white-text: #ffffff;
}

body {
	font-family: var(--font-body);
    font-weight: 400;
	color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
    font-weight: 700;
}

.font-script {
    font-family: var(--font-script);
}

.top_header {
	background-color: var(--header-bg);
	color: var(--white-text);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
    z-index: 9;
}

.header-menu .navbar {
	padding: 40px 40px;
	margin: 0;
}

.top_header .menu-item {
	padding: 0 12px;
}

.top_header a,
.menu-item a {
	color: var(--white-text);
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
}

.navbar-brand.logo {
	margin: 0;
	padding: 0;
	max-width: 150px;
}

.top_header .btn-callnow {
	display: flex;
	align-items: center;
	gap: 20px;
	border: 1px solid #fff;
	padding: 13px 34px;
	color: var(--white-text);
	text-decoration: none;
	transition: all 0.3s ease;
}

.top_header .btn-callnow:hover {
	background: #fff;
	color: #333;
}

.btn-callnow svg {
	width: 14px;
	height: 14px;
	fill: none;
	display: block;
}

.top_header .btn-callnow:hover svg path {
	fill: #333;
}

header .navbar-brand {
	margin: 0;
	position: absolute;
	top: 6px;
	transform: translate(-50%, 0%);
	left: 50%;
	padding: 0;
}

.home .navbar-brand.logo img.stickyLogo {
	transform-origin: center top;
	will-change: transform;
	margin-top: 130%;
	opacity: 1;
	transform: translate(0%) scale(4.0);
	-webkit-transform: translate(0%) scale(4.0);
	-moz-transform: translate(0%) scale(4.0);
	-ms-transform: translate(0%) scale(4.0);
	-o-transform: translate(0%) scale(4.0);
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled State (Small/Sticky Logo) */
body.is-scrolled img.stickyLogo {
	transform: translate(0%, 0%) scale(1) !important;
	margin-top: 0% !important;
}

/* Navbar Toggler Icons Visibility */
.navbar-toggler .crossicon {
    display: none;
}
.navbar-toggler .menuicon {
    display: block;
    transform: rotate(
180deg);
}

.navbar-toggler[aria-expanded="true"] .crossicon {
    display: block;
}
.navbar-toggler[aria-expanded="true"] .menuicon {
    display: none;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner.inner-banner {
    min-height: 60vh;
}
.banner.inner-banner .banner-content {
    position: relative;
    bottom: auto;
    max-width: 900px;
}
.banner-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.banner-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.banner.inner-banner .banner-heading {
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
}
.banner.inner-banner .banner-heading::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 2px;
    background-color: #BD917B;
}
.banner-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 0 15px;
    bottom: clamp(40px, 10vw, 135px);
}
.banner-logo {
    margin-bottom: 20px;
}
.banner-logo img {
    max-width: 250px;
    height: auto;
}
.banner-sub-heading {
    font-family: var(--font-body) !important;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}
.banner-heading {
    font-size: clamp(32px, 5vw + 1rem, 72px);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Common Section Styles */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    margin-bottom: clamp(20px, 4vw, 30px);
    color: #333;
}
.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.text-center {
    text-align: center;
}

/* Global CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
    margin-top: 100px;
}
.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.cta-bg-image .cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
}
.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}
.cta-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}
.cta-button-wrapper {
    display: flex;
    justify-content: center;
}
.cta-btn {
    padding: 12px 35px;
}
/* About Us Section */
.about-us, .our-expertise {
    padding: clamp(40px, 5vw + 2rem, 80px) 0;
}
.col-12.col-lg-6.left-side-image {
    padding-left: 0;
}
.col-12.col-lg-6.right-side-text {
    max-width: 580px;
    margin: 0 auto;
}
.about-top-title {
    font-family: var(--font-script);
    font-size: clamp(60px, 10vw + 1rem, 180px);
    color: #E9E2DA;
    margin-bottom: 0;
    font-weight: 400;
    text-align: right;
    line-height: 0.8;
    margin-left: 0;
}
.about-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}
section.about-intro-section.section-spacer .section-content {
    font-size: 18px;
    line-height: 30px;
    color: #4B5563;
}
.about-us .section-content, .our-expertise .section-content {
    color: #4B5563;
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
}

.about-button-wrapper {
    margin-top: 30px;
}
a.about-button.cta-btn {
    padding: 7px 18px;
}
.about-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 7px 30px;
    background: #54797C;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #54797C;
    cursor: pointer;
}
.about-button:hover {
    background: #A67D6A;
    border-color: #A67D6A;
    color: #fff;
    text-decoration: unset;
}
.about-button .button-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.about-button:hover .button-arrow {
    transform: translateX(4px);
}
.about-image {
    margin-top: 30px;
}
.about-image img {
    width: 100%;
    height: auto;
}
/* Our Process Section */
.our-process {
    padding: clamp(60px, 8vw + 2rem, 120px) 0;
}
.process-header {
    margin-bottom: 60px;
}
.process-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 400;
}
.process-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}
.process-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4B5563;
    line-height: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.process-steps-wrapper {
    margin-top: 60px;
}
.process-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    overflow: visible;
    position: relative;
    gap: 24px;
    row-gap: 30px;
}
.process-step {
    flex: 1 1 200px;
    min-width: 180px;
    max-width: 260px;
    background: #E9E2DA;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    width: 100%;
    margin: 0 auto;
}
.process-step:last-child {
    border-right: none;
}
.process-step:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    margin-left: 0;
    width: 24px;
    height: 2px;
    background-color: #BD917B;
    transform: translateY(-50%);
}

.process-step:last-child:after {
    display: none;
}

.step-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 35px;
    max-height: 35px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    max-width: 154px;
    margin: 0;
    text-align: center;
}

.step-separator {
    display: none;
}

@media (max-width: 991px) {
    .process-step::after {
        display: none;
    }

}

@media (max-width: 767px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-step {
        width: 100%;
        max-width: 100% !important;
    }
    .testimonials-slider {
    margin: 0 auto;
    padding: 0 50px !important;
    overflow: hidden;
}

    .process-step::after {
        display: block;
        left: 50%;
        top: 100%;
        width: 2px;
        height: 24px;
        transform: translateX(-50%);
        margin-left: 0;
        margin-top: 8px;
    }
    
    .process-step:last-child::after {
        display: none;
    }
}

/* Our Products Section */
.our-products {
    padding: clamp(40px, 5vw + 2rem, 80px) 0;
    position: relative;
    overflow: hidden;
}

.products-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.products-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.products-content-wrapper {
    position: relative;
    z-index: 2;
}

.products-header {
    margin-bottom: 50px;
}

.products-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 20px;
}
.products-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}
.products-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: #D1D5DB;
    line-height: 28px;
    margin: 0 auto;
}
section.our-products.Product-list .products-description{
    color: #4B5563;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow: hidden;
}
.product-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-item:nth-child(3n) {
    border-right: none;
}
.product-item:nth-child(n+4) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-item:last-child,
.product-item:nth-last-child(2),
.product-item:nth-last-child(3) {
    border-bottom: none;
}
.product-item:hover {
    background: #fafafa;
}
.product-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.product-item:hover .product-image img {
    transform: scale(1.05);
}
.product-content {
    padding: 32px 32px 20px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.product-title {
    font-family: var(--font-heading);
    font-size: 24px !important;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}
.product-description {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-description p {
    margin: 0;
    font-size: 14px;
    line-height: 23px;
}
.products-grid-archive .product-description p{
    font-size: 16px;
    line-height: 23px;
    max-width: 419px;
}
.product-button {
    display: flex;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.product-button:hover {
     color: #000;
    text-decoration: unset !important;
}

.product-button .button-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.product-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Custom Product List Styles (Shadows, No Borders) */
.Product-list .product-item {
    border: none !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.Product-list .products-grid{
    overflow: visible;
}
.Product-list .product-item:hover {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
}
.tax-product_cat .banner.inner-banner {
    min-height: 100vh;
}
.single-product .banner.inner-banner .banner-content {
    position: relative;
    bottom: auto;
    max-width: 100%;
}
.single-product .banner.inner-banner{
    min-height: 100vh !important;
}
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-item:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .product-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        border-right: none;
    }
    
    .product-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Testimonials Section */
.testimonials {
    padding: clamp(45px, 6vw + 2rem, 90px) 0;
    background: #BD917B;
    color: #fff;
    position: relative;
}
.testimonials .section-heading {
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0;
    line-height: 1.2;
    font-size: clamp(28px, 4vw + 1rem, 48px);
}

.testimonials-slider {
    margin: 0 auto;
    padding: 0 120px;
    overflow: hidden;
}

.slick-slide {
    overflow: hidden;
}
button:focus {
    outline: none;
}

.testimonial-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    text-align: center;
    outline: none;
    overflow: hidden;
    width: 100%;
}

.testimonial-item:hover {
    background: transparent;
    transform: none;
}

.testimonial-icon {
    text-align: left;
}

.testimonial-icon svg {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.testimonial-quote {
    font-size: 19px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-quote p {
    margin: 0;
    text-align: left;
    max-width: 886px;
}

.testimonial-author {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-position {
    display: block;
    font-size: 14px;
    color: #fff;
}
/* Slick Arrows */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    background: transparent;
    border: unset;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 0;
    color: transparent;
}
.slick-prev:before, .slick-next:before {
    font-size: 40px;
    opacity: 1;
    color: #fff; /* White arrows */
    font-family: sans-serif; /* fallback */
    content: '' !important; /* Hide default dots/chars if using bg icon, but here we can use simple chars or css borders */
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(45deg);
}

.slick-prev:before {
    transform: rotate(-135deg); /* Point left */
    margin-left: 10px; 
}
.slick-next:before {
    transform: rotate(45deg); /* Point right */
    margin-right: 10px;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-disabled {
    cursor: default;
    opacity: 0.5;
}

/* Our Expertise Section */
.our-expertise {
    padding: 80px 0;
}

.our-expertise .section-heading {
    color: #562093;
    margin-bottom: 30px;
}

.our-expertise .section-content {
    color: #000;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-items {
    margin-top: 40px;
}

.expertise-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Project Gallery Section */
.project-gallery {
    padding: 100px 0 0 0;
    background: #fff;
    color: #333;
}
.our-expertise .about-top-title {
    text-align: left;
    margin-left: 0;
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    white-space: nowrap;
}
.gallery-header {
    margin-bottom: 60px;
}

.gallery-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 20px;
}
.gallery-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 48px;
}
.gallery-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4B5563;
    line-height: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 0;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    overflow: hidden;
    height: 575px; 
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without distortion */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-button-wrapper {
    margin-top: 40px;
}

/* Reuse about-button style but ensure it works here */
.project-gallery .about-button {
    background: #54797C;
    border-color: #54797C;
    color: #fff;
}
.project-gallery .about-button:hover {
    background: #A67D6A;
    border-color: #A67D6A;
    text-decoration: unset;
}
/* Our Team Section */
.our-team {
    padding: 100px 0;
    background: #F5F0EB;
}
.left-side-image.order-1.order-lg-2 {
    padding-right: 0;
}
.our-team-content {
    margin-top: 40px;
}
.manager-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.manager-info:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.team-img-wrapper {
    margin-bottom: 20px;
}
.team-member-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* About Us Page Specific Styles */

/* -----------------------------------------------------------
   1. Global Spacing & Layout
----------------------------------------------------------- */
.about-page-wrapper {
    overflow: hidden;
}

.section-spacer {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-spacer {
        padding: 30px 0 !important;
    }
    .team-discuss{
        padding-left: 15px !important;
    }
    .row.meet-team-story.align-items-center{
        margin-top: 30px !important;
    }
    .timeline-container {
    padding: 0 !important;
    position: relative;
}
.section-timeline .mb-5{
    margin-bottom: 0 !important;
}
.spectrum-way-section {
    padding: 30px 0 !important;
}
.top_header .btn-callnow {
    gap: 10px;
    padding: 13px 14px;
}

}

/* -----------------------------------------------------------
   2. Intro Section
   (Extends default .about-us styles)
----------------------------------------------------------- */
.about-intro {
    background-color: #fff;
}

.about-intro .intro-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    display: block;
}

.about-intro .intro-heading {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.about-intro .intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 30px;
}

/* -----------------------------------------------------------
   3. Mission & Vision
----------------------------------------------------------- */
.mission-vision-section {
    background-color: #FAF8F6; /* Light warm gray/beige */
}

.mv-card {
    background: #fff;
    padding: 60px 40px;
    height: 100%;
    border: 1px solid rgba(189, 145, 123, 0.2); /* Subtle border using brand color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.mv-icon img, .mv-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    fill: #BD917B;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
}

.mv-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 0;
}

/* Timeline Section */
.section-timeline {
    padding: 100px 0;
    overflow: hidden;
}

.timeline-top-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 500;
}

.timeline-container {
    padding: 20px 0;
    position: relative;
}

.timeline-scroll-wrapper {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    /* Add gradient mask at bottom if needed, but simple scroll is clearer */
    position: relative;
    padding-right: 30px; /* Space for scrollbar */
}

/* Custom Scrollbar Styles */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(229, 229, 229, 0.5);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #BD917B;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #A67D6A;
}

/* Timeline Line via Pseudo Elements - Robust CSS only approach */
.timeline-col-marker::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    background: #E5E5E5;
    transform: translateX(-50%);
    z-index: 0;
    top: 0;
    bottom: 0;
}

/* First item: start line from center (50%) going down */
.timeline-row:first-child .timeline-col-marker::before {
    top: 0;
}

/* Last item: end line at center (50%) coming from top */
.timeline-row:last-child .timeline-col-marker::before {
    bottom: 0;
}

/* Single item: no line */
.timeline-row:first-child:last-child .timeline-col-marker::before {
    display: none;
}

/* Masks removed - JS handles sizing */

.timeline-row {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-box {
    padding: 40px;
    position: relative;
    font-size: 18px;
    line-height: 30px;
}

.timeline-box.box-light {
    background: #F9F9F9;
    color: #555;
}

.timeline-box.box-brown {
    background: #BD917B;
    color: #fff;
}

.timeline-row:last-child .timeline-box {
    position: relative;
    overflow: hidden;
}

.timeline-row:last-child .timeline-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Height of the fade */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 52.4%, #FFFFFF 100%);
    pointer-events: none; /* Allows text selection below if needed, though mostly visual */
}

.timeline-item-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
}

.timeline-item-years {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #BD917B;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    position: relative;
    border: 5px solid #fff;
    margin-top: 0; /* Centered via flexbox now */
}

.timeline-icon {
    font-size: 17px;
    line-height: 1;
}

@media (max-width: 768px) {
    .timeline-scroll-wrapper {
        max-height: none;
        overflow-y: visible;
    }

    .timeline-line {
        left: 20px;
        top: 0;
        bottom: 0;
    }
    
    .timeline-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 40px;
    }
    
    .timeline-col-left,
    .timeline-col-right {
        width: 100%;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .timeline-label-group.text-end,
    .timeline-label-group.text-start {
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

  .timeline-col-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    padding: 0;
    right: 0;
    text-align: center !important;
    width: 100%;
}
    .timeline-box {
        padding: 20px;
        margin-left:0; /* Offset for line */
    }
}

/* -----------------------------------------------------------
   4. Our Values
----------------------------------------------------------- */
.values-section {
    background-color: #fff;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.value-item {
    text-align: center;
}
.value-number {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1;
    color: rgba(189, 145, 123, 0.2);
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
    display: block;
}
.value-content {
    position: relative;
    z-index: 1;
}
.value-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}
.value-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
}
@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .top_header .btn-callnow {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 13px 4px;
    color: var(--white-text);
    text-decoration: none;
    transition: all 0.3s ease;
}
.header-menu .navbar {
    padding: 40px 15px;
    margin: 0;
}
.navbar-toggler .menuicon {
    width: 30px;
}
}

/* -----------------------------------------------------------
   5. Team Section (Simple Grid)
----------------------------------------------------------- */
.team-section {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    position: relative;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.team-role {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #BD917B;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-top-title{
        text-align: center !important;
    }
    .right-side-text {
    max-width: 100% !important;
    margin: 30px auto 0 auto !important;
    text-align: center !important;
}
.our-process {
    padding: clamp(30px, 8vw + 2rem, 30px) 0 !important;
}
.about-us, .our-expertise {
    padding: clamp(30px, 5vw + 2rem, 30px) 0 !important;
}
.our-expertise .section-content{
    max-width: 100% !important;
}
.project-gallery {
    padding: 30px 0 0 0 !important;
}
.cta-section{
    margin-top: 30px !important;
}
}

@media (max-width: 575px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Meet The Team Section (New Layout) */
.section-meet-team {
    background-color: #E9E2DA;
}
.section-meet-team .team-member-img-wrapper .t-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.section-meet-team .about-top-title {
	color: #bd917bb0;
	opacity: 0.5;
	text-align: center;
}
.section-meet-team .team-member-img-wrapper .t-img:hover {
    transform: scale(1.05);
}
.section-meet-team .team-member-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}
.section-meet-team .team-member-desc {
    font-size: 18px;
    line-height: 30px;
    color: #4B5563;
    max-width: 312px;
    margin: 0 auto;
    font-weight: 400;
}
.row.team-members-grid.justify-content-center.pt-5 {
    margin-top: 30px;
}
.section-meet-team .story-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
    display: block;
}
.section-meet-team .story-heading {
    font-family: var(--font-heading);
     font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 422px;
}
.section-meet-team .story-description {
    font-size: 16px;
    line-height: 28px;
    color: #4B5563;
}
.section-meet-team .story-description p {
    margin-bottom: 25px;
}
.team-discuss {
    padding-left: 0;
}
.story-content.ps-lg-5 {
    max-width: 542px;
    margin: 0 auto;
}

/* We Come To You Section */
.section-we-come-to-you {
    padding: 0;
    background: #fff;
}

.come-to-you-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 500;
}

.come-to-you-image {
    overflow: hidden;
    position: relative;
    border-radius: 4px; /* Optional: smooth corners if desired */
}

.come-to-you-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.come-to-you-image:hover img {
    transform: scale(1.05);
}

/* Spectrum Way Section */
.spectrum-way-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Spectrum Way Intro */
.spectrum-way-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}
.spectrum-way-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
}
.spectrum-way-heading {
    font-family: var(--font-heading);
   font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.spectrum-way-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
}

/* Custom Made Feature Part */
.custom-made-text-col {
    max-width: 500px;
   margin-right: auto;
   padding: 0;
}
.custom-made-sub-heading {
    font-family: var(--font-body);
    font-size: 14px; 
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
}
.custom-made-heading {
    font-family: var(--font-heading);
   font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 48px;
    text-transform: uppercase;
}
.custom-made-description {
    color: #4B5563;
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
}

.custom-made-button-wrapper {
    margin-top: 40px;
}
.custom-made-image-col {
    padding-right: 0;
}
.custom-made-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}
@media (max-width: 991px) {
    .custom-made-image-col {
        padding-right: 15px;
        margin-top: 40px;
    }
    .timeline-item-title{
        font-size: 26px !important;
    }
    .timeline-item-years {
    font-size: 26px !important;
}
}

/* End to End Servicing Section */
.end-to-end-section {
    background-color: #E9E3DB; /* Matching the beige tone from image */
    overflow: hidden;
}

.end-to-end-image {
    width: 100%;
    height: 100%;
}

.end-to-end-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.end-to-end-content-wrapper {
    padding: 0;
    max-width: 476px;
    margin: 0 auto;
}

.end-to-end-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
}

.end-to-end-heading {
    font-family: var(--font-heading);
  font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    line-height: 48px;
    text-transform: uppercase;
}

.end-to-end-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
}

.end-to-end-description p {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
  .end-to-end-content-wrapper {
    padding: 30px 20px;
    max-width: 100%;
    text-align: center;
}
    
    .end-to-end-image img {
        min-height: 400px;
    }
    .commercial-content {
    max-width: 100%;
    margin: 0 auto;
}
}

/* Industry Partners Section */
.industry-partners-section {
    padding: 100px 0 0 0;
    overflow: hidden;
}
.partners-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}
.partners-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 400;
}
.partners-heading {
    font-family: var(--font-heading);
  font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
}

.partners-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
section.industry-partners-section.commercial-clients .partners-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}
section.industry-partners-section.commercial-clients .partner-logo-img {
    max-width: 100%;
    height: 122px;
    transition: all 0.3s ease;
    object-fit: contain;
}
.partner-logo-item {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px; /* Adjust based on typical logo width */
}

.partner-logo-img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(100%); 
    opacity: 0.8;
}
.Product-list .products-heading{
    color: #000;
}
@media (max-width: 991px) {
    .partners-logos-grid {
        gap: 40px;
    }
    .partner-logo-item {
        max-width: 150px;
    }
        .custom-made-text-col{
        padding: 0 15px;
        max-width: 100%;
    }
    .custom-made-content-wrapper {
    text-align: center;
    margin-top: 30px;
}
    .footer-tips-grid {
    display: flex !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-content: center !important;
    flex-wrap: wrap !important;
}
section.spectrum-way-section .row {
    flex-direction: column-reverse;
}
.commercial-content {
    max-width: 100% !important;
    margin: 0 auto;
    text-align: center;
}
.commercial-sub-heading{
    text-align: center !important;
}
.commercial-heading{
    text-align: center !important;
}
.commercial-list li {
    max-width: max-content;
    margin: 0 auto;
}
.blog-main-content {
    padding: 30px 0;
}
}

@media (max-width: 767px) {
    .partners-logos-grid {
        gap: 30px;
    } 

.copyright-text {
    max-width: 100% !important;
}
.section-meet-team .team-member-desc {
    max-width: 100% !important;
}
.story-content.ps-lg-5 {
    max-width: 100% !important;
    text-align: center !important;
}
.section-meet-team .story-heading{
    max-width: 100% !important;
}

}

/* Single Product Page Styles */
.product-page-wrapper {
    background: #fff;
    padding-bottom: 100px;
}
.product-hero-slider-section {
    margin-bottom: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 50px; /* Space from header */
}
.product-gallery-slider .product-slide-item {
    margin: 0 15px; /* Space between slides in center mode */
    outline: none;
    transition: all 0.3s ease;
    opacity: 1; /* Keeping visible but can dim if needed */
}
/* Center slide styling (slick-center) */
.product-gallery-slider .product-slide-item.slick-center {
    transform: scale(1.0);
}
.product-gallery-slider .product-slide-item:not(.slick-center) {
    transform: scale(0.9); 
}
.product-slide-img {
    width: 100%;
    height: 700px; 
    object-fit: cover;
    display: block;
}
/* Slider Arrows */
.product-gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
}
.product-gallery-slider .slick-prev {
    left: 20%; 
}
.product-gallery-slider .slick-next {
    right: 20%;
}
/* Customize Arrow SVG/Icons */
.product-gallery-slider .slick-prev::before,
.product-gallery-slider .slick-next::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-right: 2px solid #C4A493; /* Gold/Beige color from design */
    border-bottom: 2px solid #C4A493;
}   
.product-gallery-slider .slick-prev::before {
    transform: rotate(135deg);
}
.product-gallery-slider .slick-next::before {
    transform: rotate(-45deg);
}
/* Product Content */
.product-content-container {
    max-width: 900px;
}
.product-cat-label {
    font-family: var(--font-body); 
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 500;
}
.product-main-heading {
    font-family: var(--font-heading); /* Playfair or similar serif */
    font-size: 56px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.2;
}
.product-main-content {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
    text-align: center; 
}
.product-main-content p {
    text-align: left; /* Specific override for paragraphs */
    margin-bottom: 25px;
}
@media (max-width: 991px) {
    .product-slide-img {
        height: 500px;
    }
    .product-gallery-slider .slick-prev { left: 5%; }
    .product-gallery-slider .slick-next { right: 5%; }
    .product-gallery-slider .slick-prev::before,
    .product-gallery-slider .slick-next::before {
        width: 25px;
        height: 25px;
    }
    .product-main-heading {
        font-size: 42px;
    }
    .partners-intro {
    margin: 0 auto 30px auto;
}
.industry-partners-section{
    padding: 30px 0;
}
}
@media (max-width: 767px) {
    .product-slide-img {
        height: 350px;
    }
    .product-gallery-slider .product-slide-item {
        margin: 0 10px;
    }
}

/* Single Product Page Styles */
.product-page-wrapper {
    background: #fff;
    padding-bottom: 100px;
}
.product-hero-slider-section {
    margin-bottom: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}
.product-gallery-slider .product-slide-item {
    margin: 0;
    outline: none;
    transition: all 0.3s ease;
    opacity: 1; 
}
/* Center slide styling (slick-center) */
.product-gallery-slider .product-slide-item.slick-center {
    transform: scale(1.0);
}

.product-gallery-slider .product-slide-item:not(.slick-center) {
    transform: scale(0.9); 
}

/* Slider Arrows */
.product-gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
}
.product-gallery-slider .slick-prev {
    left: 20%; 
}
.product-gallery-slider .slick-next {
    right: 20%;
}

/* Customize Arrow SVG/Icons */
.product-gallery-slider .slick-prev::before,
.product-gallery-slider .slick-next::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-right: 2px solid #C4A493; /* Gold/Beige color from design */
    border-bottom: 2px solid #C4A493;
}
.product-gallery-slider .slick-prev::before {
    transform: rotate(135deg);
}
.product-gallery-slider .slick-next::before {
    transform: rotate(-45deg);
}

/* Product Content */
.product-content-container {
    max-width: 1100px;
}
.product-cat-label {
    font-family: var(--font-body); 
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 20px;
    font-weight: 500;
}
.product-main-heading {
    font-family: var(--font-heading); 
    font-size: 56px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.2;
}
.product-main-content {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
    text-align: left;
}
.product-main-content p {
    text-align: left; /* Specific override for paragraphs */
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .product-slide-img {
        height: 500px;
    }
    .product-gallery-slider .slick-prev { left: 10px !important; }
    .product-gallery-slider .slick-next { right: 10px !important; }
    .product-gallery-slider .slick-prev::before,
    .product-gallery-slider .slick-next::before {
        width: 25px;
        height: 25px;
    }
    .product-main-heading {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    .product-slide-img {
        height: 350px;
    }
    .product-gallery-slider .product-slide-item {
        margin: 0 10px;
    }
}
/* Product Category Archive Styles */
.product-category-page-wrapper {
    background: #fff;
    padding: 80px 0;
}
/* Sidebar */
.product-sidebar {
    background-color: #EBE6E1;
    padding: 40px 30px;
}
.sidebar-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}
.product-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-cat-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.product-cat-list li:last-child {
    border-bottom: none;
}
.product-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cat-list a:hover {
    color: #000; 
    padding-left: 10px; 
}
.product-cat-list a .arrow {
    font-weight: bold;
}

/* Header */
.cat-top-script {
  font-family: var(--font-script);
  font-size: clamp(60px, 10vw + 1rem, 180px);
    color: #E9E2DA; 
    line-height: 90px;
    margin-bottom: 10px;
}

.cat-main-title {
    font-family: var(--font-heading);
   font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}
/* Archive Grid Item overrides */
.products-grid-archive .product-item {
    box-shadow: none; 
    background: #fff;
    /* Design shows white cards on white bg? Or maybe soft shadow */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); 
    border: none;
    height: 100%;
}
.products-grid-archive .product-content {
    text-align: left;
    padding: 25px;
}
.products-grid-archive .learn-more-btn {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}
.products-grid-archive .learn-more-btn .button-arrow {
    width: 12px;
}
/*-----------------------------------------------------------
   Single Product Page Styles
-----------------------------------------------------------*/
/* Banner */
.product-banner .banner-heading {
  font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff; 
    font-family: var(--font-heading);
}
.product-banner .banner-desc {
    font-size: 18px;
    line-height: 28px;
    max-width: 100% !important;
    font-weight: 300;
    position: relative;
    max-width: 1184px !important;
    color:#D1D5DB !important;
}

/* Slider */
.product-hero-slider-section {
    padding: 0;
    overflow: hidden;
    background: transparent;
    position: relative;
    margin-top: -150px;
}
.product-gallery-slider {
    padding: 0 30px;
}
.product-slide-item {
    margin: 0 15px;
    transition: all 0.3s ease;
    opacity: 0.5;
    transform: scale(0.9);
    outline: none;
    cursor: pointer;
}
.product-gallery-slider .slick-center .product-slide-item {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}
.product-slide-item.slick-slide.slick-current.slick-center .product-slide-img {
    width: 100%;
    height: 562px;
    object-fit: cover;
}
.product-slide-item.slick-slide .product-slide-img {
    height: 419px;
    object-fit: cover;
}
/* Custom Arrows for Product Slider */
/* Custom Arrows for Product Slider */
.product-gallery-slider .slick-arrow {
    width: 25px;
    height: 48px;
    z-index: 10;
    top: auto;
    bottom: 50px; /* Align with bottom area */
    transform: none;
}
.product-gallery-slider .slick-arrow:before {
    display: none; 
}
.product-gallery-slider .slick-prev {
    left: 10%; /* Align under side image */
    background: url('http://192.168.0.111/projects/spectrum/wp-content/uploads/2026/01/right-brown.svg') no-repeat center center;
    background-size: contain;
    transform: rotate(180deg);
}
.product-gallery-slider .slick-next {
    right: 10%; /* Align under side image */
    background: url('http://192.168.0.111/projects/spectrum/wp-content/uploads/2026/01/right-brown.svg') no-repeat center center;
    background-size: contain;
}
.product-gallery-slider .slick-disabled {
    opacity: 0.3 !important;
    cursor: default !important;
    pointer-events: none;
}
/* Content */
.single-product-details .product-cat-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #BD917B;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}
.sidebar-left {
    padding-left: 0;
}
/* Content Headings inside the editor */
.product-main-content h2, 
.product-main-content h3 {
    font-family: var(--font-heading);
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
     font-size: clamp(28px, 4vw + 1rem, 48px);
}
.product-main-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px; 
}
.single-product .banner.inner-banner .banner-heading::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 2px;
    background-color: #BD917B;
    display: none;
}
.single-product .product-banner .banner-desc::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 2px;
    background-color: #BD917B;
}
@media (max-width: 768px) {
    .product-banner .banner-heading {
        font-size: 36px;
    }
    .product-slide-img {
        height: 300px;
    }
    .product-gallery-slider {
        padding: 0 30px;
    }
}

/* -----------------------------------------------------------
   Contact Page Styles
----------------------------------------------------------- */

/* Hero & Form Section */
.contact-hero-section {
    position: relative;
    padding: 150px 0 200px;
    background-color: #333;
    min-height: 800px;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    z-index: 1;
}
.contact-form-container {
    position: relative;
    z-index: 2;
}
.contact-header {
    margin-bottom: 50px;
}
.contact-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}
.contact-heading {
    font-family: var(--font-heading);
    font-size: 56px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}
.contact-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #BD917B;
    margin: 20px auto 0;
}
/* Contact Form 7 Styling */
.contact-form-inner label {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-heading); 
    font-weight: 500;
    display: block;
    text-align: left;
}
.contact-form-inner input[type="text"],
.contact-form-inner input[type="email"],
.contact-form-inner input[type="tel"],
.contact-form-inner textarea {
    background: rgba(255, 255, 255, 0.7); 
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.contact-form-inner {
    max-width: 982px;
    margin: 0 auto;
}
.contact-form-inner input::placeholder,
.contact-form-inner textarea::placeholder {
    color: #333;
    opacity: 0.7;
}
.contact-form-inner input[type="submit"] {
    background-color: #5E7E7E; /* Teal color */
    color: #fff;
    border: none;
    padding: 15px 60px 15px 30px; /* More padding on right for arrow */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    float: right;
    transition: background 0.3s ease;
    background-image: url('http://192.168.0.111/projects/spectrum/wp-content/uploads/2025/12/Frame.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    background-size: 12px; /* Adjust size if needed */
}
.contact-form-inner input[type="submit"]:hover {
    background-color: #4A6565;
}
/* Map Section */
.contact-map-section {
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    margin-top: -130px;
}
.commercial-content {
    max-width: 572px;
    margin: 0 auto;
}
/* Contact Info Section */
.contact-info-section {
    padding-bottom: 100px;
}
.contact-icon-box {
    margin-bottom: 30px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #BD917B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Make white */
}
.info-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.info-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6B7280;
}
.follow-us-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.follow-us-title::before,
.follow-us-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(209, 213, 219, 1);
}
.contact-form-wrapper br{
    display: none;
}
.follow-us-title::before {
    margin-right: 20px;
}
.follow-us-title::after {
    margin-left: 20px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons-contact .social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #BD917B;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons-contact .social-link:hover {
    opacity: 0.7;
}
.col-lg-6.mb-4.mb-lg-0.left-side-img {
    padding-left: 0;
}
/* Commercial Section */
.commercial-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 20px;
}
.commercial-heading {
    font-family: var(--font-heading);
  font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.commercial-desc p {
    font-size: 18px;
    line-height: 30px;
    color: #4B5563;
    margin-bottom: 25px;
}
.commercial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commercial-list li {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 10px;
    padding-left: 20px;
    line-height: 30px;
    position: relative;
}

.commercial-list li::before {
    content: "•";
    color: #BD917B;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    line-height: 30px;
}
/* -----------------------------------------------------------
   FAQ Section Styles
----------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: #fff;
}

.faq-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-sub-heading {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BD917B;
    margin-bottom: 10px;
    font-weight: 500;
}

.faq-main-heading {
    font-family: var(--font-heading);
  font-size: clamp(28px, 4vw + 1rem, 48px);
    color: #000;
    margin-bottom: 25px;
    font-weight: 600;
}

.faq-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

/* Tabs */
.faq-tabs-wrapper {
    margin-bottom: 50px;
}

.faq-tabs {
    display: inline-flex;
    background-color: transparent; /* Or a light container if needed */
    /* Design shows tabs with background color */
    background-color: #EBE6E166; /* Very light beige/transparent */
    padding: 10px;
    border-radius: 0; /* Or 5px */
}

.faq-tab {
    background: transparent;
    border: none;
    padding: 10px 25px;
    font-family: var(--font-body); /* Or heading if bold */
    font-weight: 700;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.faq-tab:hover,
.faq-tab.active {
    background-color: #C6AD9F; /* Darker beige/brown from image or brand */
    background-color: #BD917B;
    color: #fff;
}

/* FAQ Accordion */
.faq-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid transparent; /* Or none */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.faq-question {
    display: flex;
    justify-content: flex-start; /* Align left */
    align-items: center;
    gap: 20px; /* Space between arrow and text */
    padding: 20px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.faq-q-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.faq-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-arrow {
    width: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    display: none;
    padding: 0 40px 20px 54px; /* Indent content to align with text (20px icon + 20px gap + 14px padding approx) */
}

.faq-answer-inner {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}
.bg-lighter{
    background-color: #E9E2DA;
}
.bg-lighter .section-heading{
    color: #000;
}
.bg-lighter .testimonial-quote p {
    color: #000;
    font-weight: 600;
}
.bg-lighter .testimonial-author{
    color: #000;
}
.bg-lighter .testimonial-position{
    color: #000;
}
.bg-lighter .testimonial-icon svg path {
    fill: #BD917B;
    fill-opacity: 1;
}

/* Styles for Slider Arrows in bg-lighter section */
.bg-lighter .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 48px;
    background-color: transparent;
    color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.bg-lighter .slick-prev {
    left: 0;
    background: url('http://192.168.0.111/projects/spectrum/wp-content/uploads/2026/01/left-brown.svg') no-repeat center center;
    background-size: contain;
}

.bg-lighter .slick-next {
    right: 0;
    background: url('http://192.168.0.111/projects/spectrum/wp-content/uploads/2026/01/right-brown.svg') no-repeat center center;
    background-size: contain;
}

.bg-lighter .slick-arrow::before {
    display: none;
}

.bg-lighter .testimonials-slider {
    position: relative;
    padding: 0 60px;
}
/* Active State Styles */
.faq-item.active {
    background-color: #EBE6E1;
}

.faq-item.active .faq-q-text {
    color: #BD917B;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* Rotate for Up arrow */
    /* Filter to change black SVG to brown #BD917B */
    filter: invert(65%) sepia(13%) saturate(1457%) hue-rotate(338deg) brightness(92%) contrast(86%);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-main-heading {
        font-size: 36px;
    }
    .faq-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .faq-tab {
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 36px;
    }
    .contact-hero-section {
        padding-top: 100px;
    }
    .contact-form-inner input[type="submit"] {
        width: 100% !important;
        float: none;
    }
}

/* --------------------------------------------------------------
# Commercial Page Sections
-------------------------------------------------------------- */

/* Commercial Section */
.section-commercial {
    background-color: #fff;
    padding: 120px 0;
}
.commercial-image-col {
    padding-left: 0;
}
.commercial-image img {
    width: 100%;
    height: auto;
    display: block;
}
.commercial-text-col {
    max-width: 572px;
    margin: 0 auto;
}
.commercial-sub-heading {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #BD917B;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 10px;
    display: block;
    line-height: 20px;
}
.commercial-heading {
    text-align: left;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw + 1rem, 48px) !important;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.commercial-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
}

/* Bullet Points styling for lists in Commercial content */
.commercial-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.commercial-description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    color: #4B5563;
}

.commercial-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #BD917B;
    font-size: 40px;
    line-height: 30px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .commercial-image-col {
        padding-left: 15px;
        margin-bottom: 40px;
    }
    .commercial-text-col {
        padding-right: 15px;
        max-width: 100% !important;
    }
    .section-commercial {
    padding: 30px 0;
}
.commercial-description {
    text-align: center;
}
.commercial-description ul li {
    max-width: max-content;
    margin: 0 auto;
}
.sidebar-title {
    font-size: 26px;
}
.products-grid-archive .product-description p{
    max-width: 100% !important;
}
.product-category-page-wrapper{
    padding: 30px 0;
}
.product-cat-list a{
    font-size: 20px;
}
.product-main-content{
    text-align: center;
}
.product-cat-label{
    text-align: center;
}
.product-main-content p{
    text-align: center;
}
.product-page-wrapper {
    background: #fff;
    padding-bottom: 30px;
}
.product-hero-slider-section{
    margin-bottom: 30px;
}
}

/* Commercial Testimonials Section */
.commercial-testimonials.testimonials {
    background-color: #F5F2EF; /* Light Beige */
    color: #000;
}

.commercial-testimonials .section-heading {
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-heading);
   font-size: clamp(28px, 4vw + 1rem, 48px);
    margin-bottom: 40px;
}

.commercial-testimonials .testimonial-icon svg path {
    fill: #BD917B; /* Quote Icon Color */
    fill-opacity: 1;
}
section.testimonials.bg-lighter svg{
    opacity: 1;
}
.commercial-testimonials .testimonial-quote {
    color: #000;
    font-family: var(--font-heading) !important; /* Ensure serif font for quote */
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto;
}

.commercial-testimonials .testimonial-quote p {
    font-family: var(--font-heading) !important;
}

.commercial-testimonials .testimonial-author {
    color: #000;
    margin-top: 30px;
}

.commercial-testimonials .testimonial-author strong {
    font-weight: 700;
    display: block;
    margin-top: 5px;
    font-size: 16px;
}

.commercial-testimonials .testimonial-position {
    color: #6B7280;
    font-size: 14px;
    display: block;
}

/* Slick Arrows Style for Commercial Testimonials */
.commercial-testimonials .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 40px;
    background: transparent;
    color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.commercial-testimonials .slick-prev {
    left: 0;
}

.commercial-testimonials .slick-next {
    right: 0;
}

.commercial-testimonials .slick-arrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #BD917B;
    border-right: 2px solid #BD917B;
}

.commercial-testimonials .slick-prev::before {
    transform: rotate(-135deg);
}

.commercial-testimonials .slick-next::before {
    transform: rotate(45deg);
}

/* If container is relative, might need to push arrows out */
.commercial-testimonials .testimonials-slider {
    position: relative;
    padding: 0 50px; /* Make space for arrows */
}

.commercial-testimonials .slick-prev {
    left: 0px;
}
.commercial-testimonials .slick-next {
    right: 0px;
}

/* --------------------------------------------------------------
# Blog Page / Home Template
-------------------------------------------------------------- */

/* Blog Hero */
.blog-hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #A69082; /* Fallback brown */
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Slight dark overlay */
}

.blog-hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-hero-section .header-line {
    width: 80px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
}

.blog-main-content {
    padding: 80px 0;
    background-color: #fff;
}

/* Blog Post Card */
.blog-post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); /* Matches screenshot shadow */
    overflow: hidden; /* Ensures image respects corners if any */
    /* Screenshot implies sharp corners or very subtle radius, Sidebar in image says Radius 4px? No, image is mostly straight. 
       Let's stick to what we had or minimal radius. */
    border-radius: 4px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0; /* Removing margin to flush with content */
    border-radius: 0; /* Image touches edges */
}

.blog-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 4/3;
    display: block; /* Remove bottom whitespace */
}

.blog-post-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 32px;
}
.blog-category-pill {
    display: inline-block;
    background-color: #E9E2DA;
    color: #BD917B;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 4px 12px;
    margin-bottom: 15px;
    font-weight: 600;
    border-radius: 16px;
}
.blog-meta {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 10px;
    font-family: var(--font-body);
}
.blog-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #BD917B;
}
.blog-excerpt {
    font-size: 16px;
    line-height: 23px;
    color: #4B5563;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.blog-read-more-arrow svg {
    transition: transform 0.3s ease;
}

.blog-read-more-arrow:hover svg {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.blog-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background: #FFFFFF;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    padding: 32px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #000;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 700;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 15px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 2px solid #EFE2DA;
}

/* Popular Posts */
.popular-post-item {
    margin-bottom: 24px !important;
}
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
}
.pp-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.pp-image img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: unset !important;
}

.pp-content {
    padding-left: 15px;
}

.pp-title {
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 700;
}

.pp-title a {
    color: #000;
    text-decoration: none;
}

.pp-date {
    font-size: 12px;
    color: #4B5563;
    display: block;
    line-height: 16px;
}

/* Popular Tags */
.tag-cloud-wrapper .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-pill {
    background-color: #E9E2DA !important;
    color: #BD917B !important;
    padding: 6px 13px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 600;
}
.tag-pill:hover {
    background-color: #BD917B;
    color: #fff;
}

/* Pagination */
.blog-pagination .nav-links {
    display: flex;
    gap: 12px;
    justify-content: center; 
    margin-top: 40px;
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #D1D5DB;
    color: #000;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background-color: #BD917B; /* Brown accent */
    color: #fff;
    border-color: #BD917B;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
    .blog-hero-title {
        font-size: 40px;
    
    }
}

/* --------------------------------------------------------------
# Single Blog Post
-------------------------------------------------------------- */

.single-post-title {
   font-size: clamp(28px, 4vw + 1rem, 48px);
    line-height: 48px;
    font-weight: 600;
}
.single-post-excerpt {
    font-size: 18px;
    line-height: 30px;
}

.single-post-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 20px;
    color: #4B5563;
}

.single-post-content h2,
.single-post-content h3 {
    font-family: var(--font-heading);
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-post-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 30px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

/* Share Section */
.single-post-share h4 {
    color: #1F2937;
}

.share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    font-size: 0; /* Hide text if using icons only, or style text */
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1; /* For icons */
}
/* If using FontAwesome, ensuring centering */
.share-icons a i, 
.share-icons a svg {
    font-size: 16px;
}
.share-icons a:hover {
    background: #BD917B;
    color: #fff !important;
}

/* Related Posts */
.related-posts-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Gallery Handling (Standard WP Gallery) */
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.gallery-item {
    flex: 1 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
    display: inline-block;
}
.gallery-icon img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 4px;
}
.project-gallery .gallery-item {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
/* Responsive Single */
@media (max-width: 768px) {
    .single-post-title {
        font-size: 32px;
    }
    .gallery-item {
        flex: 1 0 50%;
        max-width: 50%;
    }
}

/* --------------------------------------------------------------
# Multilevel Dropdown Menu
-------------------------------------------------------------- */

/* Top Level Menu Items */
.navbar-nav {
    align-items: center;
}

.navbar-nav > .menu-item {
    position: relative;
}

/* Dropdown Common Styles */
.navbar-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: #ffffff;
    padding: 15px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 0; /* Sharp edges as per design */
}

/* Show Dropdown on Hover */
.navbar-nav .menu-item:hover > .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Dropdown Links */
.navbar-nav .sub-menu li {
    position: relative;
    display: block;
}

.navbar-nav .sub-menu li a {
    display: block;
    padding: 12px 25px;
    color: #000; /* Dark text for dropdown */
    font-family: var(--font-heading); /* Serif font */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: capitalize;
}

/* Hover State for Dropdown Items */
.navbar-nav .sub-menu li a:hover {
    background-color: #f5f5f5; /* Light gray hover */
    color: #000;
}

/* Second Level Dropdown (Nested) */
.navbar-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -15px; /* Align with parent item */
}

/* Arrow indicator for items with children */
.navbar-nav > .menu-item-has-children > a {
    display: flex;
    align-items: center;
}

.navbar-nav > .menu-item-has-children > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 2px;
    transition: transform 0.3s;
}

.navbar-nav > .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-bottom: -2px;
}

.navbar-nav .sub-menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .sub-menu .menu-item-has-children > a::after {
    content: ''; 
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    border-bottom: none;
    margin-left: 10px;
    font-size: 0; /* Reset font size if unicode was used */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Reset (Basic - might need more specific mobile menu handling if using bootstrap collapse) */
@media (max-width: 1199px) { /* xl breakpoint used in header */
    .navbar-nav .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
    }
    .navbar-nav .sub-menu li a {
        color: rgba(255,255,255,0.8);
    }
    .navbar-nav .menu-item:hover > .sub-menu {
        display: block; /* Keep open logic or rely on clicks for mobile */
    }
}

/* --------------------------------------------------------------
# Universal Button/Arrow Hover Effects
-------------------------------------------------------------- */

/* Smooth transition for arrows: class-based, svg-based, or img inside button */
.button-arrow,
.btn-callnow svg,
.about-button img,
.blog-read-more-arrow svg {
    transition: transform 0.3s ease;
}

/* Hover Translation */
.about-button:hover .button-arrow,
.about-button:hover img,
.btn-callnow:hover svg,
.blog-read-more-arrow:hover svg {
    transform: translateX(4px);
}

/* Ensure Green Buttons have consistent hover color */
.about-button:hover {
    background-color: #A67D6A !important;
    border-color: #A67D6A !important;
    color: #fff !important;
}

/* --------------------------------------------------------------
# Universal Button/Arrow Hover Effects
-------------------------------------------------------------- */

/* Ensure smooth transition for all arrow icons */
.button-arrow,
.btn-callnow svg,
.blog-read-more-arrow svg {
    transition: transform 0.3s ease;
}

/* Apply Translation on Hover */
.about-button:hover .button-arrow,
.btn-callnow:hover svg,
.blog-read-more-arrow:hover svg,
.custom-link:hover .button-arrow {
    transform: translateX(4px);
}

/* Ensure Green Buttons have consistent hover color */
.about-button:hover {
    background-color: #A67D6A !important;
    border-color: #A67D6A !important;
    color: #fff !important;
}


/* -------------------------------------------------------------
 * FOOTER STYLES
 * ------------------------------------------------------------- */
.site-footer {
    background-color: #BD917B;
    color: #fff;
    padding-top: 0;
    font-size: 14px;
    font-family: var(--font-body);
}
.footer-logo {
    max-width: 201px;
    height: auto;
    margin-bottom: 20px;
}
.footer-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
  font-family: var(--font-body);
    font-weight: 600;
}

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

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

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.footer-menu li a:hover {
    opacity: 0.7;
}

.footer-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 1200px) {
    .footer-tips-wrapper {
        width: fit-content;
        margin-left: auto;
    }
}

.footer-tips-grid .footer-tip-item img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.footer-tip-item {
    position: relative;
    overflow: hidden;
    width: 75px;
    height: 75px;
}

.video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.social-icons.d-flex.gap-3 {
    gap: 20px;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.footer-tip-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}
.play-icon img {
    width: 21px !important;
    height: 14px !important;
}
/* Footer Middle Bar (Copyright & Social) */
.footer-middle-bar {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 0;
    margin-top: 36px;
}
.copyright-text {
    font-size: 14px;
    color: #F6F6F6;
    max-width: 360px;
}
.policy-links .list-inline-item {
    margin-right: 20px;
}
.policy-links .list-inline-item:last-child {
    margin-right: 0;
}
.policy-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.policy-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.social-icons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.social-icons .social-link:hover {
    transform: translateY(-3px);
}
.social-icons .social-link img {
    filter: brightness(0) invert(1); 
    width: 20px;
    height: auto;
}
/* Footer Contact Bar */
.footer-contact-bar {
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-contact-bar .contact-item svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.footer-contact-bar strong {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    padding-left: 5px;
    font-size: 16px;
    font-weight: 600;
}
.text-white-50 {
	color: #F6F6F6 !important;
}
/* Privacy Policy / Page Content Styles */
.privacy-content {
    color: #5E5E5E;
    font-family: var(--font-body);
    line-height: 1.6;
}
.privacy-content h2 {
    font-family: var(--font-heading);
    color: #333;
    margin-bottom: 1.5rem;
}
.privacy-content h4 {
    font-family: var(--font-heading);
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.privacy-contact-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}
.footer-links-social-gap {
    gap: 32px !important;
}

@media (min-width: 992px) {
    .footer-content-column {
        padding-left: 60px;
    }
}


/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 0;
        text-align: center;
    } 
    .footer-heading {
        margin-top: 0;
        margin-bottom: 20px;
    }
     .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    .footer-middle-bar .d-flex {
        justify-content: center !important;
        margin-top: 0;
    }
    .footer-contact-bar .col-md-4 {
        margin-bottom: 30px;
    }
    .footer-contact-bar .col-md-4:last-child {
        margin-bottom: 0;
    }
    .footer-middle-bar{
        margin-top: 0;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item .text {
        text-align: center !important;
    }
}

/* -------------------------------------------------------------
 * RESPONSIVE & MOBILE MENU UPDATES
 * ------------------------------------------------------------- */
@media (max-width: 1440px) {
    .container {
        max-width: 100%;
   }
}

/* Beautiful Mobile Menu (Triggers below 1200px due to navbar-expand-xl) */
@media (max-width: 1199.98px) {
.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #BD917B;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.95);
    overflow-y: auto; /* Enable scrolling */
    padding-top: 100px;
    padding-bottom: 50px;
}
    
    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        display: flex !important;
        overflow-y: auto;
    }

    .navbar-nav {
         text-align: center;
         width: 100%;
         padding: 0;
         margin: auto 0;
    }
    
    .navbar-nav .menu-item {
        margin: 2vh 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navbar-collapse.show .navbar-nav .menu-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger Animation for menu items */
    .navbar-collapse.show .navbar-nav .menu-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .navbar-nav .menu-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-collapse.show .navbar-nav .menu-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-collapse.show .navbar-nav .menu-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-collapse.show .navbar-nav .menu-item:nth-child(5) { transition-delay: 0.5s; }
    
    .navbar-nav .menu-item a {
        font-size: clamp(24px, 4vw, 36px); 
        font-family: var(--font-heading);
        font-weight: 700;
        color: #fff !important;
        text-transform: capitalize;
        letter-spacing: 1px;
    }
        .navbar-nav .menu-item a:hover {
        color: #BD917B !important; /* This might be invisible on same bg, should check colors */
    }
    /* Fixing hover color since bg is #BD917B */
    .navbar-nav .menu-item a:hover {
        color: #fff !important;
        opacity: 0.8;
    }
    /* Position the Close Button (Mobile Toggler) inside the menu */
    .navbar-toggler.mobile {
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 10001;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 5px;
    }
    .navbar-toggler.mobile svg path,
    .navbar-toggler.mobile svg rect {
        stroke: #fff;
        fill: #fff;
    }
}
/* Ensure the Desktop Toggler (Open Button) is visible when collapsed */
@media (max-width: 1199.98px) {
    .navbar-toggler.desktop {
        z-index: 100;
        position: relative;
    }
}
/* -----------------------------------------------------------
   404 Page Styles
----------------------------------------------------------- */
.error-404-area {
    padding: 80px 0 0 0;
    width: 100%;
    background-color: #fff;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-content {
    max-width: 600px;
    margin: 0 auto;
}
.error-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 10rem;
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1;
    margin-bottom: 0px;
    background: -webkit-linear-gradient(#eee, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.error-heading {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}
.error-text {
    font-family: var(--font-body, "Raleway", sans-serif);
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 6rem;
    }
    .error-heading {
        font-size: 2rem;
    }
}
