/* --- General Theme Settings --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body { 
	font-family: "Poppins", sans-serif; 
	color: #333; 
	overflow-x: hidden;
	position: relative;
}
.fw-bold {
    font-weight: 600 !important;
}
.bg-primary-custom { background-color: #1a1a1a; color: white; }
.text-primary-custom { color: #eb4d4b; } 
.bg-red-theme { background-color: #d32f2f; color: white; }
.section-padding { padding: 90px 0 40px; }
.letter-spacing-1 { letter-spacing: 3px; text-transform: uppercase; }
.section-title {
	font-size: 38px;
	font-weight: 700;
	color: #000000;
}

/* --- CONTAINER WIDTH SETTING --- */
@media (min-width: 1200px) {
	.container {
		max-width: 1260px !important;
	}
}

/* --- Header / Navbar --- */
.navbar { letter-spacing: 0.3px; }
.navbar-nav .nav-link {
	font-size: 15px;
	font-weight: 500;
	color: #000000 !important;
	padding: 8px 12px !important;
	transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover { color: #eb4d4b !important; }
.navbar-nav .dropdown-toggle::after { display: none; }

.dropdown-menu {
	border-radius: 0;
	border: 1px solid #eee;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	margin-top: 0;
	left: 0 !important; 
	right: auto !important;
}
.dropdown-item:hover { background-color: #f8f9fa; color: #eb4d4b; }

@media (min-width: 992px) {
	.navbar .nav-item.dropdown:hover .dropdown-menu { display: block; animation: fadeDropdown 0.3s ease; }
}
@keyframes fadeDropdown { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.btn-black {
	background-color: #000000; color: #ffffff; border-radius: 0; 
	padding: 12px 28px; font-size: 15px; font-weight: 500;
	border: 1px solid #000000; transition: all 0.3s ease;
}
.btn-black:hover { background-color: #e30010; color: #ffffff; }

.btn-outline-sharp {
	background-color: #ffffff; color: #000000; border: 1px solid #000000;
	border-radius: 0; padding: 10px 30px; font-weight: 500; transition: all 0.3s ease;
}
.btn-outline-sharp:hover { background-color: #ffffff !important; color: #000000; border: 1px solid #000000; }

/* --- CAROUSEL HERO SECTION --- */
.hero-carousel-section { position: relative; width: 100%; height: 60vh; min-height: 400px; background-color: #000; overflow: hidden; }
.carousel, .carousel-inner, .carousel-item { height: 100%; }
.carousel-item { transition: transform 0.8s ease-in-out; overflow: hidden; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); }
.carousel-item.active img { animation: smoothZoom 10s linear forwards; }
@keyframes smoothZoom { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }

.slide-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.35); z-index: 1; }

.hero-text-block {
	position: absolute; bottom: 0; left: 5%; 
	background-color: rgb(0 0 0 / 50%); 
	padding: 40px 60px 50px 40px; z-index: 2; opacity: 0; transform: translateY(100%); 
}
.carousel-item.active .hero-text-block { animation: slideUpBox 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: 0.6s; }
@keyframes slideUpBox { 0% { opacity: 0; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } }

.hero-text-block h6 { color: #E30010; font-size: 34px; font-weight: 700; letter-spacing: 4px; margin-bottom: 10px; text-transform: uppercase; }
.hero-text-block h1 { color: #ffffff; font-size: 35px; font-weight: 700; margin: 0; letter-spacing: 1px; }

/* --- GLOBAL STICKY ELEMENTS --- */
.vertical-cta-tab {
	position: fixed; right: 0; top: 50%; transform: translateY(-50%) rotate(180deg);
	background-color: #000000; color: #ffffff; padding: 20px 10px; writing-mode: vertical-rl; 
	text-align: center; font-size: 15px; font-weight: 400; letter-spacing: 1.5px; text-decoration: none;
	z-index: 1040; transition: background-color 0.3s; border-radius: 4px 4px 0 0;
}
.vertical-cta-tab:hover { background-color: #eb4d4b; color: #ffffff; }

.scroll-top-btn {
	position: fixed; bottom: 30px; right: 30px; background-color: #000; color: #fff;
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
	text-decoration: none; z-index: 1030; transition: 0.3s; border-radius: 4px;
}
.scroll-top-btn:hover { background-color: #eb4d4b; color: #fff; }

/* --- SLIDE-OUT FORM (OFFCANVAS) --- */
.custom-offcanvas {
	background-color: #f8f9fa; /* Matches reference image background */
	width: 450px;
	max-width: 100vw;
	border-left: none;
	box-shadow: -5px 0 25px rgba(0,0,0,0.1);
	z-index: 1060;
}
.custom-close-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: #d32f2f; /* Red */
	color: white;
	border: none;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease;
}
.custom-close-btn:hover {
	background-color: #b71c1c;
}
.slide-input {
	border-radius: 0;
	border: 1px solid #eaeaea;
	padding: 16px 20px;
	font-size: 0.95rem;
	color: #495057;
	background-color: #ffffff;
	box-shadow: none;
}
.slide-input:focus {
	border-color: #0b2239;
	box-shadow: none;
}
.slide-input::placeholder {
	color: #555;
}
.slide-recaptcha {
	background: #fdfdfd;
	border: 1px solid #eaeaea;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 2px;
	width: 100%;
	max-width: 250px;
}
.slide-submit-btn {
	background-color: #0b2239; /* Dark blue */
	color: white;
	border-radius: 0;
	padding: 14px 35px;
	font-size: 1rem;
	border: none;
	transition: opacity 0.3s ease;
}
.slide-submit-btn:hover {
	opacity: 0.9;
	color: white;
}

/* --- ABOUT SECTION --- */
.about-image-wrapper { position: relative; z-index: 1; padding-left: 55px;}
.decorative-a {
	position: absolute; top: 50%; left: -15%; font-size: 400px; font-weight: 900;
	color: rgba(255, 255, 255, 0.95); -webkit-text-stroke: 3px #dcdcdc; line-height: 1;
	z-index: 5; text-shadow: 15px 15px 40px rgba(0,0,0,0.2); pointer-events: none; animation: swingUpDown 5s ease-in-out infinite; 
}
@keyframes swingUpDown { 0% { transform: translateY(-50%); } 50% { transform: translateY(-40%); } 100% { transform: translateY(-50%); } }

/* --- GENERAL CARDS & BLOCKS --- */
.content-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: 1.5rem; padding: 3rem; position: relative; overflow: hidden; }
.content-card-gray { background: #f8f9fa; border: 1px solid rgba(0,0,0,0.05); border-radius: 1.5rem; padding: 3rem; }
.image-rounded { border-radius: 1.5rem; object-fit: cover; width: 100%; height: 100%; min-height: 400px; }

/* --- EXPERTISE LIST --- */
.custom-expertise-list li { position: relative; display: flex; align-items: flex-start; margin-bottom: 0; padding: 0px; transition: all 0.3s ease; border-radius: 8px; z-index: 2; }
.custom-expertise-list li i { color: #eb4d4b; font-size: 1.2rem; margin-right: 12px; margin-top: 2px; z-index: 2; }
.custom-expertise-list p { margin: 0; color: #6c757d; font-size: 0.95rem; line-height: 1.7; z-index: 2; }
.custom-expertise-list li:hover::before { opacity: 1; right: 30px; }

/* --- PORTFOLIO HOVER EFFECT --- */
.portfolio-item { position: relative; overflow: hidden; display: block; cursor: pointer; }
.portfolio-item img { transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
	position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4);
	display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay::after { content: '+'; font-family: inherit; font-weight: 300; color: white; font-size: 4rem; }

/* Ensure Fancybox appears above everything */
.fancybox__container { z-index: 10000 !important; }

/* --- HOVER FEATURE SECTION --- */
.interactive-feature-section {
	position: relative;
	background-image: url('../images/discuss-about-project-bg.webp'); 
	background-size: cover;
	background-position: center;
	padding: 170px 0 130px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.feature-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 1; }
.feature-content-wrapper { position: relative; z-index: 2; width: 100%; }
.feature-item { position: relative; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }

.bg-number-large {
	position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);
	font-size: 9rem; font-weight: 300; font-family: 'Arial', sans-serif;
	color: transparent; text-stroke-color: rgb(255 255 255 / .1); -webkit-text-stroke-color: rgb(255 255 255 / .1); text-stroke-width: 1px; -webkit-text-stroke-width: 1px; color: #fff0; 
	z-index: 1; transition: all 0.4s ease; pointer-events: none; line-height: 1;
}
.feature-item:hover .bg-number-large { 
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.7); 
	transform: translate(-50%, -55%); 
}

.icon-circle {
	width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 2.5rem; transition: all 0.3s ease; position: relative; z-index: 3;
	background-color: #000; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.feature-item:hover .icon-circle { background-color: #fff; color: #000; transform: scale(1.05); }

.feature-title-text { 
	color: #ffffff; font-weight: 700; font-size: 1.1rem; margin-top: 1.5rem; 
	z-index: 3; position: relative; text-transform: capitalize; 
}

/* --- FAQ SECTION --- */
.faq-section {
	position: relative; padding: 100px 0; background-color: #ffffff;
	background-image: url('../images/faq-bg.webp'); 
	background-position: center center; background-repeat: no-repeat; background-size: cover;
}
.faq-section::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, rgba(255,255,255,1) 45%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0) 100%); z-index: 1;
}
.faq-content { position: relative; z-index: 2; }
.custom-accordion .accordion-item { background-color: transparent; border: none; border-bottom: 1px solid #f0f0f0; border-radius: 0; }
.custom-accordion .accordion-item button span {color: rgb(119 119 119 / .6);}
.custom-accordion .accordion-button { background-color: transparent; box-shadow: none; padding: 1.2rem 0; font-weight: 600; color: #000; font-size: 1rem; }
.custom-accordion .accordion-button:not(.collapsed) { color: #eb4d4b; background-color: transparent; }
.custom-accordion .accordion-button::after { background-image: none; content: '+'; font-size: 1.5rem; font-weight: 300; color: #ccc; margin-left: auto; transition: transform 0.3s ease; }
.custom-accordion .accordion-button:not(.collapsed)::after { content: '-'; color: #000; transform: rotate(180deg); }
.custom-accordion .accordion-body { padding: 0 0 1.5rem 0; color: #6c757d; font-size: 0.9rem; line-height: 1.8; max-width: 90%; }

/* --- STATS BOX & COUNTERS --- */
.stats-box {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	padding: 60px 40px;
	position: relative;
	z-index: 5;
}
.stat-item { position: relative; text-align: center; }
.stat-bg-number {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	font-size: 9rem; font-weight: 800; color: transparent;
	text-stroke-color: rgb(0 0 0 / .05); -webkit-text-stroke-color: rgb(0 0 0 / .05); text-stroke-width: 2px; -webkit-text-stroke-width: 2px; z-index: 0; pointer-events: none; line-height: 1;
}
.stat-content { position: relative; z-index: 1; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: #000; line-height: 1; margin-bottom: 8px; }
.stat-text { color: #888; font-size: 0.95rem; margin: 0; }

/* --- CLIENT LOGO SLIDER --- */
.client-logo-box {
	border: 1px solid #f0f0f0; 
	padding: 0px; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	height: 110px; 
	background: #ffffff; 
}
.client-logo-box img { max-height: 85px; width: auto !important; margin: 0 auto; filter: grayscale(0%); }
.custom-nav { display: flex; justify-content: center; gap: 15px; margin-top: 30px; position: relative; z-index: 5; }
.custom-nav button {
	width: 45px; height: 45px; border-radius: 50%; border: none;
	background-color: #eff3f9; color: #000; font-size: 1.1rem;
	display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; cursor: pointer;
}
.custom-nav button:hover { background-color: #dce4f0; }

/* --- TESTIMONIAL SLIDER FLEX FIX & DOTS STYLING --- */
.testimonial-slider .owl-stage { display: flex; align-items: stretch; }
.testimonial-slider .owl-item { display: flex; }
.testimonial-slider .item { width: 100%; display: flex; }
.testimonial-slider .card { width: 100%; }

.testimonial-slider .owl-dots { text-align: center; margin-top: 30px; }
.testimonial-slider .owl-dot { display: inline-block; background: none; border: none; padding: 0; outline: none; margin: 0 5px; }
.testimonial-slider .owl-dot span { display: block; width: 12px; height: 12px; background-color: #ddd; border-radius: 50%; transition: all 0.3s ease; }
.testimonial-slider .owl-dot:hover span { background-color: #bbb; }
.testimonial-slider .owl-dot.active span { background-color: #eb4d4b; width: 35px; border-radius: 10px; }
.testimonial-slider .item img {
	width: 150px;
	height: 80px;
	object-fit: contain;
	margin: 20px auto;
}

/* --- RED CONTACT FORM SECTION --- */
.contact-form-card .form-control { border-radius: 0; border: none; padding: 15px; margin-bottom: 15px; background: #fff; }
.contact-form-card .form-control:focus { box-shadow: none; border-left: 3px solid #000; }
.recaptcha-mockup { background: #f9f9f9; border: 1px solid #ddd; padding: 10px 15px; display: inline-flex; align-items: center; justify-content: space-between; width: 250px; margin-bottom: 15px; }
.need-retail-cta {background: #EEE;}

/* --- Form css --- */
.shape-divider svg {
	display: block;
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	width: calc(100% + 1.3px);
}
.shape-divider svg path {
	opacity: 0.33;
	fill: #fff;
	transform: rotateY(0deg);
	transform-origin: center;
}

/* breadcrumb-1 Css */
.custom-breadcrumb-section {
	position: relative;
	min-height: 400px; 
	display: flex;
	align-items: flex-end; 
	overflow: hidden;
}

.custom-breadcrumb-section .breadcrumb-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.custom-breadcrumb-section .breadcrumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
	z-index: 1;
}

.custom-breadcrumb-section .content-wrapper {
	padding-bottom: 40px; 
}

.custom-breadcrumb-section .page-title {
	color: #ffffff;
	font-size: 2.5rem; 
	font-weight: 500;
	margin-bottom: 0.2rem;
	font-family: "Poppins", sans-serif; 
}

.custom-breadcrumb-section .breadcrumb {
	margin-bottom: 0;
	font-size: 1.1rem;
	font-weight: 400;
}

.custom-breadcrumb-section .breadcrumb-item,
.custom-breadcrumb-section .breadcrumb-item a {
	color: #ffffff; 
	text-decoration: none;
}

.custom-breadcrumb-section .breadcrumb-item.active {
	color: #e0e0e0; 
}

.custom-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
	content: "›"; 
	color: #ffffff;
	padding-right: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.custom-breadcrumb-section {
		min-height: 300px; 
	}
	
	.custom-breadcrumb-section .content-wrapper {
		padding-bottom: 30px;
	}

	.custom-breadcrumb-section .page-title {
		font-size: 2.8rem; 
	}

	.custom-breadcrumb-section .breadcrumb {
		font-size: 0.95rem; 
	}
}

@media (max-width: 576px) {
	.custom-breadcrumb-section .page-title {
		font-size: 2.2rem;
	}
}

/* breadcrumb-2 Css */
.custom-retail-banner {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* Top Image Section Wrapper */
.custom-retail-banner .banner-image-wrapper {
	position: relative;
	width: 100%;
	min-height: 400px; /* Desktop height */
	overflow: hidden;
}

.custom-retail-banner .banner-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.custom-retail-banner .banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4); /* Dark overlay */
	z-index: 1;
}

/* Bottom Grey Strip Styling */
.custom-retail-banner .banner-bottom-strip {
	background-color: #e2e2e2;
	padding: 20px 15px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

.custom-retail-banner .strip-title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	color: #000000;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.custom-retail-banner .banner-image-wrapper {
		min-height: 250px; /* Shorter image on tablets */
	}
	.custom-retail-banner .banner-bottom-strip {
		padding: 15px 10px;
	}
	.custom-retail-banner .strip-title {
		font-size: 1.4rem; /* Scaled down heading */
	}
}

@media (max-width: 576px) {
	.custom-retail-banner .banner-image-wrapper {
		min-height: 200px; /* Shorter image on mobile */
	}
	.custom-retail-banner .strip-title {
		font-size: 1.2rem; /* Further scaled down heading */
	}
}

/* about value section css */
.custom-values-section {
	background-color: #f4f5f7; 
	font-family: "Poppins", sans-serif;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	overflow-x: hidden;
}

/* Section Heading */
.custom-values-section .section-title {
	color: #1a2035; 
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 40px;
}

/* Value Card Styling */
.custom-values-section .value-card {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 30px 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #eaeaea;
	border-bottom: 4px solid #d32f2f; 
	height: 100%;
	transition: transform 0.3s ease;
}

.custom-values-section .value-card:hover {
	transform: translateY(-5px);
}

/* Card Icons */
.custom-values-section .icon-wrapper {
	font-size: 1.5rem;
	color: #000000;
	margin-bottom: 15px;
}

/* Card Title */
.custom-values-section .value-title {
	color: #d32f2f; 
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

/* Card Text */
.custom-values-section .value-text {
	color: #7a7a7a;
	font-size: 0.85rem;
	line-height: 1.6;
	margin-bottom: 0;
	text-align: left;
}

/* Explore section css */
.custom-explore-section {
	font-family: "Poppins", sans-serif;
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #ffffff;
	color: #333333;
	overflow-x: hidden;
}

/* Typography & Layout */
.custom-explore-section .explore-title {
	color: #111b2b; /* Dark navy */
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 25px;
}

.custom-explore-section .explore-text {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 50px;
}

/* Progress Bars */
.custom-explore-section .progress-block {
	margin-bottom: 45px;
}

.custom-explore-section .progress-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 20px;
}

.custom-explore-section .progress-track {
	position: relative;
	height: 2px;
	background-color: #000000;
	width: 100%;
}

.custom-explore-section .progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #e3000f; /* Red */
	width: 0; /* Starts at 0 for JS animation */
	transition: width 2s ease-out; /* Smooth slide */
}

/* Percentage Labels on the line */
.custom-explore-section .progress-label {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #e3000f;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 6px 12px;
	line-height: 1;
}

/* Right Column Stats Panel */
.custom-explore-section .stats-wrapper {
	background-color: #eef0f3; /* Light grey outer wrapper */
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 2px; /* Creates the thin gap between white boxes */
}

.custom-explore-section .stat-box {
	background-color: #ffffff;
	text-align: center;
	padding: 25px 20px;
}

.custom-explore-section .stat-number {
	color: #e3000f;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.custom-explore-section .stat-text {
	color: #000000;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
	.custom-explore-section .explore-title {
		font-size: 2.2rem;
	}
	.custom-explore-section .stats-wrapper {
		margin-top: 30px;
	}
}

/* --- CONTACT US CSS --- */
.axiom-contact-section {
	background-color: #f8f9fa; 
	padding-top: 80px;
	padding-bottom: 80px;
	font-family: Arial, sans-serif; 
	position: relative;
	overflow-x: hidden;
}

.axiom-contact-section .agent-image-container {
	display: flex;
	align-items: flex-end; 
	justify-content: center;
}

.axiom-contact-section .agent-image {
	max-width: 100%;
	height: auto;
	mix-blend-mode: multiply; 
}

.axiom-contact-section .form-col {
	padding-left: 5%; 
}

.axiom-contact-section .contact-heading {
	color: #1a1e2e; 
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 30px;
}

.axiom-contact-section .form-control {
	border: none; 
	background-color: #ffffff;
	border-radius: 0; 
	padding: 10px 15px; 
	font-size: 14px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.03); 
	color: #1a1e2e;
}

.axiom-contact-section .name-input::placeholder,
.axiom-contact-section .email-input::placeholder,
.axiom-contact-section .phone-input::placeholder {
	color: #888888; 
	opacity: 1;
}

.axiom-contact-section textarea.form-control {
	border: 1px solid #ddd; 
	padding-top: 15px;
	height: 150px;
}

.axiom-contact-section textarea.form-control::placeholder {
	color: #1a3c5a; 
	font-weight: 600;
	opacity: 1;
}

.axiom-contact-section .form-control:focus {
	outline: none;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
	border-color: #ddd;
}

.axiom-contact-section .button-wrapper {
	display: flex;
	justify-content: flex-end; 
}

.axiom-contact-section .btn-quotation {
	background-color: #000000; 
	color: #ffffff;
	border-radius: 0; 
	font-size: 14px;
	font-weight: 600;
	padding: 12px 25px;
	border: none;
	transition: background-color 0.3s;
}

.axiom-contact-section .btn-quotation:hover {
	background-color: #333333;
	color: #ffffff;
}

.axiom-contact-section .recaptcha-mock {
	background-color: #f9f9f9;
	border: 1px solid #d3d3d3;
	border-radius: 3px;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 300px;
	max-width: 100%;
	font-size: 13px;
	color: #000;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.05);
}

.axiom-contact-section .recaptcha-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.axiom-contact-section .recaptcha-checkbox {
	width: 22px;
	height: 22px;
	border: 2px solid #c1c1c1;
	border-radius: 2px;
	background-color: #fff;
}

.axiom-contact-section .recaptcha-logo-icon {
	width: 30px;
	height: 30px;
	background-image: url('https://www.gstatic.com/recaptcha/api2/logo_48.png');
	background-size: cover;
}

.axiom-contact-section .recaptcha-subtext {
	color: #555;
	font-size: 8px;
	text-transform: uppercase;
	text-align: center;
}

.axiom-contact-section .back-to-top {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	border-radius: 5px;
}

/* Mobile Responsiveness adjusting */
@media (max-width: 991.98px) {
	.axiom-contact-section {
		padding-top: 50px;
		padding-bottom: 120px; 
	}
	.axiom-contact-section .agent-image-container {
		margin-bottom: 40px;
	}
	.axiom-contact-section .form-col {
		padding-left: calc(var(--bs-gutter-x) * .5); 
	}
	.axiom-contact-section .contact-heading {
		font-size: 26px;
		text-align: center;
	}
	.axiom-contact-section .button-wrapper {
		justify-content: center; 
		margin-top: 20px;
	}
}

@media (max-width: 575.98px) {
	 .axiom-contact-section .form-control {
		padding: 8px 12px;
		font-size: 13px;
	}
	.axiom-contact-section textarea.form-control {
		height: 120px;
	}
	.axiom-contact-section .recaptcha-mock {
		transform: scale(0.9);
		transform-origin: left center;
		margin-bottom: 0;
	}
}

.custom-contact-section {
	background-color: #ffffff;
	font-family: "Poppins", sans-serif;
}

.custom-contact-section .contact-info-container {
	background-color: #f1f3f5; 
	padding: 1.5rem;
	border-radius: 4px;
	height: 100%;
}

.custom-contact-section .info-card {
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	padding: 1.25rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: flex-start;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
	transition: box-shadow 0.2s ease-in-out;
}

.custom-contact-section .info-card:last-child {
	margin-bottom: 0;
}

.custom-contact-section .info-card:hover {
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.custom-contact-section .icon-wrapper {
	color: #d93025; 
	font-size: 1.25rem;
	margin-right: 1.25rem;
	margin-top: 0.1rem;
	min-width: 20px;
	text-align: center;
}

.custom-contact-section .info-text {
	color: #5f6368;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.custom-contact-section .map-container {
	height: 100%;
	min-height: 400px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.custom-contact-section .map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* --- CAREER PAGE CSS --- */
.axiom-careers-section {
	background-color: #f4f5f6; 
	padding-top: 80px;
	padding-bottom: 80px;
	font-family: "Poppins", sans-serif;
	color: #1a1e2e;
}

.axiom-careers-section .career-card {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 45px; 
	border: 1px solid #e5e5e5;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.axiom-careers-section .join-title {
	font-size: 2.4rem; 
	font-weight: 700;
	color: #111827; 
	margin-bottom: 15px;
}

.axiom-careers-section .join-subtitle {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 25px;
}

.axiom-careers-section .accordion-item {
	border: 1px solid #e5e7eb;
	margin-bottom: 12px; 
	border-radius: 4px !important;
	background-color: #ffffff;
	overflow: hidden;
}

.axiom-careers-section .accordion-button {
	padding: 14px 20px; 
	font-size: 0.95rem;
	font-weight: 400;
	color: #1f2937;
	background-color: #ffffff;
	box-shadow: none;
	border-radius: 4px !important;
	display: flex;
	align-items: center;
}

.axiom-careers-section .accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0,0,0,0.1);
}

.axiom-careers-section .accordion-button::after {
	display: none;
}

.axiom-careers-section .accordion-button::before {
	content: "+";
	font-size: 1.3rem;
	font-weight: 600;
	margin-right: 15px;
	line-height: 1;
	transition: transform 0.2s ease;
	color: #111827;
}

.axiom-careers-section .accordion-button:not(.collapsed)::before {
	content: "-"; 
}

.axiom-careers-section .accordion-button:not(.collapsed) {
	color: #111827;
	background-color: #f9fafb;
	box-shadow: none;
	font-weight: 600;
}

.axiom-careers-section .accordion-body {
	padding: 20px;
	font-size: 0.9rem;
	color: #4b5563;
	background-color: #fdfdfd;
	border-top: 1px solid #e5e7eb;
}

.axiom-careers-section .accordion-body p {
	margin-bottom: 12px;
	line-height: 1.6;
}

.axiom-careers-section .accordion-body a {
	color: #111827;
	font-weight: 600;
	text-decoration: underline;
}

.axiom-careers-section .accordion-body ul {
	padding-left: 20px;
	margin-bottom: 15px;
}

.axiom-careers-section .accordion-body li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.axiom-careers-section .form-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.axiom-careers-section .form-control,
.axiom-careers-section .form-select {
	background-color: #f4f5f8; 
	border: none;
	border-radius: 4px;
	padding: 16px 20px;
	font-size: 0.95rem;
	color: #1f2937;
	box-shadow: none;
}

.axiom-careers-section .form-control::placeholder {
	color: #8a94a6;
}

.axiom-careers-section .form-control:focus,
.axiom-careers-section .form-select:focus {
	outline: none;
	box-shadow: inset 0 0 0 1px #d1d5db;
	background-color: #f4f5f8;
}

.axiom-careers-section .form-group-spaced {
	margin-bottom: 30px; 
}

.axiom-careers-section textarea.form-control {
	height: 190px; 
	resize: vertical;
}

.axiom-careers-section input[type="file"].form-control {
	padding: 10px;
	background-color: #f4f5f8;
	color: #1f2937;
	border: none;
}

.axiom-careers-section input[type="file"]::file-selector-button {
	padding: 8px 16px;
	background-color: #e5e7eb;
	border: 1px solid #d1d5db;
	border-radius: 2px;
	margin-right: 15px;
	color: #111827;
	cursor: pointer;
	transition: background-color 0.2s;
}

.axiom-careers-section input[type="file"]::file-selector-button:hover {
	background-color: #d1d5db;
}

.axiom-careers-section .btn-apply {
	background-color: #000000;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 18px;
	font-size: 1.1rem;
	font-weight: 500;
	width: 100%;
	margin-top: auto; 
	transition: background-color 0.3s ease;
}

.axiom-careers-section .btn-apply:hover {
	background-color: #333333;
	color: #ffffff;
}

.axiom-careers-section .recaptcha-mock {
	background-color: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	padding: 12px 15px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 300px;
	max-width: 100%;
	margin-bottom: 25px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.05);
}

.axiom-careers-section .recaptcha-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.axiom-careers-section .recaptcha-checkbox {
	width: 28px;
	height: 28px;
	border: 2px solid #d1d5db;
	border-radius: 2px;
	background-color: #fff;
	cursor: pointer;
}

.axiom-careers-section .recaptcha-logo-icon {
	width: 34px;
	height: 34px;
	background-image: url('https://www.gstatic.com/recaptcha/api2/logo_48.png');
	background-size: cover;
	margin-bottom: 2px;
}

.axiom-careers-section .recaptcha-subtext {
	font-size: 0.6rem;
	color: #6b7280;
	text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
	.axiom-careers-section .career-card {
		padding: 30px 20px;
	}
	.axiom-careers-section .join-title {
		font-size: 2.2rem;
	}
	.axiom-careers-section .accordion-button {
		padding: 14px 15px;
	}
	.axiom-careers-section .form-group-spaced {
		margin-bottom: 20px; 
	}
	.axiom-careers-section textarea.form-control {
		height: 140px; 
	}
}


/* --- Blog Detail css --- */
.custom-blog-section {
	font-family: "Poppins", sans-serif;
	color: #444444;
	background-color: #ffffff;
	padding-top: 40px;
	padding-bottom: 40px;
}

.custom-blog-section .scrollable-content-box {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.custom-blog-section .main-article-img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 1.5rem;
}

.custom-blog-section .post-meta-primary {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	color: #6c757d;
	margin-bottom: 1.5rem;
}

.custom-blog-section .icon-red {
	color: #dc3545;
	margin-right: 8px;
	font-size: 1.05rem;
}

.custom-blog-section .article-subheading {
	font-size: 1.6rem;
	font-weight: 700;
	color: #111111;
	margin-top: 2.5rem;
	margin-bottom: 1.5rem; 
	padding-bottom: 12px;
	position: relative;
}

.custom-blog-section .article-subheading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #dc3545;
}

.custom-blog-section .article-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 1.2rem;
}

.custom-blog-section .article-bullet-list {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}

.custom-blog-section .article-bullet-list li {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 0.8rem;
}

.custom-blog-section .text-highlight-red {
	color: #dc3545;
	font-weight: 700;
}

.custom-blog-section .info-cta-box {
	background-color: #000000;
	color: #ffffff;
	border-radius: 12px;
	padding: 45px 30px;
	text-align: center;
	margin-top: 3rem;
}

.custom-blog-section .info-cta-box h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.custom-blog-section .info-cta-box p {
	font-size: 1rem;
	color: #cccccc;
	margin-bottom: 25px;
}

.custom-blog-section .info-cta-btn {
	background-color: #dc3545;
	color: #ffffff;
	font-weight: 600;
	padding: 12px 35px;
	border: none;
	border-radius: 6px;
	transition: background 0.2s ease-in-out;
	text-decoration: none;
	display: inline-block;
}

.custom-blog-section .info-cta-btn:hover {
	background-color: #bd2130;
	color: #ffffff;
}

.custom-blog-section .sticky-sidebar-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: 20px; 
}

.custom-blog-section .sidebar-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #111111;
	margin-bottom: 1.5rem;
}

.custom-blog-section .recent-post-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eaeaea;
}

.custom-blog-section .recent-post-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.custom-blog-section .recent-post-thumb {
	width: 75px;
	height: 75px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.custom-blog-section .recent-post-title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.4;
	color: #222222;
	text-decoration: none;
	margin-bottom: 4px;
	display: block;
}

.custom-blog-section .recent-post-title:hover {
	color: #dc3545;
}

.custom-blog-section .recent-post-meta {
	font-size: 0.8rem;
	color: #888888;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.custom-blog-section .sticky-sidebar-wrapper {
		position: static; 
		margin-top: 3rem;
	}
}


/* --- Service List CSS --- */
.custom-additional-sections {
	font-family: "Poppins", sans-serif;
	color: #333333;
}

.custom-additional-sections .why-choose-section {
	background-color: #ffffff;
	padding-top: 80px;
	padding-bottom: 80px;
}

.custom-additional-sections .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a202c; 
	margin-bottom: 2rem;
	letter-spacing: -0.5px;
}

.custom-additional-sections .feature-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.custom-additional-sections .feature-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.8;
	color: #666666;
}

.custom-additional-sections .feature-list li::before {
	content: "\00BB"; 
	position: absolute;
	left: 0;
	top: -2px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #d32f2f; 
	line-height: 1;
}

.custom-additional-sections .feature-list strong {
	color: #444444;
	font-weight: 700;
}

.custom-additional-sections .why-choose-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-additional-sections .services-grid-section {
	background-color: #fafafa; 
	padding-top: 80px;
	padding-bottom: 80px;
}

.custom-additional-sections .service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-bottom: 2rem;
	cursor: pointer;
}

.custom-additional-sections .service-img-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; 
	overflow: hidden;
	background-color: #e9e9e9;
}

.custom-additional-sections .service-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.custom-additional-sections .hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 1;
}

.custom-additional-sections .service-card:hover .hover-overlay {
	opacity: 1;
}

.custom-additional-sections .btn-read-more {
	background-color: #ffffff;
	color: #000000;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 12px 24px;
	text-decoration: none;
	border: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transition: background-color 0.2s ease;
}

.custom-additional-sections .btn-read-more:hover {
	background-color: #f1f1f1;
}

.custom-additional-sections .service-content {
	position: relative;
	background-color: #ffffff;
	padding: 2.5rem 1.5rem 1.5rem 1.5rem;
	text-align: center;
	flex-grow: 1;
	margin-top: -1px; 
}

.custom-additional-sections .service-content::before {
	content: "";
	position: absolute;
	top: -15px; 
	left: 50%;
	transform: translateX(-50%);
	border-width: 0 15px 15px 15px; 
	border-style: solid;
	border-color: transparent transparent #ffffff transparent;
	z-index: 2;
}

.custom-additional-sections .service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111111;
	margin-bottom: 1rem;
}

.custom-additional-sections .service-desc {
	font-size: 0.9rem;
	color: #777777;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.custom-additional-sections .why-choose-img-col {
		margin-top: 3rem;
	}
	.custom-additional-sections .section-title {
		font-size: 2.2rem;
	}
}

/* Service detail css */
.custom-service-detail-section {
	font-family: "Poppins", sans-serif;
	color: #444444;
	background-color: #ffffff;
	padding-top: 40px;
	padding-bottom: 60px;
}

/* --- Main Content Container --- */
.custom-service-detail-section .scrollable-content-box {
	background: #ffffff;
	padding: 10px 0;
}

/* --- Images --- */
.custom-service-detail-section .square-feature-img {
	width: 100%;
	height: 400px;
	aspect-ratio: 1 / 1; 
	border-radius: 12px;
	margin-bottom: 2.5rem;
	object-fit: cover;
	background-color: #f5f5f5;
	display: block;
}

.custom-service-detail-section .main-feature-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	margin-bottom: 2.5rem;
	margin-top: 1.5rem;
	object-fit: cover;
	background-color: #f5f5f5;
	display: block;
}

/* --- Bottom Image Grid --- */
.custom-service-detail-section .bottom-img-grid {
	margin-top: 2.5rem;
}

.custom-service-detail-section .bottom-img-grid img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3; /* Keeps the grid items uniformly rectangular */
	object-fit: cover;
	background-color: #f5f5f5;
	display: block;
}

/* --- Typography & Headings --- */
.custom-service-detail-section .page-main-heading, .custom-service-detail-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #1c2033; 
	margin-top: 0;
	margin-bottom: 1.2rem;
}

.custom-service-detail-section .article-heading {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1c2033;
	margin-top: 2.2rem;
	margin-bottom: 1rem;
}

.custom-service-detail-section .article-subheading {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1c2033;
	margin-top: 1.8rem;
	margin-bottom: 0.8rem;
}

.custom-service-detail-section .article-text, .custom-service-detail-section p {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 1.2rem;
}

.custom-service-detail-section .text-dark-bold {
	font-weight: 700;
	color: #333333;
}

/* Bullet Lists */
.custom-service-detail-section .article-bullet-list, .custom-service-detail-section ul {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}

.custom-service-detail-section .article-bullet-list li, .custom-service-detail-section ul li {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 0.8rem;
}

.custom-service-detail-section .article-bullet-list li strong {
	color: #333333;
	font-weight: 600;
}

/* Ordered Lists */
.custom-service-detail-section .article-ordered-list {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}

.custom-service-detail-section .article-ordered-list li {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 0.8rem;
}

.custom-service-detail-section .article-ordered-list li strong {
	color: #333333;
	font-weight: 600;
}

/* --- Black CTA Box --- */
.custom-service-detail-section .info-cta-box {
	background-color: #000000;
	color: #ffffff;
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	margin: 3rem 0;
}

.custom-service-detail-section .info-cta-box h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.custom-service-detail-section .info-cta-box p {
	font-size: 0.95rem;
	color: #cccccc;
	margin-bottom: 20px;
}

.custom-service-detail-section .info-cta-btn {
	background-color: #d32f2f;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 30px;
	border: none;
	border-radius: 4px;
	transition: background 0.2s ease-in-out;
	text-decoration: none;
	display: inline-block;
}

.custom-service-detail-section .info-cta-btn:hover {
	background-color: #b71c1c;
	color: #ffffff;
}

/* --- Custom FAQ Accordion --- */
.custom-service-detail-section .faq-container {
	margin-top: 1.5rem;
	margin-bottom: 2rem;
}

.custom-service-detail-section .faq-item {
	margin-bottom: 20px;
}

.custom-service-detail-section .faq-question {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 600;
	color: #333333;
	font-size: 1rem;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.custom-service-detail-section .faq-icon {
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 2px;
}

.custom-service-detail-section .faq-answer {
	padding-left: 22px;
	margin-top: 10px;
	color: #666666;
	font-size: 0.95rem;
	line-height: 1.7;
	display: none;
}

/* Display answer when the faq-item has the 'active' class */
.custom-service-detail-section .faq-item.active .faq-answer {
	display: block;
}

/* --- Sticky Sidebar Styles --- */
.custom-service-detail-section .sticky-sidebar-wrapper {
	position: -webkit-sticky;
	position: sticky;
	top: 20px; 
}

/* Separate Boxes for Sidebar Widgets */
.custom-service-detail-section .sidebar-widget {
	background-color: #ffffff;
	border: 1px solid #eaeaea; 
	border-radius: 8px; 
	padding: 30px;
	margin-bottom: 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.02); 
}

/* Custom Dual-Line Title Style */
.custom-service-detail-section .sidebar-title-wrap {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 1.5rem;
}

.custom-service-detail-section .sidebar-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1c2033;
	margin: 0;
}

/* Dark Dash */
.custom-service-detail-section .sidebar-title-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background-color: #1c2033;
	z-index: 2;
}

/* Faded Line strictly starting from the end of the dark dash */
.custom-service-detail-section .sidebar-title-wrap::after {
	content: "";
	position: absolute;
	left: 32px; 
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #e2e2e2;
	z-index: 1;
}

/* Services List Links */
.custom-service-detail-section .service-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-service-detail-section .service-links li {
	margin-bottom: 12px;
}

.custom-service-detail-section .service-links a {
	display: flex;
	align-items: stretch; 
	background-color: #f6f8fb;
	color: #666666;
	text-decoration: none;
	font-size: 0.98rem;
	transition: all 0.2s;
	overflow: hidden;
	border-radius: 2px;
}

.custom-service-detail-section .service-links a:hover {
	color: #111111;
}

.custom-service-detail-section .link-text {
	flex-grow: 1;
	padding: 16px 20px;
}

.custom-service-detail-section .link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ebedf2; 
	padding: 0 20px;
	color: #111111;
	transition: background-color 0.2s;
}

.custom-service-detail-section .service-links a:hover .link-icon {
	background-color: #e1e4ea;
}

/* Quote Form */
.custom-service-detail-section .quote-form .form-control {
	background-color: #f6f8fb;
	border: none;
	border-radius: 2px;
	padding: 16px 20px;
	margin-bottom: 16px;
	font-size: 0.95rem;
	color: #333;
	box-shadow: none;
}

.custom-service-detail-section .quote-form .form-control::placeholder {
	color: #9aa0a6;
}

.custom-service-detail-section .quote-form textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* reCAPTCHA Mockup */
.custom-service-detail-section .recaptcha-mock {
	border: 1px solid #e0e0e0;
	background: #f9f9f9;
	border-radius: 3px;
	padding: 10px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
	max-width: 300px;
}

.custom-service-detail-section .recaptcha-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.custom-service-detail-section .recaptcha-checkbox {
	width: 24px;
	height: 24px;
	border: 2px solid #c1c1c1;
	background: #ffffff;
	border-radius: 2px;
	cursor: pointer;
}

.custom-service-detail-section .recaptcha-text {
	font-size: 0.85rem;
	color: #222222;
	font-weight: 500;
}

.custom-service-detail-section .recaptcha-logo {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.custom-service-detail-section .recaptcha-logo img {
	height: 28px;
	margin-bottom: 2px;
}

.custom-service-detail-section .recaptcha-logo span {
	font-size: 0.55rem;
	color: #777777;
}

/* Form Submit Button */
.custom-service-detail-section .btn-submit-quote {
	background-color: #000000;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 15px 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
	transition: background 0.2s;
}

.custom-service-detail-section .btn-submit-quote:hover {
	background-color: #333333;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.custom-service-detail-section .sticky-sidebar-wrapper {
		position: static; 
		margin-top: 3rem;
	}
}


/* --- Enquiry Modal Custom Styles --- */
.custom-enquiry-modal .modal-content {
	background-color: #f7f7f7; 
	border: none;
	border-radius: 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.custom-enquiry-modal .btn-close-custom {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #00bcd4; 
	color: #ffffff;
	border: none;
	padding: 12px 18px;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s;
}

.custom-enquiry-modal .btn-close-custom:hover {
	background-color: #00a0b5;
}

.custom-enquiry-modal .modal-title {
	font-size: 2.2rem;
	font-weight: 400;
	color: #000000;
	margin-bottom: 5px;
}

.custom-enquiry-modal .form-control {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	padding: 14px 18px;
	font-size: 1rem;
	color: #333333;
	box-shadow: none;
}

.custom-enquiry-modal .form-control::placeholder {
	color: #555555;
}

.custom-enquiry-modal .form-control:focus {
	border-color: #002147;
}

.custom-enquiry-modal .recaptcha-box {
	background-color: #f9f9f9;
	border: 1px solid #d3d3d3;
	border-radius: 3px;
	padding: 10px 12px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 300px;
}

.custom-enquiry-modal .btn-submit-enquiry {
	background-color: #002147; 
	color: #ffffff;
	border: none;
	border-radius: 2px;
	padding: 12px 35px;
	font-size: 1.05rem;
	font-weight: 500;
	transition: background-color 0.2s;
}

.custom-enquiry-modal .btn-submit-enquiry:hover {
	background-color: #001530;
	color: #ffffff;
}


/*----- Case Study Css -------*/
.custom-casestudy-section {
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #333333;
	padding-top: 60px;
	padding-bottom: 60px;
}

/* Header Area Styling */
.custom-casestudy-section .section-header-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111111;
	line-height: 1.25;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
}

.custom-casestudy-section .section-header-text {
	font-size: 1rem;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 1.2rem;
	text-align: justify;
}

/* Case Study Grid & Card Styling */
.custom-casestudy-section .casestudy-card {
	border-top: 1px solid #e5e5e5;
	padding-top: 30px;
	margin-bottom: 20px;
}

/* Enforcing the horizontal rectangular shape */
.custom-casestudy-section .casestudy-img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3; /* Ensures a strict horizontal rectangular block */
	object-fit: cover;
	background-color: #f5f5f5;
	display: block;
}

.custom-casestudy-section .casestudy-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #a80000;
	margin-bottom: 12px;
	margin-top: 0;
}

.custom-casestudy-section .casestudy-desc {
	font-size: 0.9rem;
	color: #777777;
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Black CTA Button */
.custom-casestudy-section .btn-casestudy {
	background-color: #000000;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 10px 24px;
	border: none;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.2s ease-in-out;
}

.custom-casestudy-section .btn-casestudy:hover {
	background-color: #333333;
	color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.custom-casestudy-section .section-header-title {
		font-size: 2rem;
	}
	.custom-casestudy-section .casestudy-img-wrapper {
		margin-bottom: 20px;
	}
}

/* Case Study Detail Css */
.custom-casestudy-detail {
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #333333;
	padding-top: 60px;
	padding-bottom: 80px;
}

.custom-casestudy-detail .page-title {
	font-size: 3rem;
	font-weight: 700;
	color: #111111;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.custom-casestudy-detail .meta-block {
	margin-bottom: 1rem;
}

.custom-casestudy-detail .meta-label {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111111;
	margin-bottom: 0.2rem;
}

.custom-casestudy-detail .meta-value {
	font-size: 0.95rem;
	color: #777777;
}

.custom-casestudy-detail .services-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111111;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.custom-casestudy-detail .services-list {
	font-size: 0.95rem;
	font-weight: 700;
	color: #d32f2f; 
	margin-bottom: 2rem;
}

.custom-casestudy-detail .divider-line {
	border-top: 1px solid #dcdcdc;
	margin-top: 2rem;
	margin-bottom: 3rem;
}

.custom-casestudy-detail .content-heading, .custom-casestudy-detail h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #777777; 
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.custom-casestudy-detail .content-text, .custom-casestudy-detail p {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 1.2rem;
}

.custom-casestudy-detail .content-list, .custom-casestudy-detail ul {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.custom-casestudy-detail .content-list li, .custom-casestudy-detail ul li {
	font-size: 1rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 0.5rem;
}

.custom-casestudy-detail .gallery-section {
	margin-top: 4rem;
}

.custom-casestudy-detail .gallery-img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9; 
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 1.5rem;
	background-color: #f5f5f5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.custom-casestudy-detail .page-title {
		font-size: 2.2rem;
	}
	.custom-casestudy-detail .meta-block {
		margin-top: 1.5rem;
	}
}

/* Site Map Css */
.custom-sitemap-section {
	font-family: "Poppins", sans-serif;
	background-color: #f4f5f7; 
	padding-top: 50px;
	padding-bottom: 50px;
}

.custom-sitemap-section .sitemap-container {
	max-width: 1000px; 
	margin: 0 auto;
}

.custom-sitemap-section .sitemap-list {
	display: flex;
	flex-direction: column;
	gap: 12px; 
	padding: 0;
	margin: 0;
	list-style: none;
}

.custom-sitemap-section .sitemap-link {
	background-color: #e4000f;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 16px 24px;
	border-radius: 8px; 
	text-decoration: none;
	display: block;
	width: 100%;
	transition: background-color 0.2s ease-in-out, transform 0.1s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.custom-sitemap-section .sitemap-link:hover {
	background-color: #c6000c; 
	color: #ffffff;
	text-decoration: none;
}

.custom-sitemap-section .sitemap-link:active {
	transform: scale(0.99); 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.custom-sitemap-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.custom-sitemap-section .sitemap-link {
		padding: 14px 20px;
		font-size: 0.9rem;
	}
}

/* Privacy Css */
.custom-privacy-policy {
	font-family: "Poppins", sans-serif;
	color: #555555;
	background-color: #ffffff;
}

.custom-privacy-policy .policy-block {
	padding: 80px 0;
	width: 100%;
}

.custom-privacy-policy .bg-white-block {
	background-color: #ffffff;
}

.custom-privacy-policy .bg-grey-block {
	background-color: #f7f8f9; 
}

.custom-privacy-policy .policy-content-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.custom-privacy-policy .policy-heading {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1e29; 
	margin-bottom: 1.2rem;
	margin-top: 0;
	letter-spacing: -0.5px;
}

.custom-privacy-policy .policy-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 1rem;
}

.custom-privacy-policy .policy-indented-list {
	list-style-type: none;
	padding-left: 3rem;
	margin-bottom: 0;
	margin-top: 1rem;
}

.custom-privacy-policy .policy-indented-list li {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 0.8rem;
}

.custom-privacy-policy .contact-label {
	color: #d32f2f; 
	font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.custom-privacy-policy .policy-block {
		padding: 50px 0;
	}
	.custom-privacy-policy .policy-heading {
		font-size: 1.6rem;
	}
	.custom-privacy-policy .policy-indented-list {
		padding-left: 1.5rem; 
	}
}


/* --- FOOTER --- */
.footer { background-color: #000000; color: #b0b0b0; padding: 25px 0 0; font-size: 14px; }
.footer-header { color: #ffffff; font-weight: 600; border-bottom: 1px solid #ffffff; padding-bottom: 12px; margin-bottom: 25px; display: block; }
.footer a { color: #ffffff; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #eb4d4b; }
.footer-icon-list li { display: flex; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-icon-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.footer-icon-list i { color: #888; font-size: 1.1rem; margin-right: 15px; margin-top: 3px; }
.footer-bottom { background-color: #f8f9fa; color: #666; padding: 20px 0; margin-top: 15px; font-size: 13px; }

/* Display Rack Page CSS */
.hide-scrollbar::-webkit-scrollbar {
	display: none;
}
.hide-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-rack-section {
	position: relative;
	background-color: #1a1a1a; 
	background-image: url('../images/rack-service-new-banner.jpg'); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 100px 0;
	overflow: hidden;
}
.hero-rack-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgb(0 0 0 / 60%); 
	z-index: 1;
}
.hero-rack-section .container-fluid {
	position: relative;
	z-index: 2;
	max-width: 1400px;
}
.hero-rack-section h1 {
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}
.hero-rack-section p {
	color: #d4d4d4;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.hero-rack-section .btn-get-quote {
	background-color: #e60000;
	color: #ffffff;
	border: none;
	padding: 12px 28px;
	font-weight: 600;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background-color 0.3s;
	white-space: nowrap;
}
.hero-rack-section .btn-get-quote:hover { background-color: #cc0000; color: #ffffff; }
.hero-rack-section .btn-callback {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 12px 28px;
	font-weight: 600;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
	white-space: nowrap;
}
.hero-rack-section .btn-callback:hover { background-color: #fff; color: #000000; }
.hero-rack-section .feature-badge {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #e0e0e0;
}
.hero-rack-section .feature-badge i { color: #e60000; }
.hero-rack-section .hero-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
	object-fit: cover;
}
@media (max-width: 991px) {
	.hero-rack-section h1 { font-size: 2.5rem; }
	.hero-rack-section { padding: 60px 0; }
}
@media (max-width: 576px) {
	.hero-rack-section .cta-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
	.hero-rack-section .features-group { flex-wrap: wrap; }
}

/* =========================================
   2. SOLUTIONS SECTION
   ========================================= */
.solutions-section { background-color: #fafafa; padding: 80px 0; }
.solutions-section h2 { font-weight: 700; font-size: 2.5rem; color: #000000; margin-bottom: 1rem; }
.solutions-section .section-subtitle { color: #7a7a7a; font-size: 1.1rem; margin-bottom: 3rem; }
.solutions-section .solution-card {
	background: #ffffff; border-radius: 16px; border: none; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; overflow: hidden;
}
.solutions-section .solution-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); }
.solutions-section .card-img-top { height: 240px; object-fit: cover; }
.solutions-section .card-body { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; }
.solutions-section .card-title { font-weight: 700; font-size: 1.2rem; color: #111111; margin-bottom: 1rem; line-height: 1.3; }
.solutions-section .card-text { color: #737373; font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }
.solutions-section .see-prices-link { color: #000000; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.solutions-section .see-prices-link:hover { color: #555555; }
@media (max-width: 768px) {
	.solutions-section h2 { font-size: 2rem; }
	.solutions-section { padding: 60px 0; }
}

/* =========================================
   3. TYPES SECTION
   ========================================= */
.types-section { padding: 80px 0; background-color: #ffffff; }
.types-section h2 { font-weight: 700; font-size: 2.2rem; color: #000000; margin-bottom: 1.5rem; line-height: 1.3; }
.types-section .section-description { color: #737373; font-size: 1rem; line-height: 1.6; margin-bottom: 3rem; }
.types-section .type-card {
	background-color: #f8f9fa; border-radius: 12px; padding: 2.5rem; margin-bottom: 1.5rem;
	border-left: 4px solid #e60000; transition: background-color 0.3s ease;
}
.types-section .type-card:hover { background-color: #f1f3f5; }
.types-section .type-card h3 { font-size: 1.25rem; font-weight: 700; color: #000000; margin-bottom: 1rem; }
.types-section .type-card p { color: #737373; font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
@media (max-width: 768px) {
	.types-section { padding: 60px 0; }
	.types-section h2 { font-size: 1.8rem; }
	.types-section .type-card { padding: 1.5rem; }
}

/* =========================================
   4. MANUFACTURER INFO SECTION
   ========================================= */
.manufacturer-info-section { padding: 80px 0; background-color: #ffffff; }
.manufacturer-info-section h2 { font-weight: 700; font-size: 2.2rem; color: #000000; margin-bottom: 1rem; line-height: 1.3; }
.manufacturer-info-section .section-description { color: #737373; font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; }
.manufacturer-info-section .info-card {
	background-color: #f8f9fa; border-radius: 12px; padding: 2.5rem; margin-bottom: 1.5rem;
	border-left: 4px solid #e60000; transition: background-color 0.3s ease;
}
.manufacturer-info-section .info-card:hover { background-color: #f1f3f5; }
.manufacturer-info-section .info-card h3 { font-size: 1.25rem; font-weight: 700; color: #000000; margin-bottom: 1.2rem; }
.manufacturer-info-section .info-card p { color: #737373; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.manufacturer-info-section .info-card p:last-child { margin-bottom: 0; }
.manufacturer-info-section .info-card strong { color: #333333; font-weight: 700; }
.manufacturer-info-section .info-card ul { padding-left: 1.2rem; margin-bottom: 1.2rem; color: #737373; font-size: 0.95rem; line-height: 1.6; }
.manufacturer-info-section .info-card ul li { margin-bottom: 0.5rem; }
@media (max-width: 768px) {
	.manufacturer-info-section { padding: 60px 0; }
	.manufacturer-info-section h2 { font-size: 1.8rem; }
	.manufacturer-info-section .info-card { padding: 1.5rem; }
}

/* =========================================
   5. WHY CHOOSE SECTION
   ========================================= */
.why-choose-section { padding: 80px 0; background-color: #ffffff; }
.why-choose-section h2 { font-weight: 700; font-size: 2.2rem; color: #000000; margin-bottom: 1.2rem; }
.why-choose-section .section-description { color: #737373; font-size: 1rem; line-height: 1.6; margin-bottom: 3.5rem; }
.why-choose-section .feature-card {
	background-color: #ffffff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 2.5rem 1.5rem;
	text-align: center; height: 100%; transition: box-shadow 0.3s ease, transform 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.why-choose-section .feature-card:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); transform: translateY(-5px); }
.why-choose-section .icon-box {
	background-color: #e60000; color: #ffffff; width: 64px; height: 64px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 16px; font-size: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 6px 12px rgba(230, 0, 0, 0.2);
}
.why-choose-section .feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #000000; margin-bottom: 1rem; }
.why-choose-section .feature-card p { color: #737373; font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
@media (max-width: 768px) {
	.why-choose-section { padding: 60px 0; }
	.why-choose-section h2 { font-size: 1.8rem; }
	.why-choose-section .feature-card { padding: 2rem 1.2rem; }
	.why-choose-section .section-description { margin-bottom: 2.5rem; }
}

/* =========================================
   6. PROCESS SECTION
   ========================================= */
.process-section { background-color: #030303; color: #ffffff; padding: 100px 0; overflow: hidden; }
.process-section h2 { font-weight: 700; font-size: 2.5rem; color: #ffffff; margin-bottom: 0.8rem; }
.process-section .section-subtitle { color: #b3b3b3; font-size: 1.1rem; margin-bottom: 5rem; }
.process-section .process-timeline { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.process-section .process-timeline::before {
	content: ''; position: absolute; top: 100px; left: 0; right: 0; height: 2px; background-color: #ffffff; z-index: 1;
}
.process-section .process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; padding: 0 10px; }
.process-section .step-circle {
	width: 76px; height: 76px; background-color: #e60000; color: #ffffff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 1.35rem; font-weight: 700; margin-bottom: 50px; box-shadow: 0 0 25px rgba(230, 0, 0, 0.6);
}
.process-section .step-content h4 { font-weight: 700; font-size: 1.15rem; color: #ffffff; margin-bottom: 0.6rem; }
.process-section .step-content p { color: #b3b3b3; font-size: 0.95rem; line-height: 1.5; margin-bottom: 0; max-width: 200px; margin-left: auto; margin-right: auto; }
@media (max-width: 991px) {
	.process-section { padding: 60px 0; }
	.process-section h2 { font-size: 2rem; }
	.process-section .section-subtitle { margin-bottom: 3rem; }
	.process-section .process-timeline { flex-direction: column; align-items: center; }
	.process-section .process-timeline::before { top: 0; bottom: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
	.process-section .process-step { width: 100%; margin-bottom: 3rem; background-color: #030303; }
	.process-section .process-step:last-child { margin-bottom: 0; }
	.process-section .step-circle { margin-bottom: 20px; }
}

/* =========================================
   7. PROJECT CASE SECTION 
   ========================================= */
.project-case h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}
.project-case .section-subtitle {
    color: #7a7a7a;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
   
/* =========================================
   8. INDUSTRIES SECTION (GRID LAYOUT)
   ========================================= */
.industries-section { padding: 80px 0; background-color: #fafafa; }
.industries-section h2 { font-weight: 700; font-size: 2.5rem; color: #000000; margin-bottom: 1rem; }
.industries-section .section-subtitle { color: #7a7a7a; font-size: 1.1rem; margin-bottom: 3.5rem; }
.industries-section .industry-card {
	background-color: #ffffff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 2.5rem 1rem;
	text-align: center; height: 100%; transition: box-shadow 0.3s ease, transform 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.industries-section .industry-card:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }
.industries-section .industry-icon { color: #e60000; font-size: 2.5rem; margin-bottom: 1.2rem; }
.industries-section .industry-card h3 { font-size: 1.15rem; font-weight: 700; color: #000000; margin-bottom: 0; }
@media (max-width: 768px) {
	.industries-section { padding: 60px 0; }
	.industries-section h2 { font-size: 2rem; }
	.industries-section .section-subtitle { margin-bottom: 2.5rem; }
	.industries-section .industry-card { padding: 2rem 1rem; }
}

/* =========================================
   9. REVIEWS SECTION (WITH SLIDER)
   ========================================= */
.reviews-section { padding: 80px 0; background-color: #fafafa; }
.reviews-section h2 { font-weight: 700; font-size: 2.2rem; color: #000000; margin-bottom: 0.5rem; }
.reviews-section .section-subtitle { color: #7a7a7a; font-size: 1rem; margin-bottom: 4rem; }
.reviews-section .overall-rating-box { text-align: center; padding: 1rem; }
.reviews-section .overall-rating-box h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.reviews-section .overall-rating-stars { color: #fbbc04; font-size: 1.5rem; margin-bottom: 0.5rem; display: flex; justify-content: center; gap: 2px; }
.reviews-section .overall-rating-text { font-size: 0.9rem; color: #333333; margin-bottom: 0.8rem; }
.reviews-section .google-logo-main { width: 90px; height: auto; }

.reviews-section .review-card { background-color: #f5f5f5; border-radius: 12px; padding: 1.5rem; height: 100%; display: flex; flex-direction: column; border: none; }

/* FIX: Robust Header Layout */
.reviews-section .review-header { 
	display: flex; 
	align-items: flex-start; /* Aligns items to the top to keep the G logo flush */
	margin-bottom: 1rem; 
}

.reviews-section .reviewer-avatar-wrapper { 
	position: relative; 
	margin-right: 12px; 
	flex: 0 0 40px; /* Lock to exactly 40px, never shrink */
	width: 40px; 
	height: 40px;
}
.reviews-section .reviewer-avatar { 
	width: 100%; 
	height: 100%; 
	border-radius: 50%; 
	object-fit: cover; 
}
.reviews-section .local-guide-badge {
	position: absolute; bottom: -2px; right: -2px; background-color: #ff6d00; color: #ffffff; font-size: 0.5rem; width: 14px; height: 14px;
	display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid #f5f5f5;
}

.reviews-section .reviewer-info { 
	flex: 1; /* Takes up remaining middle space */
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40px;
	padding-right: 10px; 
}
.reviews-section .reviewer-name { 
	font-weight: 700; 
	font-size: 0.95rem; 
	color: #000000; 
	margin-bottom: 2px; 
	line-height: 1.2; 
	word-break: break-word; /* Allows safe wrapping without breaking flexbox */
}
.reviews-section .review-time { font-size: 0.8rem; color: #7a7a7a; margin-bottom: 0; }

.reviews-section .google-g-logo { 
	flex: 0 0 18px; /* Lock exactly to 18px, pushes naturally to right */
	width: 18px; 
	height: 18px; 
	margin-top: 4px; /* visually align with top of text */
}

.reviews-section .card-stars { color: #fbbc04; font-size: 0.85rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 2px; }
.reviews-section .verified-icon { color: #1a73e8; margin-left: 5px; font-size: 0.9rem; }
.reviews-section .review-text { font-size: 0.9rem; color: #333333; line-height: 1.5; margin-bottom: 0.5rem; flex-grow: 1; }
.reviews-section .read-more { font-size: 0.85rem; color: #7a7a7a; text-decoration: none; font-weight: 500; }

/* Owl Carousel Custom Navigation Styles */
.reviews-section .owl-carousel { position: static; }
.reviews-section .owl-nav {
	position: absolute;
	top: 50%;
	width: calc(100% + 40px);
	left: -20px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	margin-top: 0 !important;
}
.reviews-section .owl-prev, .reviews-section .owl-next {
	pointer-events: auto;
	width: 36px;
	height: 36px;
	background-color: #ffffff !important;
	color: #333333 !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 1rem !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease !important;
}
.reviews-section .owl-prev:hover, .reviews-section .owl-next:hover {
	background-color: #f5f5f5 !important;
	color: #000000 !important;
}
.reviews-section .owl-dots { display: none !important; }

@media (max-width: 991px) {
	.reviews-section { padding: 60px 0; }
	.reviews-section .overall-rating-box { margin-bottom: 2rem; }
	.reviews-section .owl-nav { display: none !important; } /* Hide arrows on touch devices */
}

/* =========================================
   10. FAQ SECTION
   ========================================= */
.faq-rack-section { padding: 80px 0; background-color: #ffffff; }
.faq-rack-section h2 { font-weight: 700; font-size: 2.5rem; color: #000000; margin-bottom: 1rem; }
.faq-rack-section .section-subtitle { color: #7a7a7a; font-size: 1.1rem; margin-bottom: 3.5rem; }

.faq-rack-section .accordion-item {
	border: 1px solid #eaeaea;
	border-radius: 6px !important;
	margin-bottom: 12px;
	overflow: hidden;
}
.faq-rack-section .accordion-button {
	font-weight: 600;
	color: #000000;
	padding: 1.25rem 1.5rem;
	box-shadow: none !important;
	background-color: #ffffff;
	transition: all 0.3s ease;
}
.faq-rack-section .accordion-button:not(.collapsed) {
	background-color: #e60000;
	color: #ffffff;
}
/* Custom Accordion Plus/Minus Icons */
.faq-rack-section .accordion-button::after {
	background-image: none;
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}
.faq-rack-section .accordion-button:not(.collapsed)::after {
	content: '-';
	font-size: 2rem;
	line-height: 0.5;
}

.faq-rack-section .accordion-body {
	padding: 1.5rem;
	color: #333333;
	font-size: 0.95rem;
	line-height: 1.6;
	background-color: #ffffff;
}
.faq-rack-section .faq-image {
	width: 100%;
	height: 100%;
	min-height: 350px;
	object-fit: cover;
	border-radius: 16px;
}
@media (max-width: 991px) {
	.faq-rack-section { padding: 60px 0; }
	.faq-rack-section h2 { font-size: 2rem; }
	.faq-rack-section .faq-image { margin-top: 2rem; min-height: 300px; }
}

/* Display rack section CSS */
.custom-quote-section {
  background-color: #f8f9fa; 
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.custom-quote-section .wrapper-box {
  background-color: #000000;
  border-radius: 24px;
  max-width: 1200px;
}

.custom-quote-section .section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
}

/* Call Button Styling */
.custom-quote-section .btn-call {
  background-color: #d13030;
  border: 1px solid #d13030;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-quote-section .btn-call:hover {
  background-color: #b52828;
  border-color: #b52828;
  color: #ffffff;
}

/* WhatsApp Button Styling */
.custom-quote-section .btn-whatsapp {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-quote-section .btn-whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Form Card Styling */
.custom-quote-section .form-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.custom-quote-section .form-title {
  font-size: 1.5rem;
  color: #1a1a1a;
}

/* Form Input Styling */
.custom-quote-section .form-control {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  box-shadow: none;
}

.custom-quote-section .form-control:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-quote-section .form-control::placeholder {
  color: #6c757d;
  opacity: 0.8;
}

/* Submit Button Styling */
.custom-quote-section .btn-submit {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-quote-section .btn-submit:hover {
  background-color: #333333;
  color: #ffffff;
}

/* Mobile Responsiveness Tweaks */
@media (max-width: 991px) {
  .custom-quote-section .section-title {
	font-size: 2rem;
  }
  .custom-quote-section .wrapper-box {
	border-radius: 16px;
  }
}

@media (max-width: 768px) {
	.hero-text-block h6 { font-size: 1rem; letter-spacing: 2px; }
	.hero-text-block h1 { font-size: 2.2rem; }
	.hero-text-block { padding: 30px 20px; left: 0; width: 100%; }
	.navbar .nav-item.dropdown:hover .dropdown-menu { display: none; }
	.navbar .nav-item.dropdown.show .dropdown-menu { display: block; }
	.decorative-a {  } 
	.content-card, .content-card-gray { padding: 1.5rem; }
	.custom-expertise-list li::before { display: none; }
	.bg-number-large { font-size: 8rem; top: 30%; }
	.faq-section::before { background: rgba(255,255,255,0.95); }
	.stat-bg-number { font-size: 5rem; }
	.stat-number { font-size: 2.5rem; }
	.stats-box { padding: 30px 15px; }
}