/*Reset some default styles*/
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
margin-block-end: 0;
}

ul[role='list'],
ol[role='list'] {
list-style: none;
}

body {
background: rgba(255, 223, 160, 0.115);
min-height: 100vh;
line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
line-height: 1.1;
}

a:not([class]) {
text-decoration-skip-ink: auto;
color: currentColor;
}

img,
picture {
max-width: 100%;
display: block;
}

input, button,
textarea, select {
font-family: inherit;
font-size: inherit;
}

textarea:not([rows]) {
min-height: 10em;
}

:target {
scroll-margin-block: 5ex;
}

.image-container{
overflow: hidden;
border-radius: 12px;
}

.image-container img{
border-radius: 12px;
}

.video-container iframe{
border-radius: 12px;
}

/* Custom Styles */




:root {
--primary-red: #bd2635;
--dark-red: #92000f;
--darkest-red: rgb(97, 0, 0);
--light-red: #fff5f5;
--primary-blue: #00439b;
--primary-green: #0f7e21;
--text-dark: #333;
}


.bg-dark-red {
background-color: var(--dark-red) !important;
color: white !important;
}

.bg-danger {
background-color: var(--dark-red) !important;
color: white !important;
}

.btn-danger{
background-color: var(--dark-red) !important;
border-color: var(--primary-red) !important;
color: white !important;
}

.text-danger{
color: var(--primary-red) !important;
}

section {
padding-inline: 10px;
}

/* Navigation Bar */
.navbar{
z-index: 999;
}
.navbar {
border-bottom: 3px solid rgba(255, 0, 0, 0.504);
padding: 0;
}

.nav-item.dropdown > .nav-link::after {
transition: transform 0.3s ease;
}

.nav-item.dropdown:hover > .nav-link::after {
transform: rotate(180deg);
}


/* Dropdown Menu */
.dropdown-menu {
border: none;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 0.5rem 0;
margin-top: 0;
min-width: 220px;
animation: fadeInDown 0.3s ease;
}

/* Keep dropdown open on hover - DESKTOP ONLY */
@media (min-width: 992px) {
.nav-item.dropdown:hover > .dropdown-menu {
display: block;
animation: fadeIn 0.2s ease-in;
}
.dropdown-menu {
margin-top: 0;
}

}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Dropdown Items */
.dropdown-item {
padding: 0.75rem 1.5rem;
color: #333;
font-weight: 500;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
}

.dropdown-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 3px;
background-color: #dc3545;
transform: scaleY(0);
transition: transform 0.2s ease;
}

.dropdown-item:hover {
background-color: #fff5f5;
color: #dc3545;
padding-left: 2rem;
}

.dropdown-item:hover::before {
transform: scaleY(1);
}

.dropdown-item:active {
background-color: #ffe5e5;
color: #dc3545;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
transition: transform 0.3s ease;
margin-left: 0.5rem;
}

.dropdown-toggle:hover::after {
transform: translateY(2px);
}

.show > .dropdown-toggle::after {
transform: rotate(-180deg);
}

/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
.dropdown-menu {
border: none;
box-shadow: none;
background-color: #f8f9fa;
margin-left: 1rem;
animation: none;
}

.dropdown-item:hover {
padding-left: 1.5rem;
}
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes scroll {
0% { transform: translateX(25%); }
100% { transform: translateX(-100%); }
}

.scroll-marquee {
animation: scroll linear 30s infinite;
display: inline-block;
white-space: nowrap;
}

/*Slider*/
.hero-section {
position: relative;
min-height: calc(100vh - 141px);
overflow: hidden;
}

.hero-bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.573);
z-index: 1;
}

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

.glass-effect {
background: rgba(0, 0, 0, 0.147);
backdrop-filter: blur(0px);
height: 350px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
width: auto;
}


@media (max-width: 991.98px) {
.carousel-control-prev,
.carousel-control-next {
display: none;
}

.glass-effect {
height: 300px;
}
}

.slider-icon-circle {
width: 40px;
height: 40px;
transition: transform 0.3s ease;
}

.slider-icon-circle:hover {
transform: scale(1.1);
}

.carousel-indicators button {
width: 24px !important;
height: 24px !important;
border-radius: 50%;
opacity: 0.5;
}

.carousel-indicators button.active {
opacity: 1;
}

.form-control:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-danger:hover {
transform: translateY(-2px);
transition: transform 0.2s ease;
}


/*Process*/
.process-section {
background: linear-gradient(135deg, #7b1717 0%, #8a2117 50%, #6e0909 100%);
padding: 20px 0;
color: white;
margin-top: 40px;
position: relative;
overflow: hidden;
}
.process-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(
circle at 20% 50%,
rgba(255, 255, 255, 0.05) 0%,
transparent 50%
);
pointer-events: none;
}
.process-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 2rem;
}
.process-steps {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.step-item {
flex: 1;
text-align: center;
position: relative;
z-index: 2;
}
.step-icon-wrapper {
width: 90px;
height: 90px;
border: 3px solid rgba(255, 255, 255, 0.692);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
transition: all 0.3s ease;
background: rgba(215, 226, 0, 0.05);
backdrop-filter: blur(10px);
}
.step-item:hover .step-icon-wrapper {
border-color: rgba(255, 255, 255, 0.8);
background: rgba(255, 255, 255, 0.1);
transform: scale(1.1);
}

.step-item:hover .step-icon {
color: rgba(255, 255, 255, 0.9);
}

.step-icon {
font-size: 2.5rem;
color: rgba(255, 255, 255, 0.701);
}
.step-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.step-description {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}
.arrow-separator {
font-size: 2rem;
color: rgba(255, 255, 255, 0.4);
flex-shrink: 0;
margin: 0 -0.5rem;
margin-bottom: 3rem;
}
@media (max-width: 991px) {
.process-steps {
flex-direction: column;
}
.arrow-separator {
transform: rotate(90deg);
margin: 1rem 0;
}
.process-title {
font-size: 2rem;
margin-bottom: 3rem;
}
}
@media (max-width: 576px) {
.process-title {
font-size: 1.75rem;
}
.step-icon-wrapper {
width: 75px;
height: 75px;
}
.step-icon {
font-size: 2rem;
}
.step-title {
font-size: 1.25rem;
}
}
/* Unique Section */
.unique-section {
background-color: #e8e8e8;
}

.intro-text {
max-width: 900px;
}

.feature-item {
margin-bottom: 2.5rem;
}

.feature-item h5 {
font-weight: 700;
margin-bottom: 1rem;
}

.feature-item p {
color: #4a4a4a;
line-height: 1.7;
}

.illustration-box {
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.illustration-box img {
border-radius: 15px;
}

.movers-illustration {
width: 100%;
height: auto;
}

/*trust Section*/
.trust-section {
background: rgb(164, 0, 0);
}

.trust-card {
background: white;
border-radius: 15px;
padding: 0.8rem 1rem;
transition: all 0.4s ease;
border: 2px solid transparent;
height: 100%;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trust-card:hover {
transform: translateY(-10px);
border-color: var(--primary-red);
box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15);
}

.icon-wrapper {
width: 100px;
height: 100px;
margin: 0 auto 1.5rem;
background: linear-gradient(135deg, var(--primary-red) 0%, #c82333 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.icon-wrapper::before {
content: '';
position: absolute;
width: 110px;
height: 110px;
border: 2px solid var(--primary-red);
border-radius: 50%;
opacity: 0.3;
}

.icon-wrapper i {
font-size: 3rem;
color: white;
}

.trust-card h5 {
font-weight: 700;
color: #212529;
margin-bottom: 1rem;
}

.trust-card p {
color: #6c757d;
line-height: 1.7;
margin: 0;
}

.iso-badge {
background: #20c997;
}

.star-badge {
background: #ff9800;
}

.worker-badge {
background: #007bff;
}

.trust-badge {
background: var(--primary-red);
}
/*Testimonials*/
.testimonial-section {
background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
min-height: 400px;
}

.testimonial-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
height: 100%;
}

.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.avatar-circle {
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
border: 1px solid #fff;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.name-title {
color: #dc3545;
font-weight: 700;
}

.role-title {
color: #6c757d;
font-size: 0.9rem;
}

.quote-icon {
color: #0d6efd;
opacity: 0.2;
font-size: 3rem;
}

.btn-view-all {
background: transparent;
border: 1px solid white;
color: white;
padding: 6px 8px;
font-size: 1rem;
font-weight: 600;
border-radius: 50px;
box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
transition: all 0.4s ease;
}

.btn-view-all:hover {
transform: scale(1.05);
background: white;
color: black;
}


.avatar-img {
width: 80px;
height: 80px;
}


/*FAqs*/

.section-title {
font-weight: 700;
color: #1a1a1a;
}

.section-subtitle {
color: #495057;
max-width: 700px;
}

.accordion-button {
background: linear-gradient(135deg, #0f6848 0%, #1a8b5f 100%);
color: white;
font-weight: 600;
font-size: 1.05rem;
padding: 1.25rem 1.5rem;
border: none;
box-shadow: 0 4px 12px rgba(15, 104, 72, 0.3);
transition: all 0.3s ease;
}

.accordion-button:hover {
background: linear-gradient(135deg, #1a8b5f 0%, #0f6848 100%);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(15, 104, 72, 0.4);
}

.accordion-button:not(.collapsed) {
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
color: white;
box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

.accordion-button:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
border-color: transparent;
}

.accordion-button::after {
font-family: "bootstrap-icons";
content: "\f282";
transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
transform: rotate(-180deg);
}

.accordion-item {
border: none;
margin-bottom: 1rem;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

.accordion-item:hover {
transform: translateX(5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.accordion-body {
background-color: #ffffff;
padding: 1.5rem;
font-size: 1rem;
color: #495057;
line-height: 1.7;
border-top: 3px solid #0d6efd;
}

.accordion-collapse {
transition: height 0.35s ease;
}

.btn-more-faqs {
background: rgb(0, 73, 208);
border: none;
padding: 8px 14px;
font-size: 1rem;
font-weight: 600;
border-radius: 20px;
color: white;
box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
transition: all 0.3s ease;
}

.btn-more-faqs:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 12px 28px rgba(13, 110, 253, 0.5);
background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
color: white;
}

.faq-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
animation: float 3s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

.faq-number {
width: 35px;
height: 35px;
background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 0.9rem;
box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
margin-right: 1rem;
flex-shrink: 0;
}

.accordion-button {
position: relative;
display: flex;
align-items: center;
}


/*States Section*/

.st__section__title {
position: relative;
padding-bottom: 20px;
}

.st__section__title .display-6 {
color: #1a1a1a;
letter-spacing: -0.5px;
}

.st__section__title .circle {
display: block;
width: 60px;
height: 4px;
background: #dc0000;
margin: 15px auto 0;
border-radius: 2px;
}

.st__service__box {
background: #ffffff;
border: 1px solid #e8e8e8;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
}

.st__service__box:hover {
border-color: #dc0000;
box-shadow: 0 4px 20px rgba(220, 0, 0, 0.1);
transform: translateY(-4px);
}

.st__service__thumb {
position: relative;
overflow: hidden;
aspect-ratio: 4/3;
}

.st__service__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.st__service__box:hover .st__service__thumb img {
transform: scale(1.05);
}

.st__service__content {
padding: 20px;
text-align: center;
background: #ffffff;
}

.state_title {
color: #1a1a1a;
font-size: 18px;
font-weight: 600;
display: block;
}

.st__service__box:hover .state_title {
color: #dc0000;
}

/* Link reset */
.st-service-area a {
text-decoration: none;
display: block;
height: 100%;
}

/* Responsive spacing */
@media (max-width: 991px) {
.st__section__title {
margin-bottom: 30px !important;
}
}

@media (max-width: 767px) {
.st__service__content {
padding: 15px;
}

.state_title {
font-size: 16px;
}
}

/*Breadcrumb Section*/
.breadcrumb-hero {
background: linear-gradient(135deg, #882320 0%, #810016 50%, #980000 100%);
min-height: 280px;
}

.breadcrumb-custom {
background: transparent;
margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
color: #fff;
}

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

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
color: rgba(255, 255, 255, 0.6);
}
/*About Page Styles*/
.section-title {
color: #C41E3A;
position: relative;
}

.feature-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #C41E3A, #DC143C);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin-bottom: 20px;
}

.stat-card {
background: linear-gradient(135deg, #C41E3A, #DC143C);
color: white;
border-radius: 10px;
transition: transform 0.3s ease;
}

.stat-card:hover {
transform: translateY(-5px);
}

.why-choose-card {
border: 2px solid #e9ecef;
border-radius: 10px;
transition: all 0.3s ease;
}

.why-choose-card:hover {
border-color: #C41E3A;
box-shadow: 0 5px 15px rgba(196, 30, 58, 0.1);
}

.mission-vision-card {
background: #f8f9fa;
border-left: 4px solid #FF6B35;
border-radius: 8px;
}

.btn-primary-custom {
background: linear-gradient(135deg, #C41E3A, #DC143C);
border: none;
color: white;
padding: 12px 35px;
border-radius: 5px;
transition: transform 0.3s ease;
}

.btn-primary-custom:hover {
transform: scale(1.05);
color: white;
background: linear-gradient(135deg, #8B1538, #C41E3A);
}

/*Quote Modal Styles*/
.modal{
z-index: 10000;
}


/* Service Page Styles */
.btn-primary-custom {
background: linear-gradient(175deg, var(--primary-red) 0%, var(--dark-red) 100%);
border: none;
color: white;
}

.btn-primary-custom:hover {
opacity: 0.9;
color: white;
}

.service-card {
transition: transform 0.3s ease;
text-align: center;
padding: 20px;
border-radius: 8px;
background: white;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead {
background: linear-gradient(175deg, var(--primary-red) 0%, var(--dark-red) 100%);
color: white;
}

.form-control:focus {
border-color: var(--primary-red);
box-shadow: 0 0 0 0.2rem rgba(203, 1, 4, 0.25);
}

/* City Lists */

.city-card {
transition: transform 0.3s ease;
border: 1.4px solid red !important;
}

.city-card:hover {
transform: translateY(-4px);
box-shadow: 0px 10px 20px rgba(162, 0, 0, 0.303) !important;
}
.city-card-text{
font-size: 14px;
}


.city-content-section a{
text-decoration: none;
color: #084298;
font-weight: 600;
}

.city-content-section a:hover{
text-decoration: underline;
color: red;
}

.city-content-section h2, .city-content-section h3, .city-content-section h4, .city-content-section h5, .city-content-section h6{
margin-top: 8px;
margin-bottom: 4px;
}
























/* Footer */
.footer {
margin-top: 20px;
background: linear-gradient(135deg, #5d0606 0%, #9f0000 100%);
color: #ffffff;
}

.footer h5 {
color: #ffffff;
font-weight: 600;
margin-bottom: 1.5rem;
}

.footer h6 {
color: #ffffff;
font-weight: 600;
margin-bottom: 1rem;
}

.footer-description {
color: #d1d1d1;
line-height: 1.8;
font-size: 0.95rem;
}

.social-icons {
display: flex;
gap: 0.5rem;
margin-top: 1.5rem;
}

.social-icon {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
transition: all 0.3s ease;
}

.social-icon:hover {
background-color: #cb0104;
transform: translateY(-3px);
}

.social-icon i {
color: #ffffff;
font-size: 1.3rem;
}

.social-icon img {
width: 30px;
height: 30px;
object-fit: contain;
}

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

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: #d1d1d1;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: #acacac;
padding-left: 5px;
}

.address-list {
list-style: none;
padding: 0;
margin: 0;
line-height: 2rem;
}

.address-list li {
color: #d1d1d1;
margin-bottom: 0.75rem;
}

.address-list i {
color: #cb0104;
margin-right: 0.5rem;
font-size: 1.1rem;
}

.address-list a {
color: #d1d1d1;
text-decoration: none;
transition: color 0.3s ease;
}

.address-list a:hover {
color: #cb0104;
}

.city-coverage-section {
background-color: rgba(0, 0, 0, 0.2);
padding: 2rem 0;
}

.city-coverage-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #ffffff;
}

.city-link {
color: #d1d1d1 !important;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s ease;
display: block;
padding: 0.5rem 0;
}

.city-link:hover {
color: #999999 !important;
padding-left: 8px;
}

.footer-bottom {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem 0;
}

.footer-bottom p {
margin: 0;
color: #d1d1d1;
}

.footer-bottom a {
color: #ffffff;
text-decoration: none;
font-weight: 600;
}

.footer-bottom a:hover {
color: #868686;
}

/* FAB Button Styles */
.fab-wrapper {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 1000;
}

.fab-checkbox {
display: none;
}

.fab {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #cb0104 0%, #a00103 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 5px 20px rgba(203, 1, 4, 0.4);
transition: all 0.3s ease;
position: relative;
}

.fab:hover {
transform: scale(1.1);
box-shadow: 0 7px 25px rgba(203, 1, 4, 0.6);
}

.fab-dots {
width: 6px;
height: 6px;
background-color: #ffffff;
border-radius: 50%;
position: absolute;
transition: all 0.3s ease;
}

.fab-dots-1 { top: 20px; left: 27px; }
.fab-dots-2 { top: 27px; left: 20px; }
.fab-dots-3 { top: 27px; left: 34px; }

.fab-checkbox:checked ~ .fab .fab-dots-1 { top: 27px; left: 20px; }
.fab-checkbox:checked ~ .fab .fab-dots-2 { top: 34px; left: 27px; }
.fab-checkbox:checked ~ .fab .fab-dots-3 { top: 27px; left: 27px; }

.fab-wheel {
position: absolute;
bottom: 0;
right: 0;
pointer-events: none;
}

.fab-action {
width: 50px;
height: 50px;
background-color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
bottom: 0;
right: 0;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
opacity: 0;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
text-decoration: none;
}

.fab-action i {
font-size: 1.5rem;
color: #cb0104;
}

.fab-action:hover {
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fab-checkbox:checked ~ .fab-wheel .fab-action {
pointer-events: auto;
opacity: 1;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action-1 {
bottom: 70px;
right: 0;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action-2 {
bottom: 130px;
right: 0;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action-3 {
bottom: 190px;
right: 0;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action-4 {
bottom: 250px;
right: 0;
}

@media (max-width: 768px) {

.breadcrumb-hero {
min-height: 100px;
}
.fab-wrapper {
bottom: 20px;
right: 20px;
}

.fab {
width: 55px;
height: 55px;
}

.fab-action {
width: 45px;
height: 45px;
}

.city-link {
font-size: 0.85rem;
}
}

.service-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-card img {
height: 200px;
object-fit: cover;
}

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

.btn-custom:hover {
background-color: var(--dark-red);
border-color: var(--dark-red);
color: white;
}



/* Certificates Section */
.certificate-content-row {
position: relative; /* Default for mobile */
}

.cert-img {
height: auto;
width: 100%;
max-width: 360px;
border: 3px solid #800000;
}

.heading-maroon {
color: #800000;
}

.text-maroon {
color: #800000;
}

.bg-light-green {
background-color: #f0f8f5;
}

/* Sticky only on desktop (lg and above) */
@media (min-width: 992px) {
.certificate-content-row {
position: sticky;
top: 80px;
align-self: flex-start;
}

.cert-img {
height: 430px;
width: 360px;
}
}

/* Mobile optimizations */
@media (max-width: 991px) {
.cert-img {
max-height: 350px;
object-fit: contain;
}

/* Add some spacing between sections on mobile */
.certificate-content-row {
margin-bottom: 2rem;
}
}




/*Photo Gallery*/
.gallery-header-section {
background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
color: white;
padding: 60px 0;
margin-bottom: 40px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-header-section h1 {
font-weight: 700;
margin-bottom: 10px;
}

.gallery-header-section p {
opacity: 0.9;
font-size: 1.1rem;
}


.gallery-item {
margin-bottom: 30px;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
color: white;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}


.gallery-modal-content {
background-color: #85000000;
border: none;
}

.gallery-modal-header {
border: none;
background-color: rgba(122, 0, 0, 0);
}

.gallery-modal-title {
color: white;
}

.gallery-btn-close {
padding: 5px;
background-color: white;
filter: invert(1);
}

.gallery-modal-body{
height: 100vh;
width: auto;
overflow: hidden;
}

.gallery-modal-body img {
height: 80vh;
width: 100%;
object-fit: cover;
border-radius: 8px;
}

.gallery-footer {
background-color: black;
color: white;
padding: 30px 0;
margin-top: 60px;
}

.gallery-footer a {
color: var(--primary-green);
text-decoration: none;
transition: color 0.3s ease;
}

.gallery-footer a:hover {
color: white;
}


/*video Gallery */
.video-galley-header-section {
background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
color: white;
padding: 60px 0;
margin-bottom: 40px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.video-galley-header-section h1 {
font-weight: 700;
margin-bottom: 10px;
}

.video-galley-header-section p {
opacity: 0.9;
font-size: 1.1rem;
}


.video-galley-item {
margin-bottom: 30px;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
background-color: #000;
}

.video-galley-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video-galley-item video {
width: 100%;
height: 450px;
object-fit: cover;
display: block;
}

.video-galley-play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 3rem;
color: white;
background-color: rgba(189, 38, 53, 0.8);
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
pointer-events: none;
}

.video-galley-item:hover .video-galley-play-icon {
background-color: rgba(189, 38, 53, 1);
transform: translate(-50%, -50%) scale(1.1);
}

.video-galley-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
color: white;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}

.video-galley-item:hover .video-galley-overlay {
opacity: 1;
}


.video-galley-modal-content {
background-color: #1a1a1a;
border: none;
}

.video-galley-modal-header {
border-bottom: 2px solid var(--primary-red);
background-color: black;
}

.video-galley-modal-title {
color: white;
}

.video-galley-btn-close {
filter: invert(1);
}

.video-galley-modal-body video {
border-radius: 8px;
width: 100%;
max-height: 70vh;
}

.video-galley-footer {
background-color: black;
color: white;
padding: 30px 0;
margin-top: 60px;
}

.video-galley-footer a {
color: var(--primary-green);
text-decoration: none;
transition: color 0.3s ease;
}

.video-galley-footer a:hover {
color: white;
}


/*FAQs*/
.faq-section .accordion-button:not(.collapsed) {
background-color: #28a745;
color: #ffffff;
}

.faq-section .accordion-button:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.faq-section .accordion-button {
background-color: #ffffff;
color: #ffffffff;
font-weight: 500;
}

.faq-section .accordion-button:hover {
background-color: #f8f9fa;
}

.faq-section .accordion-item {
border: 1px solid rgba(220, 53, 69, 0.2);
margin-bottom: 0.5rem;
border-radius: 0.375rem !important;
overflow: hidden;
}

.faq-section .accordion-body {
background-color: #fff;
border-top: 2px solid #28a745;
}

.faq-section .company-name {
color: #28a745;
font-weight: 600;
}