* {
	margin: 0;
	padding: 0;
	font-family: 'Hanken Grotesk';
}
html {
	scroll-behavior: smooth;
}
body {
	font-size: 18px;
	color: var(--theme-black);
	line-height: 1.5;
	background-color: #fff;
}
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	background-color: var(--bg-color);
}
::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
	border-radius:12px;
	height:24vh;
}

:root {
	--theme-black: #2C2C2C;
	--main-color: #C69453;
	--bg-color:#F8F5EE;
	--white-color:#fff;
}

body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

body ul li {
	font-family: 'Hanken Grotesk';
}

body a {
	text-decoration: none;
	font-size: 20px;
	line-height: 20px;
	font-weight:600;
	font-family: 'Hanken Grotesk';
	color: inherit;
}

a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
}

body .page-wrapper *:focus,
.ui-dialog *:focus {
	outline: 0;
	box-shadow: none;
	border: 0;
	font-family: 'Hanken Grotesk';
}

body p {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	font-family: 'Hanken Grotesk';
}

body h1 {
	font-size: 56px;
	line-height: 64px;
	font-weight: 800;
	margin-bottom: 24px;
	color:#fff;
	font-family: 'Hanken Grotesk';
}

body h2 {
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 24px;
	font-weight: 800;
	color: var(--theme-black);
	font-family: 'Hanken Grotesk';
}

body h3 {
	font-size: 32px;
	line-height:40px;
	font-weight: 700;
	color: var(--theme-black);
	margin-bottom: 24px;
	font-family: 'Hanken Grotesk';
}

body h4 {
	font-size: 26px;
	line-height: 36px;
	margin-bottom: 12px;
	font-weight: 600;
	color: var(--theme-black);
	font-family: 'Hanken Grotesk';
}

body h5 {
	font-size:24px;
	line-height:34px;
	font-weight:600;
	color: var(--theme-black);
	font-family: 'Hanken Grotesk';
}
body h6 {
	font-size:20px;
	line-height:30px;
	font-weight:500;
	color: var(--theme-black);
	font-family: 'Hanken Grotesk';
}
body img {
	width: 100%;
	max-width: none;
	display: block;
}
.padding {
	padding: 108px 0;
}

button, .main_btn {
	padding: 15px 39px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	border: none;
	border-radius: 70px;
	display: inline-block;
	cursor: pointer;
	background-color: var(--main-color);
	transition: background-color 0.3s ease;
	color: #fff;
}

input,
textarea,
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: 'Hanken Grotesk';
	font-size: 16px;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--yellow);
	outline: none;
}
.slick-dots li.slick-active button:before {
	opacity: -0.25;
	color:transparent;
}
.slick-dots li button:before{
	opacity: -0.25;
	color:transparent;
}

.slick-prev:before, .slick-next:before {
	font-size: 0!important;
}
.common_heading p {
	width: 50%;
	margin-bottom: 48px;
	padding: 0;
}
img.custom-logo {
    width: 72%;
    height: auto;
}
/* ===============================
HERO SLIDER STYLES (Scoped)
=============================== */
.hero-slider-wrapper .hero-content a.main_outline_btn{
	    border: 1px solid var(--main-color);
    border-radius: 32px;
    padding: 15px 40px;
    color: var(--main-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-left: 12px;
}
.hero-slider-wrapper .hero-slider {
	height: 100vh;
	margin: 0;
	padding: 0;
}
.hero-slider-wrapper .hero-slide {
	position: relative;
	height: 100vh;
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	color: #fff;
}
.hero-slider-wrapper .hero-slide .hero-img {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;   
	z-index: 0;
}
.hero-slider-wrapper .hero-slide::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.4);  
	z-index: 1;
}
.hero-slider-wrapper .hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
}
.hero-slider-wrapper .hero-content p {
	padding: 0;
	width: 75%;
	margin-bottom: 48px;
}
.hero-slider-wrapper .hero-content a.main_btn {
	background: var(--main-color);
}
.hero-slider-wrapper .hero-content a.main_btn:hover {
	border: 3px solid var(--main-color);
	background: transparent;
	color: var(--main-color);
}
.hero-slider-wrapper ul.slick-dots {
	position: absolute;
	bottom: 15%;
	left: 110px;
	width: auto;
	display: flex !important;
	gap: 12px;
}
.hero-slider-wrapper ul.slick-dots li {
	width: 14px;
	height: 14px;
}
.hero-slider-wrapper ul.slick-dots li button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: none;
	padding: 0;
	font-size: 0; 
	transition: all 0.3s ease-in-out;
}
.hero-slider-wrapper ul.slick-dots li.slick-active button {
	background: #fff;
	position: relative;
}
.hero-slider-wrapper ul.slick-dots li.slick-active button::after {
	content: "";
	position: absolute;
	top: -6px;
	left: -6px;
	width: 25px;
	height: 25px;
	border: 2px solid #fff;
	border-radius: 50%;
}
/* ===============================
ABOUT HOME STYLES (Scoped)
=============================== */
section.about_main_sec .about_main_image img {
	border-radius: 32px;
}
section.about_main_sec .abot_brief p {
	width: 65%;
	padding: 0;
	margin-bottom: 48px;
}
/* ===============================
MARQUEE HOME STYLES (Scoped)
=============================== */
.marquee-container {
	background-color: var(--main-color);
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	padding: 38px 0px;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: scroll 30s linear infinite;
}

.marquee-item {
	display: inline-block;
	padding: 0 32PX;
	color: white;
	font-weight: bold;
	white-space: nowrap;
}
.marquee-item span {
	MARGIN-LEFT: 64PX;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
/* ===============================
Why card HOME STYLES (Scoped)
=============================== */
section.why_main_sec {
	background: var(--bg-color);
}
section.why_main_sec .row .why_Card {
	box-shadow: 0px 0px 20px 0px #0000001A;
	padding: 24px;
	background: #fff;
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	height: 100%;
}
.why_Card .why_Card_image img {
	width: 60px;
	height: auto;
}
/* ===============================
CATEGORY SLIDER STYLES (Scoped)
=============================== */
/* Custom arrows positioned in heading area */
.category-slider-section {
	position: relative;
}

.category-slider-section::before:hover,
.category-slider-section::after:hover {
	background-color: #000;
}

.custom-nav-arrows {
    position: absolute;
    top: 17%;
    right: 7%;
    display: flex
;
    gap: 10px;
    z-index: 100;
}

.custom-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: #000;
    transition: all 0.3s 
ease;
}

.custom-arrow:hover {
	background: #000;
	color: #fff;
}

.custom-arrow svg {
	width: 18px;
	height: 18px;
}


.category-slider-wrapper {
    max-width: 93%;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 0;
    overflow: hidden; /* Back to hidden to contain slider */
    position: relative;
}

.category-slider-wrapper .slick-list {
	overflow: visible !important; /* override slick's default */
	margin-left: -15px;
	margin-right: -15px;
}

.category-slider-wrapper .slick-track {
	display: flex !important;
	align-items: flex-start;
}

.category-slider-wrapper .slick-prev, .category-slider-wrapper .slick-next {
	position: absolute;
	top: -183px; /* Negative value to position above the slider content */
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #000;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
	z-index: 1000;
}

.category-slider-wrapper .slick-prev:hover,
.category-slider-wrapper .slick-next:hover {
	background: #000;
	color: #fff;
}

.category-slider-wrapper .slick-prev {
	left: 82%;
}

.category-slider-wrapper .slick-next {
	right: 10%;
}

.category-slider .category-slide {
	display: inline-block;
	width: 285px;
	margin-right: 30px;
	vertical-align: top;
	box-sizing: border-box;
	cursor: grab;
}

.category-slider .category-slide img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	margin-bottom: 24px;
}

.category-slider .category-slide h5 {
	margin: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid #2C2C2C80;
	font-size: 20px;
	line-height: 30px;
}

.category-slider .slick-slide {
	outline: none;
}

.category-slider .category-slide:active {
	cursor: grabbing;
}

@media (max-width: 992px) {
	.category-slider .category-slide {
		width: 230px;
	}
}

@media (max-width: 768px) {
    .category-slider .category-slide {
        width: fit-content;
        margin-right: 18px;
    }
    
    .category-slider-wrapper .slick-prev {
        left: 70%;
        top: -183px;
    }
    
    .category-slider-wrapper .slick-next {
        right: 10%;
        top: -183px;
    }
}

@media (max-width: 576px) {
	    .custom-nav-arrows {
        position: absolute;
        top: 10%;
        right: 5%;
    }

	    .common_heading p {
        width: 75%;
    }
    .category-slider .category-slide {
        width: 265px!important;
        overflow: hidden;
    }
    
    .category-slider .category-slide img {
        height: 155px;
    }
    
    .category-slider-wrapper .slick-prev {
        left: 60%;
        top: -183px;
    }
    
    .category-slider-wrapper .slick-next {
        right: 10%;
        top: -183px;
    }
    
    .order-section .col-lg-9 .row {
        row-gap: 24px;
    }
}
/* ===============================
ORDER hOME STYLES (Scoped)
=============================== */
.order-section {
	background-color: var(--theme-black);
}
section.order-section h2 {
	color: #fff;
}
.order-step {
	background: #fff;
	border-radius: 15px;
	padding: 24px 48px 24px 24px;
	text-align: left;
	color: #000;
	position: relative;
}
.order-step-number {
	font-size: 70px;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px #000;
	opacity: 0.3;
	line-height: 90px;
	margin-bottom: 48px;
}
.order_main_head_sec {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 85px;
}
.order-style-icon {
	gap: 20px;
	display: flex;
}
.order-step p {
	margin: 0;
}
.order_main_head_sec {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 85px;
}
/* ===============================
BENEFITS Home STYLES (Scoped)
=============================== */
section.benefits-section .common_heading p {
	width: 100%;
}
.benefits-section img {
	border-radius: 32px;
	width: 100%;
	height: auto;
	object-fit: cover;
}
section.benefits-section .benefits_main_list {
	width: 85%;
	margin-left: auto;
}
section.benefits-section .benefits_main_list ul.benefits-list {
	margin-bottom: 48px;
}
section.benefits-section .benefits_main_list a.main_outline_btn {
	border: 1px solid var(--main-color);
	border-radius: 32px;
	padding: 15px 40px;
	color: var(--main-color);
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}
section.benefits-section .benefits_main_list .button_list {
	display: flex;
	gap: 24px;
}
section.testimonial-section {
	background: var(--bg-color);
}
.benefits-list {
	list-style: none;
	padding: 0;
}
.benefits-list li {
	margin-bottom: 18px;
	position: relative;
	padding-left: 18px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
}
.benefits-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #000;
	font-size: 20px;
	line-height: 1;
}
/* ===============================
TESTIMONIALS Home STYLES (Scoped)
=============================== */
.testimonial-slider .slick-track {
	display: flex !important;
}

.testimonial-slider .slick-slide {
	height: inherit !important;
	display: flex !important;
}

.testimonial-card {
	background: #fff;
	padding: 32px 36px;
	border-radius: 32px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
	margin: 0px 15px 12px;
	border: 0.67px solid #FFFFFF33;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}
.testimonial-author {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: var(--theme-black);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.testimonial-card p {
    margin:0;
}
section.testimonial-section {
	position: relative;
}
section.testimonial-section.padding .testimonial-heading p {
	margin: 0;
	width: 80%;
}
.testimonial-slider.slick-initialized.slick-slider {
	width: 95%;
	margin-left: auto;
}
section.testimonial-section .testimonial-slider .slick-prev {
	position: absolute;
	top: 90%;
	left: -59%;
	background: transparent;
	border: 1px solid #000;
	width: 45px;
	height: 45px;
}

section.testimonial-section .testimonial-slider .slick-next {
	position: absolute;
	top: 90%;
	left: -52%;
	background: transparent;
	border: 1px solid #000;
	width: 45px;
	height: 45px;
}
section.testimonial-section .testimonial-slider .slick-prev i, section.testimonial-section .testimonial-slider .slick-next i {
	font-size: 12px;
	color: #000;
}
/* ===============================
FAQS Home STYLES (Scoped)
=============================== */
.faq-section .container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.faq-section .faq-left {
	flex: 1 1 20%;
}

section.faq-section.padding .faq-left p {
	margin-bottom: 48px;
}
.faq-section .faq-right {
	flex: 1 1 70%;
}
.faq-section .faq-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 24px 0;
}

.faq-section .faq-question {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 24px;
	line-height: 34px;
	transition: color 0.3s ease;
}
.faq-section .faq-question.active {
	color: #c38f5b;
}

.faq-section .plus-icon {
	font-size: 24px;
	color: var(--theme-black);
	transition: transform 0.3s ease;
}

.faq-section .faq-question.active .plus-icon {
    transform: rotate(45deg);
    color: var(--main-color);
}

.faq-section .faq-answer {
	display: none;
	font-size: 20px;
	margin-top: 18px;
	line-height: 30px;
	width: 70%;
}

.faq-section .faq-question.active + .faq-answer {
	display: block;
}
/* Recent Home STYLES */
.recent-guide-main-sec {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

section.recent-guide-main-sec.padding p {
	color: #000;
	margin: 0;
}    
.guides-carousel {
	position: relative;
}

.guide-card {
	background: transparent;
	overflow: hidden;
	transition: all 0.3s ease;
	margin: 0 15px;
	display: flex !important;
	flex-direction: column;
}

.guide-card:hover {
	transform: translateY(-10px);

}

.card-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 32px;
	transition: transform 0.3s ease;
}


.card-content {
	padding: 24px 0px 0px 0px;
	flex-grow: 1;
	display: flex;
	align-items: center;
}
.card-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 34px;
    margin: 0;
}
.carousel-nav {
	position: static;
	transform: none;
	background: transparent;
	border: none;
	width: 18px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	padding: 12px 24px;
	align-items: center;
	justify-content: center;
	color: var(--theme-black);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid var(--theme-black);
}
.carousel-nav:hover {
	background: white;
	transform: scale(1.1);
}
.slick-dots {
	display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
	.section-header h2 {
		font-size: 2rem;
	}

	.guide-card {
		margin: 0 10px;
		height: auto;
	}

	.card-image {
		height: 200px;
	}

	.carousel-navigation {
		justify-content: center !important;
		margin-top: 20px;
	}
}

/* ===============================
footer STYLES (Scoped)
=============================== */
.footer {
	background-color: var(--theme-black);
	color: #ffffff;
	padding: 108px 0px 0px 0px;
	position: relative;
}
.footer-content {
	padding-bottom: 100px;
	border-bottom: 1px solid #FFFFFF33;
}
.footer-logo {
	width: 160px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 48px;
	position: relative;
}

.footer-content a.social-icon {
	background: transparent;
	border: 0.87px solid #D2D3CE;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-icons {
	display: flex;
	gap: 16px;
	margin-top: 0;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: #555;
	border: 1px solid #666;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 16px;
}

.social-icon:hover {
	background-color: #c8964d;
	border-color: #c8964d;
	color: #fff;
	transform: translateY(-2px);
}

.footer-section h5 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #fff;
	line-height: 38px;
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-links a {
	color: #efefef;
	text-decoration: none;
	font-size: 18px;
	transition: color 0.3s ease;
	position: relative;
	line-height: 28px;
	font-weight: 400;
}
.footer-links a:hover {
	color: var(--main-color);
	padding-left: 5px;
}

.footer-links a:hover::before {
	content: '›';
	position: absolute;
	left: -10px;
	color: #c8964d;
}
.footer-bottom {
    padding: 40px 0px;
    display: flex
;
    justify-content: space-between;
}

.copyright {
	color: #fff;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.footer {
		padding: 40px 0 0;
	}

	.footer-logo {
		width: 80px;
		height: 80px;
		margin: 0 auto 20px;
	}
    .social-icons {
        margin-bottom: 12px;
    }
	.footer-logo::before {
		width: 40px;
		height: 40px;
	}

	.footer-logo::after {
		width: 20px;
		height: 20px;
	}

	.logo-text {
		text-align: center;
	}

	.social-icons {
		justify-content: center;
	}

    .footer-section {
        margin-bottom: 0;
        margin-top: 0;
    }


}

@media (max-width: 576px) {
    .footer-section h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }

	.contact-info p {
		font-size: 0.9rem;
	}
}
/* ===============================
Common banner STYLES (Scoped)
=============================== */
.common-banner {
    height: auto;
    overflow: hidden;
}

.common-banner .banner-img {
	object-fit: cover;
	height: 100%;
}
.common-banner .text-overlay {
    position: absolute;
    bottom: 0;
    background-color: #2c2c2cb0;
    max-width: 700px;
    border-radius: 0;
    padding: 24px 48px;
}
section.common-banner .text-overlay h6 {
    color: #fff;
    margin-bottom: 12px;
}
section.common-banner .text-overlay h1 {
    margin-bottom: 12px;
}
section.common-banner .text-overlay p {
    margin-bottom: 0;
}
/* Testimonial internal page  STYLES  */
section.testimonial_inner_main_sec .testimonial-slider.slick-initialized.slick-slider {
    width: 100%;
}

.testimonial_inner_main_sec.padding .row.align-items-start {
    row-gap: 48px;
}
section.testimonial_inner_main_sec .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
}

section.testimonial_inner_main_sec .col-md-4 {
  display: flex;              
}

section.testimonial_inner_main_sec .testimonial-card {
  flex: 1;                  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===============================
Blog internal page  STYLES (Scoped)
=============================== */
.recent-guide-main-inner-sec.padding .card-content h3 {
    color: var(--main-color);
    font-weight: 700;
}
.recent-guide-main-inner-sec.padding .row {
    row-gap: 48px;
}
.recent-guide-main-inner-sec.padding {
    background: #fff;
}
/* ===============================
about internal page  STYLES (Scoped)
=============================== */
section.about_main_inner_sec.padding .abot_brief p strong {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
}
section.about_main_inner_sec.padding .about_main_image img {
    border-radius: 32px;
}
section.about_main_inner_sec.padding h2 {
    margin-bottom: 62px;
    text-align: center;
}
section.mission.padding {
    text-align: center;
}
.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why_inner_main_Sec.padding .row {
    row-gap: 48px;
}
.why_inner_main_Sec.padding .why_Card {
    padding: 48px;
}
section.why_main_sec.why_inner_main_Sec h2 {
    margin-bottom: 48px;
}
section.team.padding h2.section-title {
    text-align: center;
}

section.team.padding .team-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 48px;
}
section.team.padding .career-banner {
    background: var(--theme-black);
    padding: 48px;
    border-radius: 32px;
    color: #fff;
    text-align: center;
}
section.team.padding .career-banner .career-content {
    max-width: 800px;
    margin: 0 auto;
}
section.team.padding .career-banner .career-content h2 {
    color: #fff;
}
section.team.padding .career-banner .career-content a.email-link {
    background: #fff;
    color: var(--main-color);
    padding: 15px 39px;
    border-radius: 24px;
    display: block;
    width: fit-content;
    margin: 48px auto 0px;
}
.order_main_inner_sec {
    background: #fff;
}
.order_main_inner_sec .order_main_head_sec h2 {
    color: var(--theme-black);
}
.order_main_inner_sec .order-step {
    background: var(--theme-black);
}
.order_main_inner_sec .order-step .order-step-number {
    -webkit-text-stroke: 1px #fff;
}
.order_main_inner_sec .order-step h3 {
    color: #fff;
}
.order_main_inner_sec .order-step p {
    color: #fff;
}
.why_inner_main_Sec.padding .row .why_Card {
    padding: 24px;
    gap: 24px;
}
section.stats_inner_sec .counter_card .stat-number {
    font-size: 70px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #000;
    opacity: 0.3;
    line-height: 90px;
    margin-bottom: 24px;
}
section.stats_inner_sec .counter_card .stat-label {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--theme-black);
    margin-bottom: 0;
    font-family: 'Hanken Grotesk';
}
section.about_main_inner_sec.padding {
    background: var(--bg-color);
}
section.about_main_inner_sec .abot_brief {
    margin-right: 48px;
    text-align: justify;
}
section.why_inner_main_Sec {
    background: #fff;
}
section.why_inner_about_main_Sec h2 {
    margin-bottom: 48px;
    text-align: center;
}

/* ===============================
Blog internal single page  STYLES (Scoped)
=============================== */
.breadcrumb {
    padding: 12px;
    background: var(--bg-color);
    border-bottom: 1px solid var(--bg-color);
    display: flex;
    align-items: center;
    margin: 0;
}
.breadcrumb a {
    color: var(--theme-color);
    text-decoration: none;
}
.breadcrumb span {
    margin: 0 12px;
    color: var(--theme-color);
}
main.main-content-single-blog.padding {
    max-width: 1000px;
    margin: 0 auto;
}
main.main-content-single-blog article.article-header h1 {
    color: var(--main-color);
}
article.article-header .article-meta {
    margin-bottom: 24px;
}
article.article-header .article-meta strong {
    color: var(--main-color);
    font-weight: 700;
}
main.main-content-single-blog.padding article.article-header .content-text {
    margin: 24px 0px;
}


section.related-articles-sec.padding {
    background: var(--main-color);
}
section.related-articles-sec.padding h2.section-title {
    color: #fff;
    margin-bottom: 48px;
}
main.main-content-single-blog.padding article.article-header .content-text img {
    height: 400px;
    margin-bottom: 24px;
    object-fit: cover;
    object-position: center;
}
section.related-articles-sec.padding .guide-card .card-content h3 {
    color: #fff;
}
main.main-content-single-blog.padding article.article-header .content-text h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
}
main.main-content-single-blog.padding article.article-header .content-text ul {
    list-style: disc;
    padding-left: 32px;
}
main.main-content-single-blog.padding article.article-header .content-text ul li {
    margin-bottom: 8px;
}
/* ===============================
Contact page  STYLES (Scoped)
=============================== */
.contact-info p {
	color: #efefef;
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 28px;
}

.contact-info .address {
	margin-bottom: 12px;
}

.contact-info .locations {
	margin-bottom: 20px;
	color: #efefef;
	font-weight: 500;
}
.contact-email {
	display: block;
	color: #efefef;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	line-height: 26px;
}

.contact-email:hover {
	color: var(--main-color);
}
section.contact_main_inner_Sec.padding .form-section h6 {
    color: #fff;
}
section.contact_main_inner_Sec.padding .form-section h2 {
    color: #fff;
    margin-bottom: 12px;
}
section.contact_main_inner_Sec.padding .form-section p {
    color: #fff;
    margin-bottom: 48px;
}
/* ===============================
calculator page  STYLES (Scoped)
=============================== */
.calculator-info h2 {
    color: #fff;
    margin-bottom: 48px;
}
.calculator-info {
    background: var(--theme-black);
}

.calculator-info h4 {
  color: #fff;
}
.calculator-info .row {
    row-gap: 48px;
}
.melbo_box_first {
    padding-right: 12px;
}
.melbo_box_second {
    width: 90%;
    margin-left: auto;
}
.calculator-info .info-list {
  list-style: none;
  padding: 0;
}
.calculator-info p {
    color: #fff;
}
.calculator-info .info-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    display: flex
;
    align-items: baseline;
    flex-direction: column;
}
.calculator-info .info-list i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #c58a45; 
  font-size: 18px;
}
.timber-calculator .main-layout {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 108px;
    align-items: start;
}
.timber-calculator .left-section {
    display: flex
;
    flex-direction: column;
    gap: 42px;
}
.timber-calculator .convert-section h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 34px;
}

        .timber-calculator .convert-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
.timber-calculator .select-group select {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    line-height: 26px;
}

.timber-calculator .select-group select:focus {
    outline: none;
    border-color: var(--main-color);
}
.timber-calculator .dimensions-section h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 34px;
}
.timber-calculator .dimension-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}
.timber-calculator .dimension-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-black);
    line-height: 28px;
}
.timber-calculator .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
}
.timber-calculator .input-btn {
    background: var(--bg-color);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2rem;
    color: var(--main-color);
    transition: background-color 0.2s;
    user-select: none;
    min-width: 76px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

        .timber-calculator .input-btn:hover {
            background: #e9ecef;
        }

.timber-calculator .dimension-input {
    border: none;
    padding: 12px 0px;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    width: 50%;
    background: white;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
        .timber-calculator .dimension-input:focus {
            outline: none;
        }
.timber-calculator .result-section {
    background: var(--bg-color);
    border-radius: 24px;
    padding: 48px;
    height: fit-content;
    max-width: 452px;
    margin-left: auto;
}
.timber-calculator .result-label {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 12px;
}
.timber-calculator .result-section div#result {
    display: flex
;
    margin-bottom: 24px;
}
.timber-calculator .result-value {
    font-size: 62px;
    font-weight: 800;
    line-height: 72px;
}
        .timber-calculator .result-unit {
          font-size: 62px;
    font-weight: 800;
    line-height: 72px;
            vertical-align: super;
            margin-left: 2px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .timber-calculator .main-layout {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .timber-calculator .convert-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .timber-calculator .dimension-item {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .timber-calculator .input-group {
                max-width: 100%;
            }
            
            .timber-calculator .dimension-input {
                width: 100px;
            }
        }
/* homepage custom pop up */
.custom-modal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.custom-modal .btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
}

.custom-modal h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}

.custom-modal .form-control,
.custom-modal .form-select {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.custom-modal .form-control:focus,
.custom-modal .form-select:focus {
  border-color: #c89b52;
  box-shadow: 0 0 0 0.2rem rgba(200, 155, 82, 0.25);
}

.custom-modal .submit-btn {
  background: #c89b52;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px;
  transition: 0.3s;
}
.custom-modal .submit-btn:hover {
  background: #a77e3d;
}

.custom-modal .contact-list .list-group-item {
  border: 1px solid #c89b52;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.custom-modal .contact-list .list-group-item:hover {
  background: #c89b52;
  color: #fff;
}
.custom-modal .contact-list i {
  color: #c89b52;
  font-size: 1.2rem;
}
.custom-modal .contact-list .list-group-item:hover i {
  color: #fff;
}
/* Original Product Category CSS */
.product_category_main_sec .product-category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 370px;
}

.product_category_main_sec .product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product_category_main_sec .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product_category_main_sec .category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product_category_main_sec .product-category-card:hover .category-image {
  transform: scale(1.05);
}

.product_category_main_sec .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2ca3;
    padding: 20px;
    transition: all 0.3s ease;
}
.product_category_main_sec .product-category-card:hover .category-overlay {
    bottom: 0;
    background: #2c2c2c8a;
}

.product_category_main_sec .category-description-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product_category_main_sec .product-category-card:hover .category-description-wrapper {
  max-height: 100px;
}

.product_category_main_sec .category-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin-bottom: 10px;
}

.product_category_main_sec .category-description {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.product_category_main_sec .category-title {
    font-size: 24px;
    margin: 0;
    color: white;
    line-height: 34px;
}

.product_category_main_sec .category-btn {
    color: var(--main-color);
    background: #fff;
    border: none;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product_category_main_sec .category-btn:hover {
    background: transparent;
    transform: scale(1.1);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

/* Direct Subcategories CSS */
.product_category_main_sec .product-category-wrapper {
    margin-bottom: 30px;
}
.product_category_main_sec .category-accordion-section {
    background: white;
    border-radius: 8px;
    margin-top: 32px;
    padding: 0;
}

.product_category_main_sec .subcategory-direct-list {
    /* Container for direct subcategories */
}

.product_category_main_sec .subcategory-direct-item {
    margin-bottom: 0;
    padding-bottom: 0;
}

.product_category_main_sec .subcategory-direct-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product_category_main_sec .subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0px 24px 24px;
    border-bottom: 1px solid #B0B0B0;
}
.product_category_main_sec .subcategory-link {
    text-decoration: none;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: var(--main-color);
    transition: all 0.3s ease;
    display: block;
    padding: 0;
}

.product_category_main_sec .subcategory-link:hover {
    color: var(--main-color);
    text-decoration: none;
    padding-left: 8px;
}

.product_category_main_sec .sub-accordion-toggle {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--main-color);
    transition: all 0.3s ease;
    border-radius: 4px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_category_main_sec .sub-accordion-toggle:hover {
    background: rgba(var(--main-color-rgb, 255, 152, 0), 0.1);
    transform: scale(1.1);
}

.product_category_main_sec .sub-accordion-icon {
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
}
.product_category_main_sec .sub-accordion-content {
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 0;
}

.product_category_main_sec .sub-subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product_category_main_sec .sub-subcategory-list li {
    margin-bottom: 24px;
    border-bottom: 1px solid #B0B0B0;
}
.product_category_main_sec .sub-subcategory-link {
    text-decoration: none;
    color: var(--theme-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
    padding: 0px 0px 24px 48px;
}
.product_category_main_sec .sub-subcategory-link:hover {
    color: var(--main-color);
    text-decoration: none;
}

/* Row spacing */
section.product_category_main_sec.padding .row {
    margin-bottom: 0;
}

/* Animation for accordion icons */
.product_category_main_sec .sub-accordion-toggle.active .sub-accordion-icon {
    transform: rotate(45deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .product_category_main_sec {
        padding: 40px 0;
    }
    
    .product_category_main_sec .product-category-card {
        height: 220px;
    }
      .product_category_main_sec .category-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .product_category_main_sec .category-btn {
        width: 40px;
        height: 40px;
    }
    
    .product_category_main_sec .category-accordion-section {
        padding: 12px;
        margin-top: 12px;
    }
    
        .product_category_main_sec .subcategory-header {
        gap: 8px;
        padding: 0px 12px 12px;
        margin-bottom: 12px;
    }
    
    .product_category_main_sec .sub-accordion-toggle {
        min-width: 24px;
        height: 24px;
    }
    
    .product_category_main_sec .subcategory-link {
        font-size: 15px;
        padding: 6px 0;
    }
    
    .product_category_main_sec .product-category-wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .product_category_main_sec .category-overlay {
        padding: 30px 15px 15px;
    }
    
    .product_category_main_sec .category-content {
        align-items: flex-start;
        gap: 15px;
    }
    
    .product_category_main_sec .category-btn {
        align-self: flex-end;
    }
    
       .product_category_main_sec .subcategory-direct-item {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.no-products-found a.btn.btn-primary {
    padding: 15px 39px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    border: none;
    border-radius: 70px;
    display: inline-block;
    cursor: pointer;
    background-color: var(--main-color);
    transition: background-color 0.3s ease;
    color: #fff;
}

.return-policy h1 {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    margin-bottom: 12px;
}
section.privacy_policy.padding {
    padding: 50px 0px 100px 0px;
}
.return-policy h2 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

.return-policy h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

.return-policy ol {
  padding-left: 20px;
}

.return-policy li {
  margin-bottom: 10px;
}
section.product_category_main_sec .pagination-wrapper ul.page-numbers {
    display: flex;
    width: 40%;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
}
section.product_category_main_sec .pagination-wrapper ul.page-numbers li {
    margin: 0 24px;
}
section.product_category_main_sec .pagination-wrapper ul.page-numbers li span.page-numbers.current {
    color: var(--main-color);
    font-weight: 900;
    font-size: 28px;
    line-height: 38px;
}
.timber-calculator .convert-row .convert-box {
    display: flex
;
    gap: 12px;
    margin-bottom: 0;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}
.calculator-info
 {
    border-bottom: 1px solid #fff;
}


/* Main container for the category navigation */
.category-sidebar-nav {
    border: 1px solid #e0e0e0;
    font-family: sans-serif;
}

/* Each navigation item (main category) */
.category-sidebar-nav .nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.category-sidebar-nav .nav-item:last-child {
    border-bottom: none;
}

/* Header for each main category */
.category-sidebar-nav .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* White background */
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Title link of the main category */
.category-sidebar-nav .nav-header .nav-link-title {
    color: #333333; /* Dark gray text */
    text-decoration: none;
    font-weight: bold;
    flex-grow: 1;
}

/* When a link is full-width (no subcategories) */
.category-sidebar-nav .nav-header .nav-link-title.is-full {
    width: 100%;
}

/* The toggle button (styled as an arrow) */
.category-sidebar-nav .nav-toggle-btn {
    background: transparent;
    border: none;
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.category-sidebar-nav .nav-toggle-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: solid #555555; /* Arrow color */
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: translate(-50%, -75%) rotate(45deg); /* Down arrow */
    transition: transform 0.3s ease;
}

/* Rotate arrow when accordion is open */
.category-sidebar-nav .nav-toggle-btn[aria-expanded="true"]::after {
    transform: translate(-50%, -25%) rotate(-135deg); /* Up arrow */
}

/* Subcategory list styling */
.category-sidebar-nav .nav-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f7f7f7; /* Light gray background for sub-items */
}

.category-sidebar-nav .nav-sub-list li a {
    display: block;
    padding: 10px 15px 10px 25px;
    color: #444444;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    border-top: 1px solid #eeeeee;
    font-size: 16px;
}

.category-sidebar-nav .nav-sub-list li a:hover {
    background-color: #e9e9e9;
}


/* --- Active State Styling --- */

/* Style for the active main category header */
.category-sidebar-nav .nav-header.active {
    background-color: #6c757d; /* Medium gray background for active parent */
}

.category-sidebar-nav .nav-header.active .nav-link-title {
    color: #ffffff; /* White text */
}

.category-sidebar-nav .nav-header.active .nav-toggle-btn::after {
    border-color: #ffffff; /* White arrow */
}

/* Style for the active subcategory item */
.category-sidebar-nav .nav-sub-list li.active a {
    background-color: #343a40; /* Dark gray background for active item */
    color: #ffffff; /* White text */
    font-weight: bold;
}
a.nav-link-title {
    font-size: 17px;
}

div#v-pills-tab {
    border-right: 1px solid #cccccc;
}
.vertical-tabs-container.d-flex.align-items-start {
    column-gap: 40px;
}

.mega-menu .nav-link:hover {
    background: var(--main-color);
    color: #ffffff;
}
.mega-menu .nav-link.active {
    background: var(--main-color);
}
.mega-menu .nav-link {
    font-size: 17px !important;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 4px 20px;
    border-radius: 0;
    transition: 0.2s all;
	    margin: 0;
}
.tab-pane ul li a:hover {
    color:var(--main-color);
}
.mega-menu {
    background: #fff;
    padding: 30px 100px !important;
}
ul.nav-sub-list.list-unstyled li a {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 0;
    text-transform: capitalize;
}
div#v-pills-tabContent h3 {
    display: none;
}
button.mobile-toggle svg {
    width: 30px;
    height: 30px;
}
.offcanvas.offcanvas-start {
    width: 300px !important;
}
.features-list {
            list-style: none;
            padding-left: 0;
        }
        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        .features-list .icon {
            color: #d4a373; /* A gold-like color for the checkmark */
            margin-right: 10px;
            font-size: 1.2em;
        }

.bottom_content{
	    border-top: 1px solid #cccccc;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(204, 204, 204);
    padding-top: 60px;
    margin-top: 50px;
}
.product-container {
    width: 80%;
    margin: 0 auto;

}
.line_new h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

.margin_down {
    margin-bottom: 35px !important;
}
.product-container h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
        width: auto;
        margin: 0;
    }
    section.product-hero-section .product-image-wrapper {
    flex-direction: column !important;
}
}