/* Global Styles */
body {
   font-family: 'Lato', sans-serif;

    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}


.logo{
    width: 140px;
    height: 100px;
}

.whatsapp{
    padding: 10px;
    background: #25D366;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    right: 15px;
    bottom: 25px;
    color: white;
    z-index: 1000;
}
.whatsapp i{
    font-size: 28px;
    color: white;
    padding-right: 3px;
}



/* Top Bar */
.top-bar {
    font-size: 14px;
    background: #fff;
     color: #444;
     align-items: right;
}

.top-bar i {
    color: #222;
    margin-right: 5px;
    font-size: 20px;
}

.btn-warning{
    background: linear-gradient(to right, #98ff98, #ffffe0);
}
.btn-warning:hover{
    background: linear-gradient(to right, #ffcc22, #ffffe0);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
    padding: 5px;
   background: #212529;
   color: #fff;
}


.navbar-brand {
    font-weight: bold;
    color: #007bff !important;
}

.nav-link {
    color: #fff !important;
    transition: 0.3s;
    font-size: 1.15rem;
}

.nav-link:hover {
    color: #999 !important;
}

.get-quote {
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    color: #333;
}

.get-quote:hover {
    background-color: #ffcc00 !important;
    color: black !important;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .top-bar {
        text-align: center;
    }
}


/* Hero Section */
.hero {
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.hero .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* About Us Section */
#about {
    background-color: #f8f9fa;
}

#about h2 {
    font-weight: bold;
    color: #333;
}

#about p {
    font-size: 1.1rem;
    color: #222;
}






.descriptions h2{
    font-weight: bold;
}

.descriptions h3{
    font-weight: bold;
}
.descriptions h4{
    font-weight: bold;
}

.descriptions p{
    font-size: 1.15rem;
}
.descriptions li{
    font-size: 1.15rem;
}


/* Pro Section */
#professional {
    background-color: #f8f9fa;

}

#professional h2 {
    font-weight: bold;
    color: #222;
}

#professional p {
    font-size: 1.1rem;
    color: #222;
}

#professional img{
    width: 100%;
}



/* Why Choose Us Section */
.why-choose-us {
    display: flex;
    align-items: center;
    padding: 50px 0;
    background: #f8f9fa;
}

#why-choose-us h2 {
    font-weight: bold;
    color: #222;
    font-size: 36px;

}

.feature-box {
    padding: 30px;
    background: #fff;
    border-radius: 0 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.feature-box .icon {
    font-size: 3rem;
    color: #ffcc00;
    font-weight: 800;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.feature-box h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    color: #555;
}

.feature-box:hover {
    background: #ffcc00;
    color: #fff;
    transform: translateY(-5px);
}

.feature-box:hover .icon {
    transform: scale(1.2);
    color: #fff;
}


/* Services Section */

#services h2{
    font-weight: 700;
}
.service-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.service-card .card-body {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover .card-body {
    background: rgba(0, 0, 0, 0.5);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}




/* Testimonial Section */
#testimonials {
    background-color: #f8f9fa;
}
#testimonials h2{
    font-weight: 700;
}

.testimonial {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #ff9800;
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial h5 {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff9800;
    border-radius: 50%;
    padding: 10px;
}



/* FAQ Section */
#faq {
    background-color: #f8f9fa;
   
}
#faq h2{
    font-weight: 700;
}



.accordion-button {
    font-weight: bold;
    background-color: #fff;
    color: #222;
}

.accordion-button:not(.collapsed) {
    background-color: #212529;
    color: white;
}

.accordion-body {
    font-size: 16px;
}




/* Call to Action Section */
.cta-section {
   
   padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;

}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
}



/* Contact Section */
.contact-section {
    background: #fefefe;
    
}
.contact-section h2{
    font-weight: 700;
}

.contact-section label{
    font-weight: bold;
}
.contact-info h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info i {
    color: #ff9800;
    margin-right: 8px;
}
.contact-icon i {
    color: #222;
    font-size: 100px;
}



/* Blog Section */
.blog-section {
    background-color: #f8f9fa;
}

.blog-section .card h5{
    font-weight: bold;
}
.blog-section .card {
    border: none;
    transition: transform 0.3s ease-in-out;
}

.blog-section .card:hover {
    transform: translateY(-5px);
}

.blog-section .card img {
    height: 200px;
    object-fit: cover;
}


/* Footer Styling */
.footer {
    background-color: #212529;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer p, 
.footer a {
    font-size: 14px;
    color: #fff;
}

.footer a:hover {
    color: #ffc107;
}
.footer i{
    font-size: 24px;
    color: #98ff98;
    
}

.footer .social-icons a {
    font-size: 30px;
    transition: color 0.3s ease-in-out;
}

.footer .social-icons a:hover {
    color: #ffc107;
}






.hero-residential {
    background: url('https://mitchmoving.netlify.app/assets/css/assets/img/residential-moving.jpg') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-residential .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
}

.hero-residential .container {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-residential h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeInText 1.5s ease-in-out forwards;
}

.hero-residential p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInText 1.8s ease-in-out forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-residential .btn-primary {
    background: #ff9800;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.hero-residential .btn-primary:



.residential-intro {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.residential-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.residential-intro p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.3s ease-out forwards;
}

.intro-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.intro-box:hover {
    transform: translateY(-10px);
}

.intro-box i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 10px;
}

.intro-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.intro-box p {
    font-size: 1rem;
    color: #666;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.benefits-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.benefits-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.3s ease-out forwards;
}

.benefit-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.benefit-box:hover {
    transform: translateY(-10px);
    background: #ff9800;
    color: white;
}

.benefit-box i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.benefit-box:hover i {
    color: white;
}

.benefit-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-box p {
    font-size: 1rem;
    color: #666;
    transition: color 0.3s ease-in-out;
}

.benefit-box:hover p {
    color: white;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.moving-process {
    background: #f8f9fa;
    padding: 60px 0;
}

.moving-process h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.moving-process p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Timeline Structure */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #ff9800;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-content i {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-number {
        margin-bottom: 10px;
    }

    .timeline-content {
        text-align: center;
    }
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
