/* --- Blog Card Styles (Interactive) --- */
.blog-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.13);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
}
.blog-item-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.blog-item-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-item:hover .blog-item-img img {
    transform: scale(1.08) rotate(-1deg);
}
.blog-date {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--custom-blue), var(--primary-red));
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.13);
    padding: 8px 14px;
    text-align: center;
    font-weight: 700;
    z-index: 2;
    min-width: 44px;
}
.blog-date strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.1;
}
.blog-date span {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.blog-item-info {
    padding: 26px 22px 22px 22px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-item-meta ul {
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
    display: flex;
    gap: 18px;
    font-size: 0.97rem;
    color: var(--text-gray);
}
.blog-item-meta ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-item-meta ul li a:hover {
    color: var(--custom-blue);
}
.blog-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--deep-black);
    transition: color 0.2s;
}
.blog-title a {
    color: inherit;
    text-decoration: none;
}
.blog-title a:hover {
    color: var(--primary-red);
}
.blog-item-info p {
    color: #555;
    font-size: 1.01rem;
    margin-bottom: 18px;
    min-height: 48px;
}
.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(90deg, var(--custom-blue) 0%, var(--primary-red) 100%);
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.10);
    transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
.theme-btn i {
    margin-left: 6px;
    font-size: 1.1em;
    transition: transform 0.22s;
}
.theme-btn:hover {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--custom-blue) 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(44, 62, 80, 0.16);
}
.theme-btn:hover i {
    transform: translateX(4px);
}
@media (max-width: 991px) {
    .blog-item-img img {
        height: 180px;
    }
    .blog-item-info {
        padding: 18px 12px 16px 12px;
    }
}
@media (max-width: 767px) {
    .blog-item-img img {
        height: 140px;
    }
    .blog-item-info {
        padding: 14px 7px 12px 7px;
    }
    .blog-title {
        font-size: 1.02rem;
    }
}
/* --- End Blog Card Styles --- */
/* Navigation CSS */
:root {
	--primary-red: #e31e24;
	--deep-black: #1a1a1a;
	--pure-white: #ffffff;
    --top-nav-bg: #230254;
    --custom-blue-dark: #230254;
    --custom-blue: #1874c1;
    --gold-accent: #f5c518;
    --border-soft: rgba(26, 26, 26, 0.08);
	--gray-bg: #f8f9fa;
	--border-color: rgba(26, 26, 26, 0.12);
    --m-red: #e31e24; 
    --m-dark: #121416;
    --m-white: #ffffff;
	--movelixx-red: #e31e24;
    --category-green: #447c21; /* Exact green from your image */
    --movelixx-black: #1a1a1a;
    --text-gray: #666666;
	
}
body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-light);
            color: var(--primary-dark);
            line-height: 1.6;
        }

.floating-scroll-top {
	position: fixed;
	right: 16px;
	bottom: 20px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    background: var(--custom-blue);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
	z-index: 1040;
}

.floating-scroll-top i {
	font-size: 20px;
	line-height: 1;
}

.floating-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.floating-scroll-top:hover,
.floating-scroll-top:focus-visible {
	color: #fff;
    background: var(--custom-blue-dark);
}

@media (max-width: 767.98px) {
	.floating-scroll-top {
		right: 10px;
		bottom: 16px;
	}
}

.top-navbar {
	background: var(--top-nav-bg);
	padding: 8px 0;
	font-size: 16px;
    color: var(--pure-white);
	border-bottom: 1px solid var(--border-color);
}

.top-navbar .container > .d-flex {
	gap: 14px;
	min-height: 34px;
}

.top-navbar .container > .d-flex > .d-flex {
	flex-wrap: wrap;
	row-gap: 6px;
}

.top-navbar a:hover {
    color: var(--primary-red) !important;
	text-decoration: none;
}

.top-navbar .second-row {
	line-height: 1.25;
	letter-spacing: 0.2px;
}

.top-navbar .second-row a,
.top-navbar .second-row span {
	white-space: nowrap;
}

.btn-branch {
	background-color: #fc5253;
	border: none;
	color: var(--pure-white) !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 6px 15px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-branch {
	border-radius: 25px;
}

.btn-branch:hover {
	background-color: var(--pure-white) !important;
	color: var(--deep-black) !important;
}

.main-navbar {
    background: var(--pure-white);
	padding: 2px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 1100;
}


.main-navbar .container > .d-flex {
	min-height: 78px;
	gap: 16px;
}

.navbar-brand {
	display: inline-flex;
	align-items: center;
	max-width: min(62vw, 640px);
}

.navbar-brand img {
	max-height: 80px;
	width: auto;
}

.action-buttons {
	margin-left: auto;
	gap: 12px !important;
}

.action-buttons .quote-btn {
	background: linear-gradient(135deg, #ff5959 0%, #e31e24 100%);
	color: var(--pure-white);
	padding: 12px 30px;
	border-radius: 18px;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: 0 10px 22px rgba(227, 30, 36, 0.28);
	transition: all 0.28s ease;
}

.action-buttons .quote-btn:hover {
	color: var(--pure-white);
	background: linear-gradient(135deg, #ff6f6f 0%, #ff2f37 100%);
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(227, 30, 36, 0.34);
}

.hamburger-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 10px;
}

.hamburger-btn i {
	font-size: 40px;
    color: var(--deep-black);
}

.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	min-height: 100vh;
	background-color: transparent;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	overflow: hidden;
	box-sizing: border-box;
	overflow-x: clip;
	overscroll-behavior: contain;
	isolation: isolate;
}

.fullscreen-menu::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: linear-gradient(rgba(12, 12, 12, 0.22), rgba(12, 12, 12, 0.48)), url('../images/navigation/nav.webp');
	background-size: cover;
	background-position: center;
	filter: blur(4px) brightness(1.08);
	transform: none;
	z-index: 0;
}

.fullscreen-menu::after {
	content: '';
	position: fixed;
	inset: 0;
	background: url('../images/logo/logoo.jpeg') center/220px auto no-repeat;
	opacity: 0.08;
	pointer-events: none;
	z-index: 1;
}

.fullscreen-menu.is-open {
	display: flex;
	overflow-y: auto !important;
	overflow-x: clip !important;
}

.close-menu-btn {
	top: 20px;
	right: 20px;
	z-index: 2010;
	display: none;
	visibility: hidden;
	opacity: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(227, 30, 36, 0.9) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: opacity 0.2s ease;
}

.fullscreen-menu.is-open .close-menu-btn {
	display: inline-flex;
	visibility: visible;
	opacity: 1;
	align-items: center;
	justify-content: center;
}

.close-menu-btn i {
	color: #fff !important;
	font-size: 30px !important;
}

.menu-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 38px;
	width: min(92vw, 1320px);
	max-width: 1320px;
	margin: 0 auto;
	padding: 50px 44px;
	box-sizing: border-box;
	border-radius: 20px;
	background: rgba(28, 28, 28, 0.33);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	max-height: calc(100dvh - 120px);
	overflow-y: auto;
}

.logo-menu img {
max-width: 240px;
	height: auto;
}

.menu-title {
	color: #fbec1b;
	font-size: 1.25rem;
	font-weight: 800;
	text-transform: uppercase;
	border-left: 4px solid var(--primary-red);
	padding-left: 12px;
	margin-bottom: 18px;
	display: block;
}

.menu-section ul li a,
.contact-info a,
.contact-info p {
	color: var(--pure-white);
	text-decoration: none;
	font-size: 18px;
	line-height: 1.45;
	transition: 0.3s;
}

.menu-section ul li a:hover,
.contact-info a:hover {
	color: var(--primary-red);
	padding-left: 10px;
}

.social-icons a {
	background: var(--primary-red);
	width: 45px;
	height: 45px;
	color: var(--pure-white) !important;
	font-size: 18px;
}

@media (max-width: 991px) {
	.top-navbar .second-row {
		display: none !important;
	}

	.navbar-brand img {
		max-height: 70px;
	}

	.navbar-brand {
		max-width: 70vw;
	}

	.action-buttons {
		gap: 10px !important;
	}

	.fullscreen-menu {
		align-items: flex-start;
		padding-top: 72px;
		padding-bottom: 16px;
	}

	.menu-content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
		width: min(92vw, 980px);
		margin-top: 0;
		padding: 34px 26px;
		max-height: calc(100dvh - 100px);
		overflow-y: auto;
		overflow-x: hidden;
	}

	.close-menu-btn {
		top: 14px;
		right: 14px;
		width: 46px;
		height: 46px;
	}

	.fullscreen-menu::after {
		background-size: 180px auto;
		opacity: 0.07;
	}
}

@media (max-width: 767px) {
	.top-navbar {
		padding: 6px 0;
	}

	.top-navbar .container > .d-flex {
		flex-direction: column;
		align-items: center !important;
		gap: 8px;
	}

	.top-navbar .container > .d-flex > .d-flex {
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px !important;
	}

	.phone-text {
		font-size: 12px;
	}

	.action-buttons .quote-btn {
		padding: 10px 16px;
		font-size: 13px;
		border-radius: 14px;
	}

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

	.navbar-brand {
		max-width: 72vw;
	}

	.fullscreen-menu {
		padding: 66px 12px 12px;
	}

	.menu-content {
		grid-template-columns: 1fr;
		width: min(92vw, 560px);
		margin-top: 0;
		padding: 24px 18px;
		border-radius: 16px;
		max-height: calc(100dvh - 82px);
		overflow-x: hidden;
	}

	.menu-title {
		font-size: 1.1rem;
	}

	.menu-section ul li a,
	.contact-info a,
	.contact-info p {
		font-size: 16px;
	}
}

/* Slider CSS */
.mv-hero-banner {
	min-height: clamp(560px, 72vh, 760px);
	display: flex;
	align-items: center;
	isolation: isolate;
}

.mv-hero-bg-carousel,
.mv-hero-bg-carousel .carousel-inner,
.mv-hero-bg-carousel .carousel-item {
	position: absolute;
	inset: 0;
	height: 100%;
}

.mv-hero-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.mv-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(102deg, rgba(8, 13, 26, 0.56) 0%, rgba(8, 13, 26, 0.3) 50%, rgba(8, 13, 26, 0.12) 100%);
	z-index: 1;
	pointer-events: none;
}

.mv-hero-bg-carousel .carousel-control-prev,
.mv-hero-bg-carousel .carousel-control-next {
	z-index: 3;
	width: 8%;
}

.mv-hero-banner .container,
.mv-hero-banner .row {
	position: relative;
	z-index: 2;
}

.mv-hero-content-card {
	background: rgba(18, 26, 44, 0.36);
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 42px 68px;
	backdrop-filter: blur(7px);
	text-align: center;
	border-top-left-radius: 60px;
	border-bottom-right-radius: 60px;
}

.mv-hero-title {
	font-size: clamp(2.2rem, 4vw, 4.6rem);
	line-height: 1.08;
	margin-bottom: 10px;
}

.mv-phone-display {
	width: min(100%, 520px);
	margin: 0 auto;
	border-radius: 14px;
	background: #df3048;
	color: #fff;
	padding: 18px 28px;
	text-decoration: none;
	box-shadow: 0 16px 30px rgba(84, 13, 24, 0.35);
	transform: scale(1.12);
	opacity: 0.9;
	transition: transform 0.55s cubic-bezier(0.21, 1, 0.26, 1), opacity 0.55s ease, box-shadow 0.55s ease;
}

.mv-phone-display.is-settled {
	transform: scale(1);
	opacity: 1;
	box-shadow: 0 10px 22px rgba(84, 13, 24, 0.28);
}

.mv-phone-display:hover {
	background: #cb1f37;
}

.mv-phone-display-number {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: 1.5px;
	line-height: 1.2;
}

.mv-phone-display-number i {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.mv-phone-display-number span {
	display: inline-block;
	transform: scale(0.7);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mv-phone-display-number span.animate {
	transform: scale(1);
	opacity: 1;
}

.mv-hero-quote-strip {
	position: relative;
	margin-top: -46px;
	z-index: 12;
}

.mv-hero-banner .text-slider {
	color: #a40606;
}

.mv-hero-banner .badge {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	padding: 8px 14px;
}

.mv-hero-bottom-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.mv-hero-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: #1f2937;
	border-radius: 10px;
	padding: 6px 12px;
	font-weight: 700;
}

.mv-hero-rating-badge img {
	width: 20px;
	height: 20px;
}

.mv-hero-know-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	border-radius: 10px;
	padding: 8px 18px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.35s ease;
	backdrop-filter: blur(4px);
}

.mv-hero-know-more-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
	.mv-hero-banner {
		min-height: 560px;
		padding-top: 36px;
		padding-bottom: 72px;
	}

	.mv-hero-content-card {
		padding: 24px 24px;
	}

	.mv-phone-display-number {
		font-size: 1.5rem;
	}

	.mv-phone-display-number i {
		font-size: 1.8rem;
	}

	.mv-hero-bottom-actions {
		gap: 10px;
		margin-top: 12px;
	}

	.mv-hero-know-more-btn {
		padding: 6px 14px;
		font-size: 0.9rem;
	}

	.mv-hero-quote-strip {
		margin-top: -34px;
	}
}

@media (max-width: 767.98px) {
	.mv-hero-banner {
		min-height: 500px;
		padding-top: 28px;
		padding-bottom: 64px;
	}

	.mv-hero-bg-carousel .carousel-control-prev,
	.mv-hero-bg-carousel .carousel-control-next {
		width: 12%;
	}
}

/* Quote Form CSS */
.mv-inline-quote-card {
	background: rgba(7, 7, 7, 0.66);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 12px 34px rgba(16, 8, 8, 0.35);
	backdrop-filter: blur(6px);
	width: 100%;
}

.mv-inline-quote-card .row {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 0.9rem;
}

.mv-inline-quote-label {
	display: inline-block;
	font-size: 1.05rem;
	font-weight: 700;
	color: #101010;
	margin-bottom: 10px;
	background: #ffc400;
	padding: 3px 10px;
	border-radius: 4px;
	line-height: 1.2;
}

.mv-inline-quote-label i {
	display: none;
}

.mv-inline-quote-input,
.mv-inline-quote-select {
	width: 100%;
	background: #f5f5f5;
	border: 2px solid #ffc400;
	border-radius: 6px;
	color: #2b2b2b;
	padding: 10px 14px;
	font-size: 1.02rem;
	font-weight: 600;
	height: 48px;
}

.mv-inline-quote-select {
	text-overflow: ellipsis;
}

.mv-inline-quote-input:focus,
.mv-inline-quote-select:focus {
	border-color: #ffd84d;
	box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.25);
	outline: 0;
}

.mv-inline-quote-input::placeholder {
	color: #6c757d;
	font-weight: 600;
}

.mv-inline-quote-submit {
	width: 100%;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(180deg, var(--primary-red, #e31e24) 0%, #b81218 100%);
	color: #fff;
	font-size: clamp(1.1rem, 2.1vw, 1.6rem);
	font-weight: 700;
	min-height: 48px;
	line-height: 1;
	padding: 0.7rem 1rem;
}

.mv-inline-quote-submit:hover {
	background: linear-gradient(180deg, #ff454b 0%, var(--primary-red, #e31e24) 100%);
	color: #fff;
}

#resultquoteform {
	color: #fff;
}


@media (max-width: 991.98px) {
	.mv-inline-quote-card {
		padding: 16px;
	}

	.mv-inline-quote-label {
		font-size: 0.95rem;
		margin-bottom: 8px;
	}

	.mv-inline-quote-submit {
		font-size: 1.2rem;
	}

	.mv-inline-quote-input,
	.mv-inline-quote-select {
		height: 46px;
		font-size: 0.98rem;
	}
}

@media (max-width: 767.98px) {
	.mv-hero-quote-strip {
		margin-top: -18px;
	}

	.mv-inline-quote-card {
		padding: 14px;
		border-radius: 10px;
	}

	.mv-inline-quote-label {
		font-size: 0.9rem;
		padding: 3px 8px;
	}

	.mv-inline-quote-input,
	.mv-inline-quote-select {
		height: 44px;
		padding: 8px 11px;
		font-size: 0.95rem;
	}

	.mv-inline-quote-submit {
		min-height: 44px;
		font-size: 1.05rem;
	}
}

@media (max-width: 575.98px) {
	.mv-inline-quote-card .row {
		--bs-gutter-y: 0.75rem;
	}
}

/* homepage specific styles */

.mv-home-about-section {
	overflow-x: hidden;
}

.mv-home-about-row {
	--bs-gutter-x: 1.5rem;
}

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

        .text-red { color: var(--primary-red); }
        .bg-red { background-color: var(--primary-red); }

        /* Owner Card Design */
        

        .owner-img-container {
            background-color: var(--deep-black);
            border-radius: 1.5rem;
			overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .owner-img-container img {
            width: 100%;
			height: 480px;
			object-fit: cover;
            opacity: 0.95;
			transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .owner-img-container:hover img {
			transform: scale(1.08);
        }

        /* Feature Styling */
        .feature-item {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            background: rgba(227, 30, 36, 0.08);
            color: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
        }
        .iba-section{
            background-color: rgb(10 65 119) !important;
        }

        .btn-custom {
            background: var(--custom-blue-dark);
            color: var(--pure-white);
            padding: 14px 38px;
            border-radius: 12px;
            font-weight: 700;
            border: none;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-custom:hover {
            background: var(--primary-red);
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
        }

		.mv-about-eyebrow {
			letter-spacing: 2px;
		}

		.mv-about-divider {
			width: 50px;
			height: 4px;
			border-radius: 10px;
		}

		.mv-about-subtitle {
			font-size: 2rem;
		}

		.mv-about-description {
			line-height: 1.8;
			font-size: 1.05rem;
		}

		#mv-services-title {
			font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
			font-weight: 600;
			letter-spacing: -0.02em;
		}

		#mv-services-title {
			line-height: 1.12;
		}

        /* Animation timings */
        .animate__animated {
			--animate-duration: 0.8s;
			animation-duration: var(--animate-duration);
			animation-fill-mode: both;
		}

		.animate__fadeInLeft {
			animation-name: mvFadeInLeft;
		}

		.animate__fadeInRight {
			animation-name: mvFadeInRight;
		}

		@keyframes mvFadeInLeft {
			from {
				opacity: 0;
				transform: translate3d(-40px, 0, 0);
			}
			to {
				opacity: 1;
				transform: translate3d(0, 0, 0);
			}
		}

		@keyframes mvFadeInRight {
			from {
				opacity: 0;
				transform: translate3d(40px, 0, 0);
			}
			to {
				opacity: 1;
				transform: translate3d(0, 0, 0);
			}
		}

		@keyframes mvFadeInUp {
			from {
				opacity: 0;
				transform: translate3d(0, 40px, 0);
			}
			to {
				opacity: 1;
				transform: translate3d(0, 0, 0);
			}
		}

		@media (prefers-reduced-motion: reduce) {
			.animate__animated {
				animation: none !important;
				opacity: 1 !important;
			}
		}

		@media (max-width: 1199.98px) {
			.owner-img-container img {
				height: 430px;
			}
		}

		@media (max-width: 991.98px) {
			.section-padding {
				padding: 36px 0;
			}

			.mv-home-about-media,
			.mv-home-about-content {
				text-align: center;
			}

			.mv-home-about-content .ps-lg-4 {
				padding-left: 0 !important;
			}

			.owner-wrapper {
				margin-bottom: 30px;
				max-width: 460px;
				margin-left: auto;
				margin-right: auto;
			}

			.owner-img-container img {
				height: 390px;
			}

			.feature-item {
				margin-bottom: 14px;
				max-width: 360px;
				margin-left: auto;
				margin-right: auto;
				text-align: left;
			}

			.btn-custom {
				width: auto;
				display: inline-flex;
				justify-content: center;
				padding: 12px 18px;
			}

		}

		@media (max-width: 767.98px) {
			.section-padding {
				padding: 30px 0;
			}

			

			.owner-img-container img {
				height: 320px;
			}

			.feature-item {
				gap: 10px;
				margin-bottom: 12px;
			}

			.feature-icon {
				width: 36px;
				height: 36px;
				font-size: 0.85rem;
			}

		}

		@media (max-width: 575.98px) {
			.owner-img-container img {
				height: 350px;
			}

			.btn-custom {
				font-size: 0.95rem;
			}
		}

    .section-padding { padding: 60px 0; }

        /* SEO Header Style */
        .header-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--gold-accent));
            margin: 15px auto;
            border-radius: 2px;
        }

        /* Optimized Service Card */
        .service-card {
            background: var(--pure-white);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 35px 25px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 0;
            background: var(--deep-black);
        }

        .service-card:hover::after {
            background: #2c435c;
            transition: height 0.3s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--gold-accent);
        }

.mv-service-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 25px 30px;
}

.mv-service-image {
	width: calc(100% + 50px);
	height: 210px;
	max-width: none;
	object-fit: cover;
	object-position: center;
	border-radius: 16px 16px 0 0;
	margin-bottom: 24px;
	display: block;
	margin-top: 0;
	margin-left: -25px;
	margin-right: -25px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .mv-service-image {
	transform: scale(1.06);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
	.mv-service-image {
		width: calc(100% + 50px);
		height: 185px;
	}
}

@media (max-width: 575.98px) {
	.mv-service-card {
		padding: 0 18px 24px;
	}

	.mv-service-image {
		width: calc(100% + 36px);
		height: 165px;
		margin-left: -18px;
		margin-right: -18px;
	}
}
        

        .service-card:hover::after { height: 100%; }

        .service-card:hover h3, .service-card:hover p { color: var(--pure-white) !important; }

        .icon-circle {
            width: 65px;
            height: 65px;
            background: rgba(227, 30, 36, 0.08);
            color: var(--primary-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .service-card:hover .icon-circle {
            background: var(--gold-accent);
            color: var(--deep-black);
        }

        .btn-link-custom {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 15px;
        }

        .service-card:hover .btn-link-custom {
             color: var(--gold-accent);
             }

		.mv-services-section {
			overflow-x: hidden;
        
		}

		.mv-services-header {
			margin-bottom: 2.25rem;
		}

		.mv-services-eyebrow {
			letter-spacing: 2px;
		}

		.mv-services-accent {
			color: var(--primary-red);
		}

		.mv-services-divider {
			width: 50px;
			height: 4px;
			border-radius: 10px;
		}

		.mv-service-card {
			height: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
		}

		.mv-service-link {
			margin-top: auto;
			align-self: center;
		}

		.site-footer {
            position: relative;
            background: var(--top-nav-bg);
            color: rgba(255, 255, 255, 0.82);
            border-top: 0;
            margin-top: 0 !important;
            overflow: hidden;
		}

		.site-footer__topline {
			display: none;
		}

		.footer-brand-logo-link {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 14px 18px;
			border-radius: 18px;
			background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 247, 247, 0.92) 100%);
			border: 1px solid rgba(245, 197, 24, 0.55);
			box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
			max-width: min(100%, 250px);
		}

		.footer-brand-logo-img {
			display: block;
			width: 100%;
			height: auto;
			max-width: 230px;
			max-height: 88px;
			object-fit: contain;
		}

		.footer-intro {
			margin-top: 18px;
			font-size: 0.98rem;
			line-height: 1.72;
		}

		.footer-title::after,
		.footer-list i,
		.footer-contact-row i,
		.footer-social a i,
		.footer-direction-btn i {
			color: var(--gold-accent);
		}

		.footer-title {
			font-size: 1.05rem;
			font-weight: 800;
			letter-spacing: 0.4px;
			text-transform: uppercase;
			margin-bottom: 16px;
			color: var(--pure-white);
			position: relative;
			padding-bottom: 12px;
		}

		.footer-title::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			width: 54px;
			height: 3px;
			border-radius: 999px;
			background: linear-gradient(90deg, var(--movelixx-red), var(--gold-accent));
		}

		.footer-list {
			display: grid;
			gap: 10px;
		}

		.footer-list a {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			text-decoration: none;
			color: rgba(255, 255, 255, 0.78);
			line-height: 1.4;
			transition: color 0.2s ease, transform 0.2s ease;
		}

		.footer-list a i {
			font-size: 0.95rem;
			flex-shrink: 0;
		}

		.footer-list a:hover,
		.footer-list a:focus-visible {
			color: var(--pure-white);
			transform: translateX(3px);
		}

		.footer-list--services a i {
			font-size: 1rem;
		}

		.footer-contact {
			display: grid;
			gap: 12px;
			font-style: normal;
		}

		.footer-contact-row {
			display: flex;
			align-items: flex-start;
			gap: 12px;
			color: rgba(255, 255, 255, 0.8);
			line-height: 1.55;
		}

		.footer-contact-row i {
			margin-top: 3px;
			font-size: 1rem;
			flex-shrink: 0;
		}

		.footer-contact-row a {
			color: inherit;
			text-decoration: none;
			min-width: 0;
		}

		.footer-contact-row-email a {
			overflow-wrap: anywhere;
			word-break: break-word;
		}

		.footer-contact-row a:hover,
		.footer-contact-row a:focus-visible {
			color: var(--pure-white);
		}

		.footer-social {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
		}

		.footer-social a {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 42px;
			height: 42px;
			border-radius: 50%;
			text-decoration: none;
			background: rgba(255, 255, 255, 0.05);
			border: 1px solid rgba(255, 255, 255, 0.08);
			transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
		}

		.footer-social a:hover,
		.footer-social a:focus-visible {
			background: rgba(245, 197, 24, 0.12);
			border-color: rgba(245, 197, 24, 0.36);
			transform: translateY(-2px);
		}

		.footer-direction-btn {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			padding: 12px 18px;
			border-radius: 999px;
			text-decoration: none;
			font-weight: 700;
			background: linear-gradient(135deg, rgba(227, 30, 36, 0.16) 0%, rgba(245, 197, 24, 0.14) 100%);
			border: 1px solid rgba(245, 197, 24, 0.28);
			color: var(--pure-white);
			transition: transform 0.2s ease, background-color 0.2s ease;
		}

		.footer-direction-btn:hover,
		.footer-direction-btn:focus-visible {
			transform: translateY(-2px);
			color: var(--pure-white);
			background: linear-gradient(135deg, rgba(227, 30, 36, 0.22) 0%, rgba(245, 197, 24, 0.2) 100%);
		}

		.footer-bottom {
			border-top: 1px solid rgba(255, 255, 255, 0.1);
			color: rgba(255, 255, 255, 0.72);
		}

		.footer-bottom-links a {
			color: rgba(255, 255, 255, 0.82);
			text-decoration: none;
		}

		.footer-bottom-links a:hover,
		.footer-bottom-links a:focus-visible {
			color: var(--gold-accent);
		}
	.floating-call-btn {
    position: fixed;
    bottom: 15px;
    right: 6px;
    z-index: 999;
}
.call-btn-inner {
    background-color: transparent;
    /* box-shadow: 4px 4px 5px #000000; */
    border-radius: 5px;
}
.call-btn-inner img {
    height: 45px;
    width: 230px;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 85px;
    right: 10px;
    z-index: 999;
}
.whatsapp-btn-inner {
    background-color: transparent;
    /* box-shadow: 4px 4px 5px #000000; */
    border-radius: 5px;
}
.whatsapp-btn-inner img {
    height: 45px;
    width: 210px;
}

@keyframes bounce-float-btn {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-8px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-4px); }
    80% { transform: translateY(0); }
}

.floating-call-btn,
.floating-whatsapp-btn {
    animation: bounce-float-btn 2.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
}



		@media (max-width: 991.98px) {
			.footer-brand-logo-link {
				max-width: 220px;
			}
		}

		@media (max-width: 767.98px) {
			.footer-brand-logo-link {
				max-width: 200px;
				padding: 12px 14px;
			}

			.footer-brand-logo-img {
				max-height: 76px;
			}

			.footer-title {
				font-size: 1rem;
			}
		}

		@media (max-width: 575.98px) {
			.footer-brand-logo-link {
				max-width: 180px;
			}

			.footer-brand-logo-img {
				max-height: 68px;
			}

			.footer-list a,
			.footer-contact-row,
			.footer-intro {
				font-size: 0.95rem;
			}

			.footer-social a {
				width: 40px;
				height: 40px;
			}
		}

        @media (max-width: 768px) {
             .section-padding { 
                padding: 40px 0;
             } 
        }

        /* process */
        .process-section {
            background-color:#1b6eb4;
            position: relative;
            overflow: hidden;
        }

        .section-sublabel {
            letter-spacing: 3px;
        }

        /* Step Card Styling */
        .step-card {
            background-color: var(--deep-black);
            padding: 35px 15px 20px;
            border-radius: 4px;
            height: auto; 
            transition: transform 0.3s ease;
            position: relative;
            z-index: 2;
            border: 1px solid var(--border-soft);
        }

        .step-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }

        /* Ribbon Icon Styling with Bootstrap Icons */
        .ribbon-icon {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-red);
            width: 55px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
            color: var(--pure-white);
            font-size: 1.6rem;
            border: 1px solid rgba(255,255,255,0.2);
            z-index: 3;
        }

        /* Dotted Circle for Step Number */
        .step-circle {
            width: 40px;
            height: 40px;
            border: 2px dashed rgba(255,255,255,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 35px;
            color: var(--pure-white);
            font-weight: 800;
            font-size: 0.9rem;
            background: var(--primary-red);
        }

        .step-desc {
            color: white;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* Desktop Connectors - Simplified to CSS Borders to avoid SVG */
        @media (min-width: 992px) {
            .connector-line {
                position: absolute;
                top: 55px;
                right: -25%;
                width: 50%;
                height: 2px;
                border-top: 2px dashed rgba(255,255,255,0.3);
                z-index: 1;
            }
        }

        /* Centered CTA Button */
        .btn-book {
            background-color: var(--pure-white);
            color: var(--primary-red);
            font-weight: 800;
            padding: 12px 45px;
            border-radius: 4px;
            border: none;
            font-size: 0.95rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: 0.3s;
        }

        .btn-book:hover {
            background-color: var(--deep-black);
            color: var(--pure-white);
            transform: scale(1.05);
            box-shadow: 0 4px 15px var(--gold-accent);
        }
		/* about section 8*/
		.breadcrumb-hero {
			background: linear-gradient(180deg, rgba(6, 20, 34, 0.18) 0%, rgba(6, 20, 34, 0.66) 62%, rgba(6, 20, 34, 0.86) 100%), url('../images/breadcrumb/breadcrumb img.avif') center/cover no-repeat;
			min-height: clamp(210px, 30vw, 340px);
            position: relative;
            text-align: center;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 40px 0;
        }

		.breadcrumb-hero::before {
            content: "";
            position: absolute;
			inset: 0;
			background: linear-gradient(90deg, rgba(5, 15, 26, 0.24) 0%, rgba(5, 15, 26, 0.06) 48%, rgba(5, 15, 26, 0.22) 100%);
            z-index: 0;
        }

        .breadcrumb-hero .container { position: relative; z-index: 2; }

        .page-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 8px;
			color: rgb(236, 217, 43);
        }

        .page-description {
            font-size: 16px;
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-flex;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .breadcrumb-item a { color: var(--pure-white) !important; text-decoration: none; font-size: 17px; }
        .breadcrumb-item.active { color: var(--primary-red) !important; font-weight: 700; font-size: 17px; }
        .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); content: "\F285"; font-family: "bootstrap-icons"; }

        /* --- OWNER & CONTENT SECTION (UNIQUE CLASSES FOR ABOUT PAGE) --- */
        .ab-owner-wrapper {
            position: relative;
            padding: 10px;
        }

        .ab-owner-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 80%;
            height: 90%;
            background: var(--primary-red);
            border-radius: 25px;
            z-index: 0;
            opacity: 0.1;
        }

        .ab-owner-container {
            position: relative;
            z-index: 1;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 30px var(--border-soft);
            border: 1px solid var(--border-color);
        }

        .ab-owner-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .ab-exp-badge {
            position: absolute;
            bottom: 30px;
            right: -10px;
            background: var(--primary-red);
            color: var(--pure-white);
            padding: 15px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(227, 30, 36, 0.25);
            z-index: 2;
        }

        .ab-exp-badge h3 { font-size: 28px; font-weight: 900; margin: 0; }
        .ab-exp-badge p { font-size: 11px; text-transform: uppercase; margin: 0; font-weight: 700; line-height: 1.2; }

        .ab-content-tag {
            color: var(--primary-red);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 12px;
            margin-bottom: 10px;
            display: block;
        }

        .ab-main-heading {
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--deep-black);
        }

        .ab-main-heading span { color: var(--primary-red); }

        .ab-para {
            font-size: 16px;
            line-height: 1.7;
            color: black;
            margin-bottom: 20px;
        }

		.ab-feature-panel {
			margin-top: 30px;
			border-top: 1px solid var(--border-color);
			padding-top: 24px;
		}

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .ab-owner-wrapper { margin-bottom: 40px; max-width: 450px; margin-left: auto; margin-right: auto; }
            .breadcrumb-hero::after { display: none; }
        }

        @media (max-width: 575.98px) {
    .action-buttons .quote-btn {
        display: none !important;
    }
}
		/* why choose us section 9 */
		.wc-img-height {
            width: 100%;
			height: 420px;
			display: block;
			object-fit: cover;
			object-position: center center;
        }

        .wc-primary-text { color: var(--primary-red); }
        
        .wc-img-box {
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

		.wc-intro-image-focus {
			object-position: center 30%;
		}

		.wc-mission-image-focus {
			object-position: center 20%;
		}

		.wc-vision-image-focus {
			object-position: center 51%;
		}
        
        .wc-img-wrapper:hover .wc-img-box {
            transform: scale(1.05);
        }

        /* Pure CSS Scroll Animations */
        @keyframes revealAnimation {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            animation: revealAnimation linear both;
            animation-timeline: view();
            animation-range: entry 10% cover 30%;
        }

        @supports not (animation-timeline: view()) {
            .reveal { animation: revealAnimation 0.8s ease-out forwards; }
        }

        @media (max-width: 991px) {
            .row-reverse-mobile { flex-direction: column-reverse; }
			.wc-img-height { height: 700px; }
        }

		@media (max-width: 767px) {
			.wc-img-height { height: 320px; }
		}

		@media (max-width: 575.98px) {
			.wc-img-height { height: 450px; }
		}
		/* services section  */
		.sidebar-card {
            border: 1px solid #eee;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

		.sidebar-card.sticky-top {
			top: 110px !important;
			z-index: 10;
		}

        .sidebar-header {
            background-color: #230254;
            color: white;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 18px;
        }

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

        .category-item {
            border-bottom: 1px solid #f0f0f0;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            text-decoration: none;
            color:black;
            font-size: 14px;
            transition: all 0.2s;
        }

        .category-link:hover {
            background-color: #f9f9f9;
            color: var(--category-green);
        }

        .category-link.active-service {
            background-color: #4e5a96;
            color: white;
            font-weight: 600;
            border-left: 4px solid #230254;
        }

        .category-link.active-service i {
            color: white;
        }

		.category-link.category-link-book {
			background-color: #230254;
			color: #fff;
			font-weight: 700;
			justify-content: center;
			gap: 10px;
			text-transform: uppercase;
			letter-spacing: 0.4px;
		}

		.category-link.category-link-book i {
			color: #fff;
		}

		.category-link.category-link-book:hover {
			background-color:rgb(192, 138, 138);
			color: #fff;
		}

        .category-link i {
            font-size: 12px;
            color: #999;
        }

        /* Main Content Styling */
        .main-service-img {
            border-radius: 30px;
			width: 94%;
			max-width: 100%;
			display: block;
			margin: 0 auto 30px;
			height: 360px;
			object-fit: cover;
			object-position: center;
        }

		@media (max-width: 991px) {
			.main-service-img {
				width: 100%;
				height: 300px;
			}
		}

		@media (max-width: 575.98px) {
			.main-service-img {
				width: 100%;
				height: 240px;
			}
		}

        .service-heading {
            color: #f39c12; /* Golden/Orange as per image text */
            font-weight: bold;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .service-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-gray);
            text-align: justify;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: 0.3s;
        }

        .social-btn:hover {
            width: 55px;
            color: white;
        }

        /* Why Choose Us Style */
        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
			gap: 12px;
			margin-top: 16px;
        }

        .why-item {
            display: flex;
            align-items: center;
			gap: 10px;
            font-size: 14px;
			font-weight: 600;
			color: #2f3538;
			background: #fff;
			border: 1px solid #eceff1;
			border-radius: 12px;
			padding: 10px 12px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
			transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
		}

		.why-item:hover {
			transform: translateY(-2px);
			border-color: rgba(227, 30, 36, 0.2);
			box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
		}

		.why-item i {
			color: var(--primary-red);
			font-size: 15px;
        }

        @media (max-width: 991px) {
			.sidebar-card {
				margin-top: 18px;
				margin-bottom: 40px;
			}
            .why-choose-grid { grid-template-columns: 1fr; }
        }

		/* faq section */
		.faq-wrapper {
            padding: 50px 0;
        }

        .faq-header-tag {
            color: var(--primary-red);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            display: block;
            margin-bottom: 10px;
            text-align: center;
        }

        .faq-main-title {
            text-align: center;
            margin-bottom: 50px;
            font-weight: 900;
            font-size: clamp(28px, 5vw, 42px);
            line-height: 1.2;
            color: var(--deep-black);
            text-transform: uppercase;
        }

        .faq-main-title span {
            color: var(--primary-red);
        }

        /* --- ACCORDION STYLING --- */
        .custom-faq-container .accordion-item {
            border: 1px solid var(--border-soft) !important;
            margin-bottom: 15px;
            border-radius: 15px !important;
            box-shadow: 0 4px 12px var(--border-soft);
            transition: all 0.3s ease;
            background: var(--pure-white);
            overflow: hidden;
        }

        .custom-faq-container .accordion-item:hover {
            border-color: var(--primary-red) !important;
            transform: translateY(-2px);
        }

        .custom-faq-container .accordion-button {
            padding: 22px 25px;
            font-weight: 700;
            font-size: 17px;
            color: var(--deep-black);
            background-color: transparent !important;
            box-shadow: none !important;
            text-align: left;
        }

        .custom-faq-container .accordion-button:not(.collapsed) {
            color: #1874c1 !important;
            border-bottom: 1px solid var(--gray-bg);
        }

        /* Plus/Minus Icon using Gold Accent */
        .custom-faq-container .accordion-button::after {
            background-image: none;
            content: '\F282'; 
            font-family: 'bootstrap-icons';
            font-size: 18px;
            transition: 0.4s;
            flex-shrink: 0;
            color: var(--deep-black);
        }

        .custom-faq-container .accordion-button:not(.collapsed)::after {
            transform: rotate(135deg);
            color: var(--primary-red);
        }

        .custom-faq-container .accordion-body {
            padding: 20px 25px 25px 65px;
            color: #555;
            font-size: 15.5px;
            line-height: 1.7;
            background: var(--gray-bg);
        }

        /* --- LARGE RESPONSIVE IMAGE --- */
        .faq-image-container {
            height: 100%;
			min-height: 470px;
            display: flex;
            align-items: center;
        }

        .faq-image-box {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 50px var(--border-soft);
            width: 100%;
            height: 100%;
            border: 1px solid var(--border-soft);
        }

        .faq-image-box img {
            width: 100%;
            height: 100%;
			object-fit: contain;
			object-position: center center;
			background-color: #f8f9fa;
            display: block;
            transition: transform 0.7s ease;
        }

        .faq-image-box:hover img {
            transform: scale(1.05);
        }

        /* Number Badge with Brand Colors */
        .number-badge {
            width: 32px;
            height: 32px;
            background: var(--gray-bg);
            color: var(--deep-black);
            font-weight: 800;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            border: 1px solid var(--border-soft);
        }

        .accordion-button:not(.collapsed) .number-badge {
            background: #1874c1;
            color: var(--pure-white);
        }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .faq-image-container { 
				min-height: 340px; 
				margin-top: 28px; 
            }
            .faq-wrapper { padding: 40px 0; }
        }

        @media (max-width: 576px) {
            .custom-faq-container .accordion-button { font-size: 15px; padding: 18px 15px; }
            .number-badge { margin-right: 10px; width: 28px; height: 28px; font-size: 11px; }
			.faq-image-container { min-height: 280px; }
        }

		/* --- END OF SERVICES & FAQ SECTIONS --- */
		/* States */
		.portfolio-area {
    padding: 40px 0;
    background-color: var(--pure-white);
}

.area-title {
    font-weight: 900;
    font-size: clamp(24px, 4vw, 32px);
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
}

.area-title span {
    color: var(--primary-red);
}

/* --- CLICKABLE CITY CARD --- */
.city-card-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.city-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.15);
}

.city-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    z-index: 1;
}

.city-card:hover img {
    transform: scale(1.12);
}

/* Dark Overlay with Red Tint on Hover */
.city-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.city-card:hover::after {
    background: linear-gradient(to top, rgba(227, 30, 36, 0.7) 0%, rgba(0,0,0,0.4) 100%);
}

/* --- PLUS SIGN ANIMATION --- */
.plus-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 4;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.city-card:hover .plus-sign {
    transform: translate(-50%, -50%) scale(1);
}

.city-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 3;
    text-align: center;
}

.city-name {
    color: var(--pure-white);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .city-card { height: 240px; }
    .plus-sign { width: 40px; height: 40px; font-size: 22px; transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    .city-name { font-size: 17px; }
}

/* galley section */
.gallery-section {
            padding: 60px 0;
        }

        .gallery-title {
            font-weight: 900;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 40px;
            color: var(--brand-black);
        }

        .gallery-title span {
            color: var(--brand-red);
        }

        /* --- CLEAN IMAGE CARD --- */
        .gallery-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Modal Styles for Full View */
        .modal-content {
            background: transparent;
            border: none;
        }
        
        .modal-body {
            padding: 0;
            text-align: center;
        }

        @media (max-width: 768px) {
            .gallery-wrapper { aspect-ratio: 4 / 3; }
        }
		/* --- END OF GALLERY SECTION --- */

		/* contanct section */
		              .glass-card {
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .brand-panel {
            background: #230254;
            padding: 50px;
        }

        .brand-panel p span {
            color: var(--primary-red);
        }

        .icon-box {
            width: 45px;
            height: 45px;
            background: rgba(227, 30, 36, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
        }

        /* ACTION BUTTON DESIGN (Maintained as requested) */
        .move-btn-outline {
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
            padding: 12px 25px;
            border-radius: 12px;
            font-weight: 700;
            transition: all 0.3s ease;
            width: fit-content;
            text-decoration: none;
        }

        .move-btn-outline:hover {
            background: var(--primary-red);
            color: var(--pure-white);
            transform: translateY(-3px);
        }

        /* FORM STYLING */
        .form-panel { padding: 50px; }

        .input-icon-wrapper { position: relative; }
        
        .input-icon-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-red);
        }

        .textarea-icon i { top: 20px; transform: none; }

        .custom-input {
            padding: 12px 16px 12px 45px !important;
            border-radius: 10px;
            border: 1.5px solid #e2e8f0;
            background: var(--gray-bg);
        }

        .custom-input:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.05);
            background: var(--pure-white);
        }

        .submit-btn {
            background: var(--primary-red);
            border: none;
            border-radius: 10px;
            transition: 0.3s;
            color: var(--pure-white);
        }

        .submit-btn:hover {
            background: #c1181d;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px rgba(227, 30, 36, 0.2);
            color: var(--pure-white);
        }

		.contact-map-container {
			height: 450px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		}

        @media (max-width: 991px) {
            .brand-panel, .form-panel { padding: 40px 30px; }
        }

		/* --- END OF CONTACT SECTION --- */
		/* moving charg */
		/* Moving Charges section-only styling (kept in this file as requested) */
    .moving-charges-section {
        background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 48%, #f8f9fb 100%);
    }

    .moving-charges-head .sub-heading {
        color: var(--primary-red, #e31e24);
        letter-spacing: 2px;
        font-size: 0.78rem;
    }

    .moving-charges-title {
        color: var(--deep-black, #1a1a1a);
        font-size: clamp(1.5rem, 2.7vw, 2.2rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .text-deep-red {
        color: var(--primary-red, #e31e24);
    }

    .moving-charges-subtitle {
        color: #4d5562;
        max-width: 760px;
        margin: 0 auto;
    }

    .charge-block {
        background: #ffffff;
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
        padding: 1rem;
    }

    .charge-block-title {
        color: var(--deep-black, #1a1a1a);
        font-size: clamp(1rem, 1.8vw, 1.35rem);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .badge-local,
    .badge-national {
        background: rgba(227, 30, 36, 0.1);
        color: var(--primary-red, #e31e24);
        border: 1px solid rgba(227, 30, 36, 0.24);
        font-size: 0.68rem;
        letter-spacing: 0.3px;
        font-weight: 700;
    }

    .charge-table-wrap {
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 10px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .charge-table {
        margin: 0;
        --bs-table-bg: transparent;
    }

    .charge-table thead th {
        background: linear-gradient(135deg, var(--custom-blue) 0%, #303744 100%);
        color: #ffffff;
        font-weight: 700;
        white-space: nowrap;
        border-bottom: 0;
        padding: 0.9rem 0.8rem;
        font-size: 0.9rem;
        text-transform: capitalize;
    }

    .charge-table tbody td {
        border-color: rgba(26, 26, 26, 0.09);
        padding: 0.8rem;
        font-size: 0.9rem;
        color: #222a35;
        white-space: nowrap;
    }

    .charge-table tbody tr:nth-child(even) {
        background-color: rgba(227, 30, 36, 0.03);
    }

    .charge-table tbody tr:hover {
        background-color: rgba(227, 30, 36, 0.08);
    }

    .charge-table th:first-child,
    .charge-table td:first-child {
        min-width: 220px;
        font-weight: 700;
        color: #101828;
    }

    @media (max-width: 991.98px) {
        .charge-block {
            padding: 0.85rem;
        }

        .charge-table thead th,
        .charge-table tbody td {
            padding: 0.72rem 0.65rem;
            font-size: 0.84rem;
        }
    }

    @media (max-width: 767.98px) {
        .moving-charges-section {
            padding-top: 2.2rem !important;
            padding-bottom: 2.4rem !important;
        }

        .moving-charges-head {
            margin-bottom: 1.2rem !important;
        }

        .charge-block {
            border-radius: 12px;
            margin-bottom: 1rem !important;
        }

        .charge-block-title {
            font-size: 0.98rem;
        }

        .charge-block-title .badge {
            margin-left: 0 !important;
            margin-top: 0.35rem;
        }

        .charge-table-outcity {
            min-width: 880px;
        }

        .charge-table-incity {
            min-width: 760px;
        }

        .charge-table th:first-child,
        .charge-table td:first-child {
            min-width: 180px;
        }
    }

    @media (max-width: 575.98px) {
        .charge-block {
            padding: 0.7rem;
        }

        .charge-table thead th,
        .charge-table tbody td {
            padding: 0.62rem 0.58rem;
            font-size: 0.8rem;
        }

        .moving-charges-subtitle {
            font-size: 0.86rem;
        }
    }
	/* moving charges section end */
	/* client features section */
	.client-logo-image {
        max-height: 80px;
        width: auto;
        object-fit: contain;
    }

    @media (max-width: 767px) {
        .client-logo-image {
            max-height: 42px;
        }
    }
	/* --- END OF CLIENT FEATURES SECTION --- */
	/* flipcoin section */
	.flipcoin-showcase {
        background: radial-gradient(circle at 20% 10%, rgba(255, 214, 94, 0.12), transparent 45%),
                    radial-gradient(circle at 80% 90%, rgba(255, 76, 76, 0.08), transparent 40%),
                    #f7f8fc;
    }

    .flipcoin-showcase .row {
        --bs-gutter-y: 20px;
    }

    .flipcoin-title {
        font-weight: 800;
        letter-spacing: 0.4px;
        color: #15171e;
    }

    .flipcoin-subtitle {
        color: #5f6372;
        max-width: 720px;
        margin: 0 auto;
    }

    .flipcoin-showcase .cert-item {
        height: 100%;
        padding: 10px 12px;
        transition: transform 0.24s ease;
    }

    .flipcoin-showcase .cert-item:hover {
        transform: translateY(-4px);
    }

    .flipcoin-showcase .badge-holder {
        width: 100%;
        margin-bottom: 14px;
    }

    .flipcoin-showcase .img-mask {
        min-height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .flipcoin-showcase .cert-img {
        width: 100%;
        max-width: 700px;
        max-height: 300px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .flipcoin-showcase .cert-title {
        margin: 0;
        font-weight: 800;
        font-size: 14px;
        letter-spacing: 0.5px;
        color: #1e2230;
        text-transform: uppercase;
    }

    @media (max-width: 575.98px) {
        .flipcoin-showcase .img-mask {
            min-height: 150px;
        }

        .flipcoin-showcase .cert-item {
            padding: 6px 10px;
        }
    }
	/* city section */
	.view-service-why-section {
            background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
        }

        .why-card-city {
            background: linear-gradient(to top, #c5161c 0%, #1771bc 72%);
            border: 1px solid #eceff4;
            box-shadow: 0 10px 24px rgba(9, 21, 39, 0.07);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .why-card-city .icon-circle {
            margin-left: auto;
            margin-right: auto;
        }

        .why-card-city:hover {
            transform: translateY(-6px);
            border-color: rgba(227, 30, 36, 0.35);
            box-shadow: 0 14px 30px rgba(227, 30, 36, 0.15);
        }

        .view-service-why-section .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e31e24 0%, #12100c 100%);
            color: #fff;
            font-size: 22px;
        }

        .bg-brand-black {
            background-color: #230254;
        }

        .text-brand-red {
            color: #ff4d4d;
        }

        .bg-brand-red {
            background-color: #e31e24 !important;
        }

        .city-trust-strip .btn:hover {
            background-color: #b2141a !important;
        }

        .who-we-are-section {
            background: #ffffff;
        }

        .who-we-are-image-wrap {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(17, 28, 45, 0.14);
        }

        .who-we-are-tag {
            color: #e31e24;
            letter-spacing: 0.08em;
            font-size: 12px;
        }

        .who-we-are-title {
            color: #1b2331;
            line-height: 1.25;
        }

        @media (max-width: 767px) {
            .city-trust-strip {
                text-align: center;
                justify-content: center !important;
            }

            .who-we-are-section {
                text-align: center;
            }
        }
        

        /* Compact Service Section */
        .city-service-block {
            padding: 40px 0; /* Reduced padding for compact look */
            border-bottom: 1px solid #eee;
        }

        /* Uniform Responsive Image Container */
        .city-service-image-frame {
            position: relative;
            width: 100%;
            padding-top: 66.66%; /* 3:2 Aspect Ratio - Adjust as needed */
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .city-service-image-frame img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures any image fills the frame perfectly */
            transition: transform 0.5s ease;
        }

        .city-service-block:hover .city-service-image-frame img {
            transform: scale(1.08);
        }

        /* Typography Edits */
        .city-service-tagline {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .city-service-block h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .city-service-block p {
            font-size: 0.95rem;
            margin-bottom: 0;
            max-width: 500px;
        }

        /* Layout Flip logic */
        .city-service-flex-reverse {
            flex-direction: row-reverse;
        }

        .city-achievement-section {
            background: var(--custom-blue);
        }

        .city-achievement-card {
            background: #ffffff;
            border: 1px solid #eceff4;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(9, 21, 39, 0.06);
            padding: 24px 16px;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .city-achievement-card::before {
            content: "";
            position: absolute;
            top: -100%;
            left: -30%;
            width: 40%;
            height: 280%;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(227, 30, 36, 0.16) 45%, rgba(255, 255, 255, 0) 100%);
            transform: rotate(18deg);
            transition: left 0.55s ease;
        }

        .city-achievement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(9, 21, 39, 0.14);
            border-color: rgba(227, 30, 36, 0.35);
        }

        .city-achievement-card:hover::before {
            left: 120%;
        }

        .city-achievement-number {
            font-size: 2rem;
            font-weight: 800;
            color: #e31e24;
            line-height: 1;
        }

        .city-achievement-label {
            margin-top: 8px;
            margin-bottom: 0;
            color: #1b2331;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .keywords-content .badge {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            will-change: transform;
        }

        .keywords-content .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(227, 30, 36, 0.28);
        }

        @media (max-width: 991px) {
            .city-service-block { padding: 30px 0; }
            .city-service-content { margin-top: 20px; text-align: left; }
            .city-service-block p { margin: 0; }
            .city-service-block h4 { font-size: 1.5rem; }
        }

        @media (prefers-reduced-motion: reduce) {
            .city-achievement-card,
            .keywords-content .badge {
                transition: none;
            }
        }

        .home-branches-section {
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
            border-radius: 18px;
            border: 1px solid #e7edf5;
        }

        .home-branches-title {
            color: #230254;
            letter-spacing: 0.3px;
        }

        .home-branches-title span {
            color: #e31e24;
        }

        .home-branches-table-wrap {
            border: 1px solid #dfe6f0;
            border-radius: 14px !important;
            box-shadow: 0 10px 24px rgba(23, 45, 78, 0.08) !important;
        }

        .home-branches-table {
            margin-bottom: 0;
        }

        .home-branches-table thead th {
            background: #230254;
            color: #fff;
            border-color: #230254;
            font-size: 0.96rem;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .home-branches-table tbody td {
            border-color: #e7edf5;
            color: #273142;
            font-size: 0.98rem;
            vertical-align: top;
        }

        .home-branches-table th:first-child,
        .home-branches-table td:first-child {
            width: 44px;
            min-width: 44px;
        }

        .home-branches-table th:last-child,
        .home-branches-table td:last-child {
            min-width: 112px;
            white-space: nowrap;
        }

        .home-branches-table tbody tr:nth-child(odd) td {
            background: #f8fbff;
        }

        .home-branch-phone {
            color: #230254;
            font-weight: 700;
            transition: color 0.2s ease;
        }

        .home-branch-phone:hover,
        .home-branch-phone:focus-visible {
            color: #e31e24;
        }

        @media (max-width: 991.98px) {
            .home-branches-section {
                border-radius: 14px;
            }

            .home-branches-table {
                min-width: 560px;
            }

            .home-branches-table thead th {
                font-size: 0.9rem;
            }

            .home-branches-table tbody td {
                font-size: 0.92rem;
            }
        }
