
/* ----------------------------------- */
/* Base Styles & Variables */
/* ----------------------------------- */
:root {
	--primary: #1e2a44;
	--primary-dark: #151e33;
	--accent: #c69f26;
	--accent-light: #e0b83e;
	--accent-gradient: linear-gradient(135deg, #c69f26 0%, #e0b83e 100%);
	--white: #ffffff;
	--off-white: #f8f9fa;
	--text: #333333;
	--text-light: #666666;
	--light-gray: #e9ecef;
	--spacing-unit: 10px;
	--transition: all 0.4s cubic-bezier(0.3, 0, 0.2, 1);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
	--border-radius: 12px;
	--border-radius-lg: 24px;
	--shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	--border-radius-large: 50px;
	--border-radius: 16px;
}

body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	line-height: 1.7;
	color: var(--text);
	background-color: var(--off-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.3;
}

a {
	text-decoration: none;
	transition: var(--transition);
}

.section {
	padding: 40px 0;
	position: relative;
}

.section-title {
	position: relative;
	margin-bottom: 40px;
	text-align: center;
}

.section-title h2 {
	font-size: 2.8rem;
	color: var(--primary);
	margin-bottom: 20px;
}

@media only screen and (max-width:767px) {
	.section-title h2 {
		font-size: 1.8rem;
		color: var(--primary);
		margin-bottom: 20px;
	}
} 
.section-title .subtitle {
	font-size: 1.1rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
}

.section-title .divider {
	width: 80px;
	height: 4px;
	background: var(--accent);
	margin: 0 auto;
	border-radius: 2px;
}



.hero-title {
	font-size: clamp(2rem, 5vw, 4.5rem);
	font-weight: 900;
	margin-bottom: 1.25rem;
	text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.7);
	color: var(--primary-dark);
	text-transform: uppercase;
}


.hero-titledetails {
	font-size: clamp(2rem, 5vw, 4.5rem);
	font-weight: 900;
	margin-bottom: 12.25rem;
	text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.7);
	color: var(--accent);
	text-transform: uppercase;
}



/* ----------------------------------- */
/* Button Styles */
/* ----------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 20px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 8px;
	transition: var(--transition);
	letter-spacing: 1px;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: var(--transition);
}

.btn-solid {
	background: var(--accent);
	color: var(--white);
	box-shadow: var(--shadow);
}

.btn-solid::before {
	background: var(--accent-light);
	opacity: 0;
}

.btn-solid:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.btn-solid:hover::before {
	opacity: 1;
}

.btn-outline {
	background: transparent;
	color: var(--accent);
	border: 2px solid var(--accent);
}

.btn-outline:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.btn i {
	margin-right: 10px;
	font-size: 16px;
}

/* ----------------------------------- */
/* Top Bar */
/* ----------------------------------- */
.top-bar {
	background: var(--primary-dark);
	color: var(--white);
	padding: 10px 0;
	font-size: 14px;
	position: relative;
	z-index: 1001;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.top-bar .contact-info {
	display: flex;
	gap: 15px;
}

.top-bar .contact-info a {
	color: var(--white);
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	padding: 8px 20px;
	border: 1px solid var(--accent);
	border-radius: 50px;
	transition: var(--transition);
}

.top-bar .contact-info i {
	margin-right: 8px;
	color: var(--white);
	font-size: 14px;
}

.top-bar .contact-info a:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-2px);
}

.top-bar .social-icons {
	display: flex;
	gap: 10px;
}

.top-bar .social-icons a {
	width: 32px;
	height: 32px;
	background: var(--light-gray);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: var(--transition);
}

.top-bar .social-icons a:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-2px);
}

.top-bar .social-icons a i {
	font-size: 14px;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
}


@media only screen and (max-width: 767px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 0;
		width: 100%;
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: calc(var(--bs-gutter-x) * .5);
		margin-right: auto;
		margin-left: auto;
	}


}

/* ----------------------------------- */
/* Navbar */
/* ----------------------------------- */
.navbar {
	background: var(--white);
	padding: 0;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
	box-shadow: var(--shadow);
}



@media only screen and (max-width:767px){
	.navbar {
		position: absolute; 
		background: transparent; 
	}
}

.navbar.scrolled {
	background: var(--white);
	box-shadow: var(--shadow-hover);
	padding: 0;
	z-index: 11111;
}

.navbar-brand img {
	height: 90px;
	transition: var(--transition);
	transform: scale(1.05);
}

@media only screen and (max-width:767px){
	.navbar-brand img {
		height: 70px;
	}
}

.navbar-brand img:hover {
	transform: scale(1.05);
}

.navbar-nav {
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.navbar-nav .nav-link {
	color: var(--primary) !important;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 20px !important;
	position: relative;
	letter-spacing: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--accent) !important;
}

.navbar-nav .dropdown-menu {
	background: var(--white);
	border: none;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-hover);
	margin-top: 15px;
	padding: 10px 0;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown-menu.show {
	opacity: 1;
	transform: translateY(0);
}

.navbar-nav .dropdown-menu .dropdown-item {
	color: var(--primary);
	padding: 10px 25px;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
}

.navbar-nav .dropdown-menu .dropdown-item::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	opacity: 0;
	transition: var(--transition);
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
	background: transparent;
	color: var(--accent);
	padding-left: 35px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover::before {
	opacity: 1;
	left: 20px;
}

.cart-section {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-left: auto;
}

.cart-section .btn {
	padding: 10px 25px;
	font-size: 14px;
}

.cart-section .button-service,
.cart-section .search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--light-gray);
	border-radius: 50%;
	transition: var(--transition);
}

.cart-section .button-service:hover,
.cart-section .search-icon:hover {
	background: var(--accent);
}

.cart-section .button-service i,
.cart-section .search-icon i {
	font-size: 16px;
	color: var(--primary);
	transition: var(--transition);
}

.cart-section .button-service:hover i,
.cart-section .search-icon:hover i {
	color: var(--white);
}

.button-service {
	border: none;
	cursor: pointer;
	background: none;
}

.navbar-toggler {
	border: none;
	padding: 8px;
	font-size: x-large;;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 42, 68, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 1.2em;
	height: 1.2em;
}

/* ----------------------------------- */
/* Hero Banner */
/* ----------------------------------- */
.hero-banner {
	position: relative;
	max-height: 565px;
	min-height: 555px;
	overflow: hidden;
}

.hero-banner .owl-carousel .item {
	position: relative;
	height: 100vh;
	max-height: 600px;
	min-height: 600px;
}

.hero-banner .owl-carousel .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: kenBurns 50s infinite ease-in-out;
}

@keyframes kenBurns {
	0% { transform: scale(1) translateX(0); }
	50% { transform: scale(1.2) translateX(-5%); }
	100% { transform: scale(1) translateX(0); }
}

.hero-banner .hero-content-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;a
	align-items: center;
}

.hero-banner .hero-content-wrapper::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(30, 42, 68, 0.8) 0%, rgba(30, 42, 68, 0.6) 100%);
	opacity: 0.4;
	z-index: -1;
} 

/*@media only screen and (max-width:767px){
	.hero-banner .hero-content-wrapper::before {
		opacity: 0.7;
	} 
}    */                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 

.hero-banner .hero-content {
	color: var(--white);
	padding: 0 20px;
	position: relative;
	z-index: 3;
	max-width: 700px;
	top: 60%;
}

.hero-banner .hero-content .subtitle {
	display: inline-block;
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
}

.hero-banner .hero-content h1 {
	font-size: 3.1rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-banner .hero-content p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	opacity: 0.9;
	font-weight: 300;
}

.hero-banner .hero-content .button-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* ----------------------------------- */
/* About La Boom Section */
/* ----------------------------------- */
.about-section {
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.about-section .about-subtitle {
	font-size: 1.1rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	font-weight: 500;
}

.about-section .about-title {
	font-size: 2.1rem;
	color: var(--primary);
	margin-bottom: 20px;
	font-weight: 700;
}

.about-section .about-content p {
	font-size: 1rem;
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-section .image-cinematic {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.about-section .image-cinematic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.about-section .image-cinematic .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(30, 42, 68, 0.3), rgb(71 67 0 / 79%));
	transition: var(--transition);
}



.about-section .image-cinematic .image-caption {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: var(--white);
}

.about-section .image-cinematic .image-caption span {
	font-size: 1.3rem;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.about-section .image-cinematic .caption-underline {
	width: 50px;
	height: 3px;
	background: var(--accent);
	margin-top: 10px;
	transition: var(--transition);
}

.about-section .image-cinematic:hover .caption-underline {
	width: 70px;
}

.about-section .image-cinematic:hover img {
	transform: scale(1.05);
}

/* ----------------------------------- */
/* Services Section */
/* ----------------------------------- */
.services-section {
	background: var(--off-white);
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}



.section-header h2 {
	font-size: 2.8rem;
	color: var(--primary);
	margin-bottom: 20px;
	font-weight: 700;
}

.section-header .subtitle {
	font-size: 1.1rem;
	color: var(--accent);
	max-width: 700px;
	margin: 0 auto;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
}

.section-header .divider {
	width: 80px;
	height: 4px;
	background: var(--accent);
	margin: 20px auto 0;
	border-radius: 2px;
}

.service-card {
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	background: var(--white);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.ribbon {
	width: 70px;
	height: 70px;
	background: var(--accent);
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 70px;
	color: var(--white);
	font-weight: 600;
	font-size: 1.2rem;
	clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
	z-index: 1111;
}

.service-image-container {
	width: 100%;
	height: 350px;
	position: relative;
	overflow: hidden;
}

.service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to bottom, #00000082 95%, #ffc1077a 100%);
}

.service-card:hover .service-image {
	transform: scale(1.05);
}

.service-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 25px;
	z-index: 2;
	transition: var(--transition);
}

.service-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--white);
	word-spacing: 5px;
}

.service-content p {
	font-size: 0.95rem;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.btn-service {
	display: inline-block;
	padding: 8px 20px;
	background: transparent;
	color: var(--white);
	border: 2px solid var(--accent);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	transition: var(--transition);
}

.service-card:hover .btn-service {
	background: var(--accent);
	color: var(--white);
}

.view-all-btn {
	text-align: center;
	margin-top: 40px;
}

/* ----------------------------------- */
/* Process Section */
/* ----------------------------------- */
.process-section {
	background: var(--white);
}

.process-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 0 20px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent);
	z-index: 1;
}

.process-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}

.process-step .step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	box-shadow: var(--shadow);
}

.process-step .icon-wrapper {
	width: 100px;
	height: 100px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 2px solid var(--primary);
}

.process-step:hover .icon-wrapper {
	transform: translateY(-5px);
	background: var(--accent);
	z-index: -9999;
	position: relative;
	border: 2px solid var(--accent);
}

.process-step .icon-wrapper i {
	font-size: 2rem;
	color: var(--accent);
	transition: var(--transition);
}

.process-step:hover .icon-wrapper i {
	color: var(--white);
}

.process-step h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 10px;
}

.process-step p {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 0;
}

/* ----------------------------------- */
/* Fleets Section */
/* ----------------------------------- */


.hero-fleets {
	padding: 3.125rem 0;
	background: linear-gradient(135deg, var(--light-color) 0%, var(--light-soft) 100%);
}

.fleet-card img {
	width: 100%;
	object-fit: cover;
}

.fleet-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.fleet-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.fleet-card:hover {
	transform: translateY(-5px);
}

.fleet-card img {
	width: 100%;
	object-fit: cover;
}

.fleet-card .card-body {
	padding: 1.5rem;
}

.fleet-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.9375rem;
	color: var(--primary-dark);
}

.fleet_details hr {
	width: 50%;
	height: 4px;
	background: var(--accent-bright);
	border: none;
	margin: 0 auto 0.9375rem;
}

.fleet_info {
	display: flex;
	justify-content: center;
	gap: 53px;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}


.gallery_product {
	margin-bottom: 15px;
}


.fleet_info p,
.fleet_details p {
	margin: 0;
	font-size: 0.9rem;
}


.start_point_key{
	margin-left: 28px;
}

.gallery-section {
	background: var(--off-white);
	padding: 60px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h1 {
	font-weight: 700;
	font-size: 2.8rem;
	color: var(--primary);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-header h1::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 4px;
	background: var(--accent);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.section-header p {
	color: var(--text-light);
	font-size: 1.1rem;
	max-width: 700px;
	margin: 20px auto 0;
	line-height: 1.6;
	font-family: 'Roboto', sans-serif;
}

.filter-controls {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-btn {
	padding: 8px 20px;
	background: var(--light-gray);
	border: 1px solid var(--accent);
	color: var(--text);
	border-radius: 30px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active,
.filter-btn:focus {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	outline: none;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	padding: 0 15px;
}

@media only screen and (max-width:767px) {
	.gallery-grid {
		display: block;
	}
}


.gallery-item {
	position: relative;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: var(--transition);
	opacity: 0;
	animation: slideIn 0.5s ease forwards;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.data_info {
	padding: 12px;
	background: var(--white);
	text-align: center;
}

.data_info h4 {
	font-size: 1.2rem;
	color: var(--primary);
	margin-bottom: 10px;
}

.data_info p {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 15px;
}

.btn.btn-outline {
	display: inline-block;
	padding: 7px 20px;
	border: 2px solid var(--accent);
	color: var(--accent);
	border-radius: 8px;
	text-transform: uppercase;
	font-weight: 600;
	transition: var(--transition);
}

.btn.btn-outline:hover,
.btn.btn-outline:focus {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-2px);
	outline: none;
}

@keyframes slideIn {
	to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------- */
/* Review Section */
/* ----------------------------------- */
.review-section {
	background: var(--white);
}

.review-card {
	background: var(--white);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	position: relative;
	overflow: hidden;
	border-left: 4px solid var(--accent);
}

.review-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, var(--primary), var(--accent));
}

.reviewer-img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--white);
	box-shadow: var(--shadow);
}

.foot {
	padding: 0px 30px;
}

@media only screen and (max-width:767px) {
	.foot {
		padding: 10px!important;
	}
}

.reviewer-name {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--primary);
}

.reviewer-location {
	color: var(--text-light);
	font-size: 0.9rem;
}

.rating {
	color: var(--accent);
	margin: 15px 0;
	font-size: 1.1rem;
}

.review-text {
	color: var(--text-medium);
	line-height: 1.7;
	position: relative;
	padding-left: 25px;
	font-size: 0.95rem;
}

.review-text:before {
	content: '\201C';
	font-size: 4rem;
	color: rgba(67, 97, 238, 0.1);
	position: absolute;
	top: -20px;
	left: -15px;
	font-family: Georgia, serif;
	line-height: 1;
}

.review-date {
	display: block;
	margin-top: 20px;
	font-size: 0.8rem;
	color: var(--text-light);
	text-align: right;
}

.quote-icon {
	position: absolute;
	right: 30px;
	bottom: 20px;
	color: rgb(3 18 90 / 17%);
	font-size: 4rem;
	z-index: 0;
}



.boxneww1 {
	padding: 25px 35px 7px;
	border-radius: 10px;
	background: var(--accent);
}



/* ----------------------------------- */
/* Newsletter Section */
/* ----------------------------------- */
.newsletter-section {
	background: linear-gradient(rgba(30, 42, 68, 0.9), rgba(30, 42, 68, 0.9)), url(../images/parafoot.jpg) no-repeat center center;
	background-size: cover;
	color: var(--white);
	position: relative;
}

.newsletter-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-content h3 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	color: var(--white);
	font-weight: 700;
}

.newsletter-content p {
	font-size: 1.1rem;
	margin-bottom: 25px;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	max-width: 600px;
	margin: 0 auto;
	background: var(--white);
	border-radius: 50px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.newsletter-form .form-control {
	border: none;
	height: 50px;
	padding: 0 20px;
	font-size: 14px;
	flex: 1;
}

.newsletter-form .form-control:focus {
	box-shadow: none;
}

.newsletter-form .btn {
	border-radius: 50px;
	padding: 0 30px;
	height: 50px;
	font-size: 14px;
}







.visible-xs{
	display: none!important;
}

.hidden-xs{
	display: block!important;
}

@media only screen and (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}

	.hidden-xs {
		display: none !important;
	}

}











/* ----------------------------------- */
/* Footer */
/* ----------------------------------- */
.footer {
	background: var(--primary-dark);
	color: var(--white);
	position: relative;
	padding: 60px 0 20px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
	display: inline-block;
}

.footer-logo span {
	color: var(--accent);
}

.footer-about p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.footer-contact-info {
	margin-bottom: 20px;
}

.footer-contact-info p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}

.footer-contact-info i {
	color: var(--accent);
	margin-right: 10px;
	margin-top: 5px;
	font-size: 15px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--light-gray);
	border-radius: 50%;
	color: var(--primary);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-3px);
}

.footer-links h5 {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: var(--transition);
}

.footer-links a i {
	margin-right: 8px;
	color: var(--accent);
	font-size: 12px;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent);
	padding-left: 5px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
}

.footer-bottom a {
	color: var(--accent);
	font-weight: 500;
}

/* ----------------------------------- */
/* Back to Top */
/* ----------------------------------- */
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
}

/* ----------------------------------- */
/* Animation Classes */
/* ----------------------------------- */
.animate-up {
	transform: translateY(30px);
	opacity: 0;
	transition: var(--transition);
}

.animate-up.show {
	transform: translateY(0);
	opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------- */
/* Custom Scrollbar */
/* ----------------------------------- */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-light);
}









/* ----------------------------------- */
/* Responsive Styles - 768px (Tablets in portrait and larger phones) */
/* ----------------------------------- */
@media (max-width: 768px) {
	/* Top Bar */
	.top-bar .container {
		flex-direction: column;
		gap: 10px;
		padding: 10px;
	}
	.top-bar .contact-info {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.top-bar .contact-info a {
		padding: 6px 16px;
		font-size: 13px;
	}
	.top-bar .social-icons a {
		width: 28px;
		height: 28px;
	}

/* Navbar */
.navbar {
	padding: 10px 0;
}

@media only screen and (max-width:767px) {
	.navbar {
		padding: 0;
	}
}
.navbar-collapse {
	background: var(--white);
	padding: 15px;
	border-radius: var(--border-radius);
	margin-top: 10px;
	box-shadow: var(--shadow);
}
.navbar-nav {
	justify-content: flex-start;
}
.navbar-nav .nav-link {
	padding: 10px 0 !important;
	font-size: 14px;
}
.navbar-nav .dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	box-shadow: none;
	margin: 0;
	padding: 5px 0;
}
.cart-section {
	margin-top: 10px;
	justify-content: flex-start;
	gap: 10px;
}
.cart-section .btn {
	padding: 8px 20px;
	font-size: 13px;
}
.cart-section .button-service,
.cart-section .search-icon {
	width: 36px;
	height: 36px;
}

/* Offcanvas Menu */
.offcanvas-body {
	padding: 10px;
}
.offcanvas-body ul li a {
	font-size: 14px;
	padding: 8px;
}

/* Hero Banner */
.hero-banner {
	min-height: 500px;
}

.hero-banner .hero-content {
	text-align: center;
	padding: 0 15px;
	top: 20%;
}
.hero-banner .hero-content h1 {
	font-size: 2.8rem; /* Adjusted for tablets */
}
.hero-banner .hero-content .subtitle {
	font-size: 1rem;
}
.hero-banner .hero-content p {
	font-size: 1rem;
	margin-bottom: 20px;
}
.hero-banner .hero-content .button-group {
	justify-content: center;
	gap: 10px;
}
.hero-banner .owl-nav {
	padding: 0 15px;
}
.hero-banner .owl-nav button {
	font-size: 1rem;
}

/* About La Boom Section */
.about-section .image-cinematic {
	height: 300px;
	margin-bottom: 20px;
}
.about-section .image-cinematic .image-caption span {
	font-size: 1.2rem;
}
.about-section .about-title {
	font-size: 2.2rem;
}
.about-section .about-content p {
	font-size: 0.95rem;
}

/* Services Section */
.service-image-container {
	height: auto;
}
.section-header h2 {
	font-size: 2.2rem;
}
.section-header .subtitle {
	font-size: 1rem;
}
.service-content {
	padding: 20px;
}
.service-content h3 {
	font-size: 1.4rem;
}
.service-content p {
	font-size: 0.9rem;
}
.btn-service {
	font-size: 0.85rem;
	padding: 6px 16px;
}

/* Process Section */
.process-steps {
	flex-wrap: wrap;
	gap: 20px;
	padding: 0;
}
.process-step {
	flex: 0 0 calc(50% - 20px);
	margin-bottom: 20px;
}
.process-steps::before {
	display: none;
}
.process-step .icon-wrapper {
	width: 80px;
	height: 80px;
}
.process-step .icon-wrapper i {
	font-size: 1.8rem;
}
.process-step h3 {
	font-size: 1.2rem;
}
.process-step p {
	font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
	padding: 0 10px;
}
.gallery-item {
	border-radius: 8px;
}
.gallery-caption h4 {
	font-size: 1rem;
}
.gallery-caption p {
	font-size: 0.8rem;
}
.filter-btn {
	padding: 6px 16px;
	font-size: 0.9rem;
}
.zoom-icon {
	width: 36px;
	height: 36px;
}
.category-badge {
	font-size: 0.7rem;
	padding: 4px 10px;
}

/* Reviews Section */
.review-card {
	padding: 20px;
	margin-bottom: 20px;
}
.reviewer-img {
	width: 60px;
	height: 60px;
}
.reviewer-info {
	margin-left: 15px;
}
.reviewer-name {
	font-size: 1.1rem;
}
.reviewer-location {
	font-size: 0.85rem;
}
.rating {
	font-size: 1rem;
}
.review-text {
	font-size: 0.9rem;
	padding-left: 20px;
}
.review-date {
	font-size: 0.75rem;
}

/* Newsletter Section */
.newsletter-content h3 {
	font-size: 2.2rem;
}
.newsletter-content p {
	font-size: 1rem;
}
.newsletter-form {
	flex-direction: column;
	background: transparent;
	box-shadow: none;
	gap: 10px;
	max-width: 400px;
}
.newsletter-form .form-control {
	border-radius: 50px;
	height: 45px;
	font-size: 13px;
	border: 1px solid var(--white);
}
.newsletter-form .btn {
	height: 45px;
	width: 100%;
	font-size: 13px;
}

/* Footer */
.footer {
	padding: 40px 0 20px;
}
.footer-widget {
	margin-bottom: 20px;
}
.footer-logo {
	font-size: 1.6rem;
}
.footer-about p {
	font-size: 0.95rem;
}
.footer-links h5 {
	font-size: 1.1rem;
}
.footer-links a {
	font-size: 13px;
}
.footer-contact-info p {
	font-size: 13px;
}
}

/* ----------------------------------- */
/* Responsive Styles - 576px (Smaller phones) */
/* ----------------------------------- */
@media (max-width: 576px) {
	/* Top Bar */
	.top-bar .contact-info a {
		font-size: 12px;
		padding: 5px 12px;
	}
	.top-bar .social-icons a {
		width: 26px;
		height: 26px;
	}

/* Navbar */
.navbar-nav .nav-link {
	font-size: 13px;
}
.cart-section .btn {
	padding: 6px 16px;
	font-size: 12px;
}
.cart-section .button-service,
.cart-section .search-icon {
	width: 32px;
	height: 32px;
}

/* Hero Banner */
.hero-banner {
	min-height: 400px;
}

.hero-banner .hero-content h1 {
	font-size: 2rem; /* Optimized for small phones */
	margin-top: 5%;
}
.hero-banner .hero-content .subtitle {
	font-size: 0.9rem;
}
.hero-banner .hero-content p {
	font-size: 0.9rem;
}
.hero-banner .hero-content .button-group {
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.hero-banner .hero-content .btn {
	padding: 10px 24px;
	font-size: 12px;
}

/* About La Boom Section */
.about-section .image-cinematic {
	height: 250px;
}
.about-section .about-title {
	font-size: 1.8rem;
}
.about-section .about-subtitle {
	font-size: 0.9rem;
}
.about-section .about-content p {
	font-size: 0.9rem;
}

/* Services Section */
.service-image-container {
	height: auto;
}
.section-header h2 {
	font-size: 1.8rem;
}
.section-header .subtitle {
	font-size: 0.9rem;
}
.service-content h3 {
	font-size: 1.3rem;
}
.service-content p {
	font-size: 0.85rem;
}
.btn-service {
	font-size: 0.8rem;
	padding: 5px 14px;
}

/* Process Section */
.process-step {
	flex: 0 0 100%; /* Single-column for small phones */
	margin-bottom: 15px;
}
.process-step .icon-wrapper {
	width: 70px;
	height: 70px;
}
.process-step .icon-wrapper i {
	font-size: 1.6rem;
}
.process-step h3 {
	font-size: 1.1rem;
}
.process-step p {
	font-size: 0.85rem;
}

/* Gallery Section */
.gallery-grid {
	grid-template-columns: 1fr; /* Single-column for small phones */
	gap: 10px;
}
.gallery-item {
	border-radius: 6px;
	margin-bottom: 15px;
}
.gallery-caption h4 {
	font-size: 0.9rem;
}
.gallery-caption p {
	font-size: 0.75rem;
}
.filter-btn {
	padding: 5px 12px;
	font-size: 0.85rem;
}
.zoom-icon {
	width: 32px;
	height: 32px;
}
.category-badge {
	font-size: 0.65rem;
	padding: 3px 8px;
}

/* Reviews Section */
.review-card {
	padding: 15px;
}
.reviewer-img {
	width: 50px;
	height: 50px;
}
.reviewer-info {
	margin-left: 10px;
}
.reviewer-name {
	font-size: 1rem;
}
.reviewer-location {
	font-size: 0.8rem;
}
.rating {
	font-size: 0.9rem;
}
.review-text {
	font-size: 0.85rem;
	padding-left: 15px;
}
.review-text:before {
	font-size: 3rem;
	top: -15px;
	left: -10px;
}
.review-date {
	font-size: 0.7rem;
}
.quote-icon {
	font-size: 3rem;
	right: 15px;
	bottom: 15px;
}

/* Newsletter Section */
.newsletter-content h3 {
	font-size: 1.8rem;
}
.newsletter-content p {
	font-size: 0.9rem;
}
.newsletter-form {
	max-width: 300px;
}
.newsletter-form .form-control {
	height: 40px;
	font-size: 12px;
}
.newsletter-form .btn {
	height: 40px;
	font-size: 12px;
}

/* Footer */
.footer-logo {
	font-size: 1.4rem;
}
.footer-about p {
	font-size: 0.9rem;
}
.footer-links h5 {
	font-size: 1rem;
}
.footer-links a {
	font-size: 12px;
}
.footer-contact-info p {
	font-size: 12px;
}
.footer-bottom p {
	font-size: 12px;
}
}






























/* SERVICES SECTION  */ 
.custom-services {

}

.custom-services-inner:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.custom-services-inner {
	position: relative;
	min-height: 350px;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	background: var(--white);
	height: 100%;
}



.custom-services-img {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.custom-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.custom-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: rgba(0,0,0,0.5);
/*  background: linear-gradient(to bottom, #00000069 95%, #ffc1077a 100%);*/
}

.custom-services-inner:hover .custom-image {
	transform: scale(1.05);
}





@media all and (max-width: 768px) {

	.custom-services-hover {
		bottom:-270px!important;
	}
	.formo {
		padding-left:0px!important;
		padding-right:0px!important;
	}
}

.custom-services-inner:hover .custom-services-hover {
	bottom: 0!important;
}

.custom-services-hover {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	transition: bottom 0.5s ease;
	z-index: 999;
}

.custom-services-hover * {
	color: #fff
}

.csh-content {
	margin-bottom: 20px
}

.csh-title {
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px
}

.csh-content p {
	line-height: 1.4;
	font-size: 16px;
	font-family: 'Playfair Display', serif;
}

.csh-cta a {
	font-size: 19px;
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-family: Roboto,sans-serif;
	letter-spacing: 0;
	color: var(--accent);
	text-decoration: underline
}

.csh-cta a:hover {
	color: #fff;
	text-decoration: underline;
}

.csh-cta a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 54px;
	height: 2px;
	background: #fff;
	margin-right: 15px
}

.custom-services-title {
	font-size: 20px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	width: 100%;
	padding: 20px 0!important
}

.custom-services-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.custom-services-img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.custom-services .read-more-title {
	font-size: 12px;
	float: right;
	margin-top: 10px;
	color: #fff!important;
	display: none
}

.custom-service-title-inner {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--white);
	word-spacing: 5px;
	font-family: 'Playfair Display', serif;
}

.custom-services-title::after {
	content: "";
	display: table;
	clear: both
}



@media all and (max-width: 768px) {
	.custom-service-title-inner {
		float:none;
		text-align: left;
		display: block;
		width: 100%
	}

	.custom-services .read-more-title {
		text-align: right;
		width: auto;
		position: absolute;
		right: 20px;
		top: 14px;
		font-size: 14px;
		text-decoration: none;
		font-weight: 700;
		text-transform: uppercase;
		font-family: Roboto,sans-serif;
		letter-spacing: 0;
		color: #fff!important
	}
}

@media all and (max-width: 768px) {
	.custom-services .read-more-title {
		display:block!important
	}
}

.ribbon {
	width: 70px;
	height: 70px;
	background: var(--accent);
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 70px;
	color: var(--white);
	font-weight: 600;
	font-size: 1.2rem;
	clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
	z-index: 1111;
}

@media only screen and (max-width:767px) {
	.ribbon {
		width: 60px;
		height: 60px;
		line-height: 55px;
	}
}