/* ------------------------------------------- */
/* Global */
/* ------------------------------------------- */
:root {
	--primary-color: #ff5e14;
	--nav-primary: #ffffff;
	--footer-primary: #0a0300;
	--primary-color-2: #f75e16;
	--secondary-color: #ff9d00;
	--dark-navy: #1f242e;
	--bg-light: #ebebebec;
	--border-light: #a79f9f;
	--white-color: #ffffff;
	--dark-color: #333333;
	--primary-100: #ffefe8;

	--text-gray: #6E777D;


	--font-main: 'Rubik', sans-serif;
	--font-secondary: 'Exo', sans-serif;
	--transition: all 0.4s ease;
}

body {
	font-family: var(--font-main);
	line-height: 1.5;
	color: #333;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}

.fw-600 {
	font-weight: 600;
}
.fw-700 {
	font-weight: 700;
}

.px-40 {
	padding: 0 40px;
}

.py-50 {
	padding: 50px 0;
}

.z-30 {
	z-index: 30;
}

.py-24 {
	padding: 120px 0;
}

.mb-24 {
	margin-bottom: 120px;

}

.pt--200 {
	padding-top: 200px;
}
.pt--100 {
	padding-top: 100px;
}

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



/* ==========================================================================
COMPONENTS / UI ELEMENTS
========================================================================== */
#drawer-cart {
	z-index: 999999;
}

.sub-title {
	margin: 0 auto;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	position: relative;
	max-width: max-content;
	z-index: 1;
	padding: 0 35px;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--font-secondary);
}

.sub-title::before {
	content: "";
	position: absolute;
	width: 56px;
	height: 2px;
	background: linear-gradient(-90deg, var(--primary-color), rgba(33, 38, 45, 0)) !important;
	left: -30px;
	top: 50%;
	transform: translateY(-50%);
}

.sub-title::after {
	content: "";
	position: absolute;
	width: 56px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color), rgba(33, 38, 45, 0)) !important;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
}

.main-title {
	font-size: 44px;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 20px;
	color: var(--text-dark);
	line-height: 58px;
}

.description {
	color: var(--text-gray);
	line-height: 1.8;
}


/* primary button */
.primary-btns.hover-icon-reverse {
	background-color: var(--primary-color) !important;
	color: var(--white-color);
	padding: 14px 30px;
	font-weight: 500;
	text-transform: capitalize;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: color 0.4s ease, border-color 0.4s ease;
	text-decoration: none;
	z-index: 1;
}

.primary-btns.hover-icon-reverse::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: var(--dark-navy);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
	z-index: -1;
}

.primary-btns.hover-icon-reverse:hover::before {
	height: 100%;
}

.btn-text-content {
	display: block;
	position: relative;
}

.btn-icon-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.btn-icon {
	display: inline-block;
	transition: all 0.4s ease;
}

/* .btn-icon-hover {
	display: inline-block;
	position: absolute;
	right: -20px;
	opacity: 0;

	transition: all 0.4s ease;
} */

/* .primary-btns:hover .btn-icon {
	transform: translateX(-40px);
	opacity: 0;
} */

/* .primary-btns:hover .btn-text {
	transform: translateX(-15px);
	transition: all 0.4s ease;
} */

.primary-btns:hover .btn-icon-hover {
	right: 0px;
	opacity: 1;
}


/* Video Play Button CSS */

.video-play-btn .play-icon {
	width: 80px;
	height: 80px;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}


.video-play-btn:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	bottom: 1px;
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.play-icon-circle:hover {
	transform: scale(1.1);
	background: var(--bs-primary);

}


.services-section,
.works-process-area,
.team-area,
.blogs-section {
	background-color: #9595951a;
}

/* ------------------------------------------- */
/* 1. Navigation & Top Bar */
/* ------------------------------------------- */
.top-bar {
	background-color: var(--primary-color);

}

.top-bar .dropdown-menu {
	z-index: 99999999;
}

.home-navigation {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
	background-color: transparent;
	padding: 10px 0;
}

.home-navigation .logo-sticky {
	display: none;
}

.home-navigation.sticky-nav .logo-default {
	display: none;
}

.home-navigation.sticky-nav .logo-sticky {
	display: inline-block;
}

.home-navigation.sticky-nav {
	position: fixed;
	top: 0;
	background-color: var(--nav-primary);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.home-navigation .navbar-brand img {
	height: 60px;
}

.home-navigation .nav-link {

	font-weight: 400;
	color: var(--white-color) !important;
}

.home-navigation.sticky-nav .nav-link {

	font-weight: 400;
	color: rgb(0, 0, 0) !important;

}

.home-navigation .nav-link:hover,
.home-navigation .nav-link.active {
	color: var(--primary-color) !important;
}

.home-navigation #drawer-cart-icon {
	color: var(--white-color);
}

.home-navigation.sticky-nav #drawer-cart-icon {
	color: var(--dark-navy);
}


.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	transition: all 0.3s ease;
	color: var(--white-color);
}

.social-links a:hover {
	background-color: var(--white-color);
	color: #212529 !important;
	transform: translateY(-2px);
}


.offcanvas-end {
	width: 300px;
}


.offcanvas-body .nav-link {
	color: var(--white-color);
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


#search-bar-container {
	top: 100%;
	margin-top: 10px;
	border-radius: 8px;
}

/* ------------------------------------------- */
/* 2. Slider Global & Banner Wrapper */
/* ------------------------------------------- */
.hero-slider-section {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.banner-five-main-wrapper {
	position: relative;
	z-index: 1;
	height: 460px;
}


.banner-five-main-wrapper:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: -1;
	mix-blend-mode: multiply;
}


.banner-five-main-wrapper:after {
	content: '';
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -2;
	background: linear-gradient(90.07deg, rgba(255, 94, 20, 0.25) 1.29%, rgba(255, 94, 20, 0) 99.95%);
}

.bg-style {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.hero-slide-item {
	height: 100vh;
	min-height: 600px;
	background-size: cover !important;
	background-position: center !important;
	display: flex !important;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-slider-title {
	font-weight: 700;
	font-size: 70px;
	margin-top: 32px;
	line-height: 1.2;
}

.hero-slider-subtitle {
	font-size: 18px;
	letter-spacing: 0.5px;
	font-family: 'Rubik', sans-serif;
}

.hero-slide-paragraph {
	max-width: 550px;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 40px;
}

.hero-slide-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
	z-index: -1;
}

.slider-subtitle {
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 16px;
	color: var(--white-color);
	text-transform: uppercase;
}

.slider-title {
	font-size: 65px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--white-color);
	margin: 15px 0 30px;
}


.hero-slider.owl-carousel .owl-dots {
	position: absolute !important;
	right: 50px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 15px !important;
	z-index: 999 !important;
	counter-reset: slide-count;
	margin: 0 !important;
}

.hero-slider.owl-carousel .owl-dot {
	width: 45px !important;
	height: 45px !important;
	background: var(--white-color) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: 0.4s ease;
	cursor: pointer;
	outline: none;
}

.hero-slider.owl-carousel .owl-dot span {
	display: none !important;
}


.hero-slider.owl-carousel .owl-dot::before {
	counter-increment: slide-count;
	content: counter(slide-count, decimal-leading-zero);
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
}


.hero-slider.owl-carousel .owl-dot.active {
	background: var(--primary-color) !important;
}

.hero-slider.owl-carousel .owl-dot.active::before {
	color: var(--white-color) !important;
}

.hero-slider.owl-carousel .owl-dot:hover {
	transform: scale(1.1);
}

/* ------------------------------------------- */
/* Main navigation*/
/* ------------------------------------------- */
.main-navigation {
	position: relative;
	background-color: var(--nav-primary);
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.main-navigation.sticky-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	animation: slideDown 0.35s ease-out;

}

.main-navigation .navbar-brand img {
	height: 60px;
}

#drawer-cart-icon {
	color: var(--dark-navy);
}

.main-navigation .nav-link {
	font-weight: 500;
	color: var(--dark-navy) !important;
}

.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
	color: var(--primary-color) !important;
}

/* ------------------------------------------- */
/* Banner section */
/* ------------------------------------------- */
.tmp-breadcrumb-area {
	height: 350px;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 1;
}

.breadcrumb-content-main {
	padding-top: 6rem;
}

.tmp-breadcrumb-area::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: "/";
	color: rgba(255, 255, 255, 0.5) !important;
}


.tmp-breadcrumb-area .title {
	letter-spacing: 1px;
	text-transform: capitalize;
}

.tmp-breadcrumb-area a:hover {
	color: #ff5e14 !important;
	opacity: 1;
}


/* ------------------------------------------- */
/* 5. home about section */
/* ------------------------------------------- */
.py-lg-10 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.transition {
	transition: all 0.3s ease;
}

/* Color Overrides */
.text-primary {
	color: var(--primary-color) !important;
}

.bg-primary {
	background-color: var(--primary-color) !important;
}

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

.about-img-wrapper {
	position: relative;
	display: inline-block;
}

.about-img-wrapper::before {
	content: "";
	position: absolute;
	background: var(--primary-color-2);
	width: 7px;
	height: 30%;
	border-radius: 2px;
	top: 0;
	right: -25px;

}

.about-img-wrapper::after {
	content: "";
	position: absolute;
	background: var(--primary-color-2);
	width: 7px;
	height: 60%;
	border-radius: 2px;
	bottom: 0;
	right: -25px;
}

.about-img-wrapper img.position-absolute {
	max-width: 150px;
}

.about-shape1 {
	z-index: 20;
	height: 273px;
	top: 0;
	left: 0;
}

.about-shape2 {
	bottom: 0;
	right: 0;
	z-index: 20;
	position: absolute;
}


.counter-badge {
	bottom: 10%;
	left: -5%;
	z-index: 10;
	min-width: 240px;
}

.about-play-btns {
	position: absolute;
	bottom: 25px;
	right: 27px;
	z-index: 21;
}


/* ------------------------------------------- */
/* 6. services section */
/* ------------------------------------------- */

.service-card {
	background: var(--white-color);
	border-radius: 8px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
	padding: 30px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: .3s;
	height: 100%;
}

.service-card:hover {
	transform: scale(1.02);
}


.card-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.card-text {
	color: var(--text-gray);
	margin-bottom: 30px;
}

.read-more-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	border: 1px solid var(--bg-light);
	border-radius: 50px;
	transition: all 0.3s ease;
	color: var(--text-dark);
	font-weight: 600;
}

.arrow-circle {
	width: 55px;
	height: 55px;
	background-color: var(--bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease;
}

.arrow-icon {
	font-size: 20px;
	transition: all 0.4s ease;
	display: inline-block;
}


.read-more-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.read-more-btn:hover .arrow-circle {
	background-color: var(--primary-color);
}

.read-more-btn:hover .arrow-icon {
	color: var(--white-color);
	animation: arrowExitEntry 0.5s forwards;
}

@keyframes arrowExitEntry {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}

	45% {
		transform: translate(25px, -25px);
		opacity: 0;
	}

	50% {
		transform: translate(-25px, 25px);
		opacity: 0;
	}

	100% {
		transform: translate(0, 0);
		opacity: 1;
	}
}

.popular-ribbon {
	position: absolute;
	top: 18px;
	right: -32px;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 5px 35px;
	transform: rotate(45deg);
	font-weight: 600;
	z-index: 1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------- */
/*7. Working Process */
/* ------------------------------------------- */

.working-process-area {
	background-color: var(--white-color);
}


.process-card {
	height: 250px;
	background-size: cover;
	background-position: center;
	cursor: pointer;
}

.process-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 1;
	transition: 0.4s ease;
}

.process-card:hover::before {
	background: linear-gradient(180deg, rgba(255, 94, 20, 0) 20%, rgba(255, 94, 20, 0.95) 100%);
}


.card-content-normal {
	position: absolute;
	bottom: 11px;
	left: 0;
	width: 100%;
	z-index: 2;
	transition: all 0.4s ease;
	text-align: left;
}

.big-number {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 60px;
	line-height: 1;
	margin-bottom: 10px;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
	display: block;
	transition: 0.4s ease;
	opacity: 0.5;
}


.process-card:hover .big-number {
	opacity: 0;
	transform: translateY(-10px);
}

.process-card:hover .card-content-normal {
	opacity: 0;
	transform: translateY(-20px);
}

.card-content-hover {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: all 0.4s ease;
	background: transparent;
}

.card-content-paragraph {
	font-size: 18px;
	color: var(--primary-100);
}

.process-card:hover .card-content-hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/* --- Video Section --- */
.video-section-large {
	height: 650px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.3);
}

.worker-play-btns {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: var(--primary-color);
	position: relative;
	transition: 0.4s;

}

/* ------------------------------------------- */
/*7. Works Process */
/* ------------------------------------------- */

.works-process-area .process-card {
	height: 550px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background-color: #000;
}

.card-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s ease;
	z-index: 0;
}

.works-title {
	color: var(--white-color);
}


.process-card:hover .card-bg-img {
	transform: scale(1.1);
}


.works-process-area .process-card:hover::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 0.01%, #000000 100%);
}


.card-content-normal,
.card-content-hover {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}


.works-process-area .process-card .primary-btns.hover-icon-reverse {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	background-color: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
	border-radius: 4px;
	z-index: 5;
	transition: 0.4s ease;
}

.works-process-area .process-card .primary-btns.hover-icon-reverse::before {
	background-color: var(--primary-color);
	transition: all 0.4s ease;
}


.works-process-area .process-card .primary-btns.hover-icon-reverse:hover {
	border-color: var(--primary-color);
}

/* ------------------------------------------- */
/* 8. Testimonials section */
/* ------------------------------------------- */

.slider-container-relative {
	position: relative;
}


.testimonial-slider-3.owl-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	left: 0;
	margin: 0;
	transform: translateY(-50%);
	display: block;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.testimonial-slider-3.owl-carousel .owl-nav .owl-prev,
.testimonial-slider-3.owl-carousel .owl-nav .owl-next {
	position: absolute;
	pointer-events: auto;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: var(--primary-color);
	box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 12px;
	border-radius: 6px;
	transition: 0.3s;
	margin: 0;
	padding: 0;
	z-index: 2;
}


.testimonial-slider-3.owl-carousel .owl-nav .owl-prev {
	left: 48%;
	bottom: 60%;
}


.testimonial-slider-3.owl-carousel .owl-nav .owl-next {
	top: 60%;
	right: 48%;
}

.testimonial-slider-3.owl-carousel .owl-nav .owl-prev:hover,
.testimonial-slider-3.owl-carousel .owl-nav .owl-next:hover {
	background: var(--primary-color) !important;
	color: var(--white-color) !important;
	border-color: var(--primary-color) !important;
}


.testimonial-slider-3 .item,
.testimonial-slider-3 .testimonial-card {
	background-color: var(--white-color);
	transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.4s ease;
}


.active-highlight .item,
.active-highlight .testimonial-card {
	background-color: #feefe8 !important;

}

.testimonial-slider-3.owl-carousel .owl-nav button {
	transition: all 0.3s ease-in-out;

}

.testimonial-slider-3 .testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* ------------------------------------------- */
/* 10. team section */
/* ------------------------------------------- */
.team-card-v2 {
	background: #fff;
	border-radius: 12px;
	width: 295px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #f0f0f0;
}

.team-card-v2 .image-section {
	position: relative;
	overflow: hidden;
}

.team-card-v2 .title:hover {
	color: var(--primary-color);
}


.team-card-v2 .image-section img {
	transition: 0.6s ease;
	display: block;
}

.team-card-v2 .image-section::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(255, 94, 20, 0) 40%, rgba(255, 94, 20, 0.8) 100%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}


.team-card-v2:hover .image-section::after {
	opacity: 1;
}

.team-card-v2 .social-wrapper {
	position: absolute;
	z-index: 5;
	left: 50%;
	transform: translate(-50%, 20px);
	bottom: 30px;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
}

.team-card-v2:hover .social-wrapper {
	opacity: 1;
	transform: translate(-50%, 0);
}

.team-card-v2 .social-wrapper ul li a {
	width: 45px;
	height: 45px;
	text-decoration: none;
	background: #ffffff;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;

	transition: 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-card-v2 .social-wrapper ul li a:hover {
	background: var(--primary-color);
	color: #fff;
}


.team-card-v2 .team-arrow-icon .arrow-circle {
	width: 45px;
	height: 45px;
	background-color: var(--bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease;
}

.team-card-v2 .team-arrow-icon .arrow-icon {
	font-size: 20px;
	transition: all 0.4s ease;
	display: inline-block;
}

.team-card-v2:hover .arrow-circle {
	background-color: var(--primary-color);
}

.team-card-v2:hover .arrow-icon {
	color: var(--white-color);
	animation: arrowExitEntry 0.5s forwards;
}

.email-icon-bg {
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 12px;
}

.team-card-v2:hover img {
	transform: scale(1.1);
}

.tmp-team-details-area .social-wrapper a {
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50% !important;
	padding: 0 !important;
	flex-shrink: 0;
	background-color: #d3cdcd9c !important;
	color: #333;
	text-decoration: none;
	transition: 0.3s ease;
}

.tmp-team-details-area .social-wrapper a i {
	font-size: 18px;
	line-height: 1;
}

.tmp-team-details-area .social-wrapper a:hover {
	background-color: var(--primary-color-2) !important;
	color: #fff;

}


/* ------------------------------------------- */
/*12. our up coming events */
/* ------------------------------------------- */

.event-carousel .owl-nav {
	margin-top: 30px;
	text-align: center;
}

.up-coming-events .title:hover {
	color: var(--primary-color);
}

.event-carousel .owl-nav button {
	width: 45px;
	height: 45px;
	background: #f8f9fa !important;
	border-radius: 50% !important;
	color: #333 !important;
	margin: 0 5px;
	transition: 0.3s;
	border: 1px solid #ddd !important;
}

.event-carousel .owl-nav button:hover {
	background: var(--primary-color) !important;
	color: #fff !important;
	border-color: var(--primary-color) !important;
}

.single-event-card {
	transition: 0.4s;
}

.single-event-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.single-event-card .thumbnail img {
    height: 300px;
    object-fit: cover;
	transition: 0.6s ease;
}

.single-event-card:hover .thumbnail img {
	transform: scale(1.1);
}


.up-coming-events .primary-btns.hover-icon-reverse {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	background-color: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--dark-navy);
	border-radius: 4px;
	z-index: 5;
	transition: 0.4s ease;
	border: 1px solid var(--bg-light);
}

.up-coming-events .primary-btns.hover-icon-reverse::before {
	background-color: var(--dark-navy);
	transition: all 0.4s ease;
}


.up-coming-events .primary-btns.hover-icon-reverse:hover {
	color: var(--white-color);
}

/* ------------------------------------------- */
/*12. footer , footer top and footer bottom */
/* ------------------------------------------- */
.footer-bg {
	background-color: #1F242E;
}

.tmp-footer-area .title {
	color: #fff;
}

.tmp-footer-area .description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.tmp-footer-area .cta-title {
	font-size: 34px;
	line-height: 1.4;
	color: var(--color-white);
	font-weight: 700;
	margin-bottom: 0;
}

.tmp-footer-area .primary-btns.hover-icon-reverse {
	background-color: var(--bg-light) !important;
	color: var(--white-color);
	align-items: center;
	padding: 10px 15px;
	color: var(--dark-navy);
	border-radius: 4px;
	z-index: 5;
	transition: 0.4s ease;
}

.tmp-footer-area .primary-btns.hover-icon-reverse::before {
	background-color: var(--dark-navy);
	transition: all 0.4s ease;
}

.tmp-footer-area .primary-btns.hover-icon-reverse:hover::before {
	height: 100%;
}

.tmp-footer-area .primary-btns.hover-icon-reverse:hover {
	color: var(--white-color);
}

.tmp-footer-area form {
    margin-top: 20px;
}

.tmp-footer-area .des-sub {
    font-size: 16px;
}

.tmp-footer-area .des-col1 {
    padding-right: 80px;
}

@media (max-width: 767px) {
    .tmp-footer-area .des-col1 {
        padding-right: 0;
    }
}

.mail-btns {
	background-color: var(--primary-color) !important;
	color: var(--white-color);

}

.mail-btns:hover {
	background-color: var(--dark-navy) !important;
	color: var(--primary-color);

}

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

.footer-links li a {
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s ease;
	display: inline-block;
}

.footer-links li a:hover {
	color: var(--primary-color) !important;
	transform: translateX(5px);
}


.social-icons a {
	width: 35px;
	height: 35px;
	display: flex;
	color: var(--text-gray);
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.social-icons a:hover {
	background-color: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}


/* ------------------------------------------- */
/*13. Blogs section*/
/* ------------------------------------------- */
.blog-card-style-two {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-style-two:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-card-style-two img {
	transition: transform 0.5s ease;
}

.blog-card-style-two:hover img {
	transform: scale(1.1);
}

.hover-primary:hover {
	color: var(--primary-color) !important;
}


.pagination .page-link {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	border: 1px solid #eee;
	font-weight: 600;
}

.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}


.blogs-section .primary-btns.hover-icon-reverse {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	background-color: transparent !important;
	color: var(--dark-navy);
	border-radius: 4px;
	z-index: 5;
	transition: 0.4s ease;
	border: 1.5px solid var(--dark-navy);
}

.blogs-section .primary-btns.hover-icon-reverse::before {
	background-color: var(--dark-navy);
	transition: all 0.4s ease;
}


.blogs-section .primary-btns.hover-icon-reverse:hover {
	color: var(--white-color);
}


/* ------------------------------------------- */
/*13. scroller section*/
/* ------------------------------------------- */


.float-text span {
	background-color: #fff;
	padding: 10px 1px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
    border: 1px solid #939393;
}

.float-text span a {
	text-decoration: none;
	color: #212529;
	font-size: 10px;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 1px;
}

.scroll-line {
	width: 3px;
	height: 100px;
	background: #e0e0e0;
	margin-top: 15px;
	position: relative;
	overflow: hidden;
}


.scroll-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: #e67e22;
	transition: height 0.1s linear;
}


.float-text {
	opacity: 0;
	visibility: hidden;
}

.float-text.show {
	opacity: 1;
	visibility: visible;
}


.float-text.show-on-scroll {
	position: fixed;
	bottom: 50px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.scroll-progress-container {
	width: 3px;
	height: 80px;
	background-color: #e0e0e0;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}


.scroll-progress-bar {
	width: 100%;
	height: 0%;
	background-color: var(--primary-color);
	position: absolute;
	top: 0;
	left: 0;
	transition: height 0.1s ease-out;

}


/* ------------------------------------------- */
/*Team member details section*/
/* ------------------------------------------- */

.btn-outline-primary {
	color: var(--primary-color);
	border-color: #eee;
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.border-primary {
	border-color: var(--primary-color) !important;
}

.progress-bar {
	transition: width 1.5s ease-in-out;
}

.award-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #feefe8;
	border-radius: 50%;
	margin-bottom: 10px;

}


.award-icon img {
	filter: grayscale(0);
}

.award-title {
	font-weight: 600;
	line-height: 1.5;
}

.single-progress span {
	font-size: 15px;
	letter-spacing: 0.5px;
}


.skill-bar {
	width: 0;
	transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) !important;


}

/* ------------------------------------------- */
/*Contact page*/
/* ------------------------------------------- */
.get-in-touch-wrapper {
	transition: all 0.4s ease-in-out;
	border: 1px solid transparent;
	z-index: 1;
}

.get-in-touch-wrapper .icons {
	color: var(--primary-color);
	transition: all 0.4s ease;
}

.get-in-touch-wrapper:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 94, 20, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.get-in-touch-wrapper:hover .icons {
	background-color: var(--primary-color) !important;
	color: #fff !important;
}


.hover-moving-primary {
	transition: all 0.3s ease;
	display: inline-block;
}

.hover-moving-primary:hover {
	color: var(--primary-color) !important;
	transform: translateX(5px);
}

.get-in-touch-wrapper .title {
	font-size: 22px;
	letter-spacing: -0.5px;
}

.contact-form .form-control {
	padding: 12px 15px;
	border: 1px solid #eee;
	background-color: #f9f9f9;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	background-color: var(--white-color);
	border-color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

.custom-check:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-label {
	font-size: 14px;
	color: #666;
	cursor: pointer;
}

.btn-send {
	background-color: var(--primary-color);
	border: none;
	transition: all 0.3s ease;
}

.btn-send:hover {
	background-color: #e65100;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.contact-map iframe {
	filter: grayscale(0.2);
	display: block;
}

/* ------------------------------------------- */
/*Project page*/
/* ------------------------------------------- */
.project-wrapper4 {
	background-color: #fef8f5;
	margin-bottom: 100px;
}

.project-wrapper4 .title {
	text-decoration: none;
	font-weight: 600;
	font-size: 36px;
	margin-bottom: 15px;
	color: #1a1a1a;
	transition: 0.3s;
}

.project-wrapper4:hover .title {
	color: var(--primary-color);
}


.image-section img {
	transition: transform 0.5s ease;
}

.project-wrapper4:hover .image-section img {
	transform: scale(1.05);
}

.btn-primary {
	background-color: var(--primary-color) !important;
	border: none;
	transition: 0.3s;
}

.btn-primary:hover {
	background-color: #333 !important;
	transform: translateY(-3px);
}

.pagination-area .page-link {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa;
	font-weight: bold;
}

.pagination-area .page-item.active .page-link {
	background-color: var(--primary-color) !important;
	color: var(--white-color);
}

/* ------------------------------------------- */
/*Event Details page*/
/* ------------------------------------------- */

.info-card {
	margin-top: -60px;
	z-index: 10;
	border-radius: 10px;
}

.bg-box-shadow {
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
	background: var(--color-white);
	padding: 30px;
	margin: 0 30px;
	margin-top: 30px;
	border-radius: 6px;
}

.events-faqs-area {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.custom-accordion .accordion-button {
	font-size: 20px;
	padding: 20px 25px;
	color: #1a1a1a;
	transition: all 0.3s ease;
}


.custom-accordion .accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: transparent;
}


.custom-accordion .accordion-button::after {
	background-size: 16px;
	transition: transform 0.3s ease;
}


.custom-accordion .accordion-body {
	padding-left: 25px;
	padding-right: 25px;
	line-height: 1.7;
	font-size: 16px;
}


.rounded-4 {
	border-radius: 1.5rem !important;
}

.accordion-item {
	transition: transform 0.3s ease;
}

.accordion-item:hover {
	transform: translateX(5px);
}


/* ------------------------------------------- */
/*shop page*/
/* ------------------------------------------- */


.mt--50 {
	margin-top: 50px;
}

.pt--50 {
	padding-top: 50px;
}

.mt--60 {
	margin-top: 60px;
}

.tmp-search {
	position: relative;
	display: flex;
	align-items: center;
}

.tmp-search input {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid var(--bg-light);
	border-radius: 5px;
	outline: none;
}

.tmp-search .tmp-btn {
	position: absolute;
	right: 5px;
	padding: 8px 15px;
}

.tmp-btn.btn-primary {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.tmp-btn.btn-primary:hover {
	background: #0056b3;
}

.tmp-sidebar-list-wrapper {
	list-style: none;
	padding: 0;
}

.tmp-check-group {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.tmp-check-group label {
	margin-left: 10px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
}

.tmp-lable-count {
	color: #999;
	font-size: 12px;
}

.rating i {
	color: #ffb400;
	font-size: 15px;
}

/* Shop Card 1 */
.tmp-shop-card-1 {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

.tmp-shop-card-1:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tmp-shop-card-1 .title a {
	font-size: 24px;
	color: #1c1c1c;
	text-decoration: none;
	font-weight: 700;
}

.tmp-shop-card-1 .thumbnail {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.tmp-shop-card-1 .action-buttons {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	transition: var(--transition);
}

.tmp-shop-card-1:hover .action-buttons {
	bottom: 20px;
}

.action {
	background: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.action:hover {
	background: var(--primary-color);
	color: #fff;
}

.current-price {
	background: var(--primary-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 24px;
}

/* Add to Cart Hover Effect */
.hover-icon-reverse {
	overflow: hidden;
	position: relative;
}

.icon-reverse-wrapper {
	display: flex;
	align-items: center;
	transition: 0.3s;
}

.btn-icon {
	margin-left: 10px;
	transition: 0.3s;
}

.hover-icon-reverse:hover .btn-icon {
	transform: translateX(5px);
}

/* Pagination */
.pagination-list {
	display: inline-flex;
	list-style: none;
	gap: 10px;
}

.pagination-list li {
	width: 40px;
	height: 40px;
	border: 1px solid var(--bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	cursor: pointer;
}

.pagination-list li.active {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

#productQuickView .modal-content {
	border-radius: 15px;
	overflow: hidden;
}

.product-modal-left {
	background-color: #f1f4ff;
}

.thumb-img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	background: #fff;
	border: 1px solid #eee;
	padding: 5px;
	border-radius: 5px;
	cursor: pointer;
}

.thumb-img.active {
	border-color: var(--primary-color);
}

.quantity-box button {
	background: transparent;
	border-color: #eee;
}

.product-meta p {
	color: #666;
}

.product-meta strong {
	color: #252525;
}

.custom-modal-close {
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: var(--bg-light) !important;
	color: var(--white-color) !important;
	border-radius: 50%;
	opacity: 1 !important;
	padding: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	transition: 0.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-modal-close:hover {
	background-color: #e55a1d !important;
	transform: scale(1.1);
}


/* ------------------------------------------- */
/*project details page*/
/* ------------------------------------------- */
.project-details-area {
	background: var(--bg-light);
}

.section-inner {
	background: var(--white-color);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

.project-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.project-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.project-list li i {
	color: var(--primary-color);
	font-size: 18px;
}


.single-wrapper {
	background: var(--bg-light);
	border: 1px solid var(--bg-light);
}

.title-project-sticky {
	font-size: 24px;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
}

.title-project-sticky::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--primary-color);
}

.project-info-list {
	list-style: none;
}

.project-info-list li {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px dashed #d1d1d1;
}

.project-info-list li:last-child {
	border-bottom: none;
}

.price-tag {
	font-size: 24px;
	font-weight: 500;
	color: var(--primary-color);
}


/* ------------------------------------------- */
/* Login && Registration page*/
/* ------------------------------------------- */

.auth-card {
	border-radius: 5px;
}

.auth-title {
	font-weight: 700;
	font-size: 2.5rem;
	color: #1c2448;
}

.custom-input {
	height: 60px;
	border: 1px solid #eee;
	padding-left: 20px;
	font-size: 14px;
	color: #666;
}

.custom-input:focus {
	border-color: var(--primary-color);
	box-shadow: none;
}

.auth-btn {
	background-color: var(--primary-color) !important;
	border: none !important;
	font-weight: 600;
	border-radius: 4px;
}

.divider {
	position: relative;
}

.divider::before,
.divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #eee;
}

.social-btn {
	border-color: #eee !important;
	color: #333 !important;
	font-weight: 500;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.social-btn:hover {
	background-color: #f8f9fa !important;
}

/* ------------------------------------------- */
/* Cart view page*/
/* ------------------------------------------- */

.btn-text {
	font-size: 16px;
	white-space: nowrap;
}

.coupon-section .clear-btns.hover-icon-reverse {
	padding: 15px 35px;
	background-color: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--dark-navy);
	transition: 0.3s ease;
	border: 1px solid var(--bg-light);
}


.coupon-section .clear-btns.hover-icon-reverse:hover {
	color: var(--white-color);
}

.shipping-alert {
	background: white;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.progress {
	height: 6px;
	background-color: #f1f1f1;
}

.progress-bar {
	background-color: var(--primary-color);
}


.cart-card {
	background: white;
	border-radius: 8px;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-img {
	width: 65px;
	height: 65px;
	object-fit: contain;
	border: 1px solid #f1f1f1;
	padding: 5px;
	border-radius:
		8px;
}

.remove-item {
	color: var(--primary-color);
	cursor: pointer;
}

.qty-box {
	border: 1px solid #ddd;
	border-radius: 5px;
	display: flex;
	align-items: center;
	width: 80px;
	margin: 0 auto;
}

.qty-box input {
	border: none;
	width: 40px;
	text-align: center;
	font-weight: bold;
}


.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}


/* ------------------------------------------- */
/* Checkout page*/
/* ------------------------------------------- */

.tmp-section-gap {
	padding: 100px 0;
}

.form-control-mod {
	height: 55px;
	border: 1px solid var(--bg-light);
	padding: 10px 20px;
	font-size: 15px;
	border-radius: 8px;
	transition: var(--transition);
}

.form-control-mod:focus {
	border-color: var(--primary-color);
	box-shadow: none;
	background: #fdfdfd;
}

textarea.form-control-mod {
	height: auto;
	padding-top: 15px;
}

.product-thumb img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border: 1px solid var(--bg-light);

}

.title-order {
	border-bottom: 2px solid var(--primary-color);
	display: inline-block;
	padding-bottom: 5px;
}

.payment-methods .form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}


/* ------------------------------------------- */
/* service details page*/
/* ------------------------------------------- */

.service-section-gap {
	padding: 100px 0;
}

@media (min-width: 992px) {
	.pr--35 {
		padding-right: 35px;
	}
}


.service-list {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #e7e7e7;
}

.service-list .title-main {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.service-details-section .right-content-area .image-section {
	max-width: 100%;
	height: 500px;
	background-position: center center;
	background-size: cover;
	border-radius: 10px;
	margin: 0 30px;
}

@media (max-width: 768px) {
	.image-section {
		height: 350px;
		margin: 0 15px;
	}
}

.service-list .title-main::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--primary-color);
}

.service-list ul li {
	margin-bottom: 12px;
}

.service-list ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #fff;
	border-radius: 5px;
	color: var(--heading-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	border: 1px solid #c7c7c7;
}

.service-list ul li a:hover,
.service-list ul li a.active {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}


.single-wrapper.contact-area {
	background: #f8f8f8;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid #d1d1d1;
}

.icon-box {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.single-quick-action {
	position: relative;
}

.single-quick-action i {
	position: absolute;
	left: 15px;
	top: 18px;
	color: var(--primary-color);
	font-size: 14px;
}

.single-quick-action input,
.single-quick-action textarea {
	padding-left: 45px !important;
	height: 55px;
	border-radius: 5px;
	border: 1px solid #cccccc;
}

.single-quick-action textarea {
	height: auto;
	padding-top: 15px;
}

.checkout-padding-shadow {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}


.accordion-button:not(.collapsed) {
	background-color: transparent;
	color: var(--primary-color);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.125);
}


/* ------------------------------------------- */
/* User Account page*/
/* ------------------------------------------- */
.user-infor-left-sidebar-dashboard {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.author-profile {
	text-align: center;
	margin-bottom: 30px;
}

.author-profile-img img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid var(--bg-light);
	margin-bottom: 15px;
}

.author-profile .name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0;
}

/* Navigation Menu */
.dashboard-mainmenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dashboard-mainmenu ul li {
	margin-bottom: 5px;
}

.dashboard-mainmenu ul li a {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	color: #666;
	text-decoration: none;
	border-radius: 8px;
	transition: 0.3s;
	font-weight: 500;
}

.dashboard-mainmenu ul li a i {
	margin-right: 12px;
	width: 20px;
	font-size: 18px;
}

.dashboard-mainmenu ul li a:hover,
.dashboard-mainmenu ul li a.active {
	background: var(--primary-color);
	color: #fff !important;
}

.single-card-dashboard {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.title.with-border-bottom {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border-light);
}

.single-contact-information {
	padding: 15px 0;
	border-bottom: 1px solid #f9f9f9;
}

.profile-info {
	font-size: 16px;
}

.col-lg-4 .profile-info {
	font-weight: 600;
	color: #333;
}

.col-lg-8 .profile-info {
	color: #666;
}

@media (min-width: 992px) {
	.mt-lg-custom {
		margin-top: 40px;
	}
}

/* ------------------------------------------- */
/* Manage profile page*/
/* ------------------------------------------- */

.form-control,
.form-select {
	padding: 12px 15px;
	border-radius: 8px;
	background-color: #fdfdfd;
}

.form-control:focus,
.form-select:focus {
	box-shadow: 0 0 0 0.25rem rgba(255, 123, 0, 0.1);
	border-color: var(--border-light);
}

.image-preview img {
	object-fit: cover;
	border: 3px solid #f0f0f0;
}

.pointer {
	cursor: pointer;
}

.form-label {
	margin-bottom: 8px;
	color: #333;
}

.dash-board-content-area-wrappper .primary-btns.hover-icon-reverse {
	padding: 13px 15px;
}

.custom-order-table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.custom-order-table thead th {
	background-color: #feefe8 !important;
	padding: 18px 15px;
	font-weight: 700;
	color: #2d3748;
	border: none;
}

.custom-order-table tbody tr:nth-child(even) td {
	background-color: #f4f4f4 !important;
}

.custom-order-table tbody td {
	padding: 15px;
	font-size: 15px;
	color: #4a5568;
	border: none;
}

.badge-status {
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	display: inline-block;
}

.badge-status.completed {
	background-color: #ffc9f5;
	color: #f33ed2;
}
.badge-status.processing {
	background-color: #ffbfa8;
	color: #f67243;
}
.badge-status.cancelled {
	background-color: #ffacac;
	color: #ff3c3c;
}
.badge-status.shipped {
	background-color: #aac9ff;
	color: #3671d7;
}
.badge-status.delivered {
	background-color: #b1ffc4;
	color: #28a745;
}



.order-title {
	font-weight: 700;
	font-size: 22px;
}

.order-id {
	font-weight: 600;
	color: #718096 !important;
}

.photo-gallery-section a.glightbox {
	text-decoration: none;
	display: block;
}

.process-card {
	background-size: cover;
	background-position: center;
	min-height: 300px;
	transition: transform 0.3s ease;
}

.process-card:hover {
	transform: scale(1.03);
}


.reply-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Comment List Styles */
.user-avatar img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 10px;
}

.user-name {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.comment-date {
	font-size: 14px;
	font-weight: 400;
	color: #777;
	margin-left: 5px;
}

.comment-text {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 15px;
}

.reply-link {
	display: inline-flex;
	align-items: center;
	background-color: #ff5e14;
	/* স্ক্রিনশটের অরেঞ্জ কালার */
	color: #fff !important;
	padding: 8px 22px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.reply-link:hover {
	background-color: #001d3d;
	transform: translateY(-2px);
}

.comment-divider {
	border-top: 1px dashed #ddd;
	margin: 30px 0;
}

/* Form Styles */
.reply-input {
	background-color: #f8f9fa !important;
	border: 1px solid #eee !important;
	padding: 15px 20px !important;
	border-radius: 5px !important;
	font-size: 15px;
}

.reply-input:focus {
	background-color: #fff !important;
	border-color: #ff5e14 !important;
	box-shadow: none !important;
}

.post-comment-btn {
	background-color: #ff5e14;
	color: #fff;
	border: none;
	padding: 16px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.post-comment-btn:hover {
	background-color: #001d3d;
	transform: translateY(-3px);
}

@media (max-width: 576px) {
	.single-comment-box {
		flex-direction: column;
	}

	.comment-info {
		margin-left: 0 !important;
		margin-top: 15px;
	}
}


.title-underline {
	width: 70px;
	height: 4px;
	background-color: var(--primary-color);
	margin: 1.5rem auto;
	/* Centers the underline */
}

.subtitle {
	font-size: 1rem;
	font-weight: 300;
	color: var(--text-color);
	margin-bottom: 3rem;
}


.legal-list {
	list-style: none;
	padding: 0;
}

.legal-list li {
	position: relative;
	padding-left: 60px;
	margin-bottom: 2.5rem;
}

.list-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--number-bg);
	color: var(--primary-purple);
	border-radius: 8px;
	font-size: 1.5rem;
	font-weight: bold;
}

.section-heading {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}


.dotted-divider {
	border-top: 5px dotted #e9ecef;
	margin: 3rem 0;
}

.last-updated {
	color: var(--text-last-updated);

}


/* ============================================================
   Utility classes (converted from inline styles)
   ============================================================ */
.size-80 { width: 80px; min-width: 80px; height: 80px; flex-shrink: 0; }
.size-40 { width: 40px; height: 40px; }
.size-60 { width: 60px; height: 60px; }
.size-64 { width: 64px; height: 64px; }
.size-35 { height: 35px; width: 35px; }
.w-50px { width: 50px; }
.w-120px { width: 120px; }
.footer-logo-size { max-width: 100%; height: 70px; }
.h-60px { height: 60px; }
.h-350px { height: 350px; }
.drawer-cart-width { width: 450px; }
.drawer-nav-style { width: 320px; background-color: #0a0300; }
.max-h-540 { max-height: 540px; }
.fs-10 { font-size: 10px; }
.fs-9 { font-size: 9px; }
.fs-18 { font-size: 18px; }
.fw-600 { font-weight: 600; }
.award-title-style { font-size: 1rem; color: #1a1a1a; }
.text-primary-orange { color: #ff5e14; }
.toggler-icon-style { color: rgb(255, 0, 0); font-size: 24px; }
.text-white-rgb { color: rgb(255, 255, 255); }
.text-accent-orange { color: #f75e16; }
.text-accent-orange-light { color: #f75d16da; }
.footer-cta-gradient { margin-top: -280px; z-index: 10; background: linear-gradient(90deg, #ff5e14 0%, #ff1e1e 100%); }
.cta-shape-pos { top: -20px; right: -20px; }
.video-section-bg { background-image: url('../../images/home-video.png'); }
.cursor-pointer { cursor: pointer; }
.content-area-padding { padding: 20px 30px; }
.mb-30 { margin-bottom: 30px; }
.sticky-offset-100 { top: 100px; }
.pe-50 { padding-right: 50px; }
.px-12 { padding-left: 12px; padding-right: 12px; }
.progress-track { height: 7px; background-color: #f0f0f0; }
.progress-fill { width: 0%; background-color: #ff5e14; transition: width 1.5s ease-in-out; }
.contact-icon-box { width: 80px; height: 80px; font-size: 32px; background: rgba(255, 94, 20, 0.05); }
.badge-success-soft { background-color: #e8fff3; font-size: 10px; }
.badge-warning-soft { background-color: #fff0f3; color: #ff5e14; font-size: 10px; padding: 8px 16px; }
.badge-danger-soft { background-color: #fff5f5; font-size: 10px; }
.wishlist-cart-btn { background-color: #ff5e14; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.btn-disabled-40 { width: 40px; height: 40px; cursor: not-allowed; }
.w-80-pct { width: 80%; }
.bg-light-gray { background: #f1f3f5; }
.tag-indicator { width: 32px; height: 4px; background-color: #555de8; }
.fw-600-primary { font-weight: 600; color: var(--primary-color); }
.map-iframe-style { border: 0; min-height: 450px; }

/* Blog details share icons */
.share-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.share-icon:hover {
	transform: translateY(-3px);
	filter: brightness(1.06);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.bg-facebook {
	background: linear-gradient(135deg, #1877f2, #0f5ecc);
}

.bg-twitter {
	background: linear-gradient(135deg, #1da1f2, #0a75c2);
}

.bg-pinterest {
	background: linear-gradient(135deg, #e60023, #b4001c);
}

/* Gallery click and popup cleanup */
.gallery-popup-link {
	position: absolute;
	inset: 0;
	z-index: 10;
}

/* Hide only description in GLightbox, keep title/caption visible */
.gslide-desc {
	display: none !important;
}

/* Category / Archive links */
.category-link { transition: all 0.3s ease; }
.category-link:hover { color: #ff5e14 !important; padding-left: 5px; }

/* ========= Product Detail Page ========= */
.product-main-image {
	transition: opacity 0.2s ease;
	object-fit: contain;
	max-height: 500px;
	background: #f8f9fa;
}

.main-image-wrapper {
	background: #f8f9fa;
}

.product-thumb {
	width: 90px;
	height: 90px;
	cursor: pointer;
	border: 2px solid transparent !important;
	transition: border-color 0.25s ease, transform 0.25s ease;
	flex-shrink: 0;
}

.product-thumb:hover {
	border-color: #ff5e14 !important;
	transform: translateY(-2px);
}

.product-thumb.active {
	border-color: #ff5e14 !important;
	box-shadow: 0 2px 8px rgba(255, 94, 20, 0.25);
}

.qty-wrapper {
	border-color: #dee2e6 !important;
}

.qty-wrapper .qty-input {
	width: 50px;
	font-weight: 600;
	font-size: 16px;
	background: transparent;
	-moz-appearance: textfield;
}

.qty-wrapper .qty-input::-webkit-inner-spin-button,
.qty-wrapper .qty-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-btn {
	font-size: 12px;
	color: #333;
	transition: background 0.2s ease;
}

.qty-btn:hover {
	background: #ff5e14 !important;
	color: #fff;
}

/* Product Tabs */
.product-tab-btn {
	border: none;
	background: #f1f3f5;
	color: #333;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.product-tab-btn:hover {
	color: #ff5e14;
	background: #fff3ec;
}

.product-tab-btn.active {
	background: #ff5e14 !important;
	color: #fff !important;
}

.product-tab-content {
	border-color: #e9ecef !important;
}

/* Review Stars (Interactive) */
.review-star {
	font-size: 22px;
	cursor: pointer;
	transition: color 0.15s ease, transform 0.15s ease;
	color: #ccc;
}

.review-star:hover {
	transform: scale(1.15);
}

.tmp-blog-area2 img {
    height: 300px;
    object-fit: cover;
}

.tag-post {
    margin-top: 30px;
}
.tag-post h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.tag-post a {
    margin-right: 10px;
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.90) url(loading.gif) no-repeat center center;
    z-index: 10000;
}