﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');


body {
    font-family: "Open Sans", sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: linear-gradient(135deg, rgb(238 54 54 / 80%), rgb(237 98 47 / 80%));
    color: #ffffff;
    border-radius: 50%;
}

    .back-to-top i {
        font-size: 28px;
        color: #ffffff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, rgb(210 14 14 / 80%), rgb(220 67 11 / 80%));
        transform: rotate(-45deg);
    }

    .back-to-top i:hover {
        color: white;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(139, 0, 56, 0.8));
    width: 100%;
    margin: 0px auto 0;
}


    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
        /* White logo text */
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #d1ffd3;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: inline-block;
        padding: 12px 17px;
        font-size: 17px;
        font-weight: 500;
        color: #f8f9fa;
        white-space: nowrap;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #ffffff;
            text-decoration: none;
        }

    .navbar li:before {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background-color: #f8fcff;
        bottom: 7px;
        left: 15px;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.4s ease;
    }

    .navbar li:hover:before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 30px;
        margin-left: 30px;
        border-radius: 50px;
        color: white;
        background: #25d366;
        transition: all 0.3s ease;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            background: #d1ffd3;
            border: 2px solid #09601d;
            color: #000000;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        background-color: #28a745;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background: linear-gradient(135deg, rgb(153 16 16 / 80%), rgb(214 76 24 / 80%));
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
    }

    .navbar-mobile ul.list-border li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
        margin: 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #FF8A65;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 0px;
        background: #000000;
        color: white;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    /* Left-align text */
    color: white;
    padding: 0 50px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(72, 255, 0, 0.8));
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

    .hero-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 72px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #ffffff;
    }

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.85;
    letter-spacing: 1px;
}

.description {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn {
    padding: 13px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn-primary {
    background: #fff3f3;
    /* Light red */
    color: #cf4513;
    border: 2px solid #f7f7f7;
    box-shadow: 0px 4px 10px rgba(211, 47, 47, 0.4);
}

    .hero-btn-primary:hover {
        background: #fff3f3;
        /* Light red */

        color: #dc562e;
        transform: translateY(-5px);
    }

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .hero-btn-secondary:hover {
        transform: translateY(-5px);
        color: #ffffff;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {

    .hero-overlay {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .btn {
        font-size: 16px;
        padding: 14px 28px;
        width: 100%;
        text-align: center;
    }


    .hero-content h1 {
        font-size: 47px;
    }

    .tagline {
        font-size: 22px;
    }

    .description {
        font-size: 18px;
    }

    .btn {
        padding: 13px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 20px;
    }

    .hero-overlay {
        padding: 0 20px;
    }


    .hero-content h1 {
        font-size: 44px;
    }

    .tagline {
        font-size: 19px;
    }

    .description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        padding: 13px 30px;
        font-size: 19px;
    }
}


/*--------------------------------------------------------------
# Features  Section
--------------------------------------------------------------*/

.features-section {
    margin-top: 0px;
    padding: 60px 0;
    position: relative;
    background-color: #f5f2f2;
    text-align: center;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.features-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #5b5656;
    margin-bottom: 40px;
    text-align: center;
}

.feature-card {
    text-align: left;
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
    border-bottom: 4px solid #d32f2f;
    border-left: 4px solid #d32f2f;
    flex-direction: column;
    justify-content: left;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgb(0 0 0 / 0%);
    }

.features-section .feature-icon {
    font-size: 25px;
    color: #f9f9f9;
    margin-bottom: 20px;
    padding: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #d32f2f;
    color: #fff;
}

.feature-title {
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    color: #333;
    font-weight: 600;
    margin-top: 0px;
}

.feature-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #4d4d4d;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .features-title {
        font-size: 30px;
    }

    .feature-title {
        font-size: 18px;
    }

    .features-section .col-md-6 {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .features-title {
        font-size: 24px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-title {
    text-align: left;
    padding-bottom: 25px;
}

    .section-title h2 {
        font-size: 32px;
        position: relative;
        color: #3e3e3e;
        font-weight: 500;
        font-family: "Playfair Display", serif;
    }

    .section-title h4 {
        font-size: 40px;
        text-transform: uppercase;
        position: relative;
        color: #000000;
        font-weight: 500;
        font-family: 'Caladea', serif;
    }

        .section-title h4::after {
            content: "";
            width: 100px;
            height: 1px;
            background: #ffffff;
            display: inline-block;
        }

        .section-title h4::after {
            margin: 0 0 8px 15px;
        }


    .section-title p {
        margin: 15px 0 0 0;
    }

@media screen and (max-width: 768px) {
    .section-title {
        padding-left: 20px;
    }
}

/*--------------------------------------------------------------
# About Section - Updated Car Wash Design
--------------------------------------------------------------*/
.about {
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(72, 255, 0, 0.8));
    border-top-left-radius: 300px;
    border-bottom-right-radius: 300px;
    padding: 60px 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

.about-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    padding: 20px;
}

.about .feature-icon {
    font-size: 28px;
    border: 2px solid white;
    color: #ffffff;
    font-size: 28px;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f1f1f100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-text h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.about-image img {
    border-radius: 15px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

/* responsive design*/
@media (max-width: 991px) {
    .about {
        padding: 60px 20px;
        border-radius: 0px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-tagline {
        font-size: 18px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-description {
        font-size: 14px;
    }

    .about .feature-icon {
        font-size: 20px;
        height: 50px;
        width: 50px;
    }

    .about .feature-item {
        padding: 5px 0px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 28px;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }

    .about .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.service-card {
    text-align: center;
    background-color: #fff;
    border-left: 4px solid #d32f2f;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    margin-right: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    left: 20px;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #D84315;
    color: #fff;
}

.service-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-top: 20px;
}

.service-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #5e5b5b;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .services-title {
        font-size: 30px;
    }

    .service-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .services-title {
        font-size: 24px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/

.cta-container {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(72, 255, 0, 0.8));
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .cta-container h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .cta-container p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.whatsapp-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    color: #e45a30;
    background-color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

    .whatsapp-button:hover {
        transform: translateY(-5px);
        color: #43A047;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
    }

    .whatsapp-button i {
        font-size: 1.3rem;
        margin-left: 5px;
    }

@media (max-width: 1024px) {

    .cta-container h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta-container p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .whatsapp-button {
        font-size: 1.0rem;
    }
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/


.pricing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(243 235 241), rgb(255 255 255));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #e64a19;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #212121;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .price-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        /* Hover effect with stronger shadow */
    }

.price-header {
    margin-bottom: 30px;
}

.plan-title {
    font-family: 'Lora', serif;
    font-size: 24px;
    color: #212121;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-price {
    font-family: 'Lora', serif;
    font-size: 50px;
    color: #d32f2f;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

    .price-body ul li {
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

        .price-body ul li i {
            color: #d32f2f;
            margin-right: 10px;
        }

/* Featured Plan (Premium) */
.featured-item {
    background-color: #fff;
    border: 3px solid #d32f2f;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(88, 24, 69, 0.15), rgba(211, 47, 47, 0.1));
}

    .featured-item .plan-title {
        color: #d32f2f;
    }

    .featured-item .plan-price {
        color: #d32f2f;
    }

.price-item:not(.featured-item) {
    border: none;
}

/* Pricing Buttons */
.pricing-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: #d32f2f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

    .pricing-btn:hover {
        background-color: #b71c1c;
        transform: scale(1.05);
    }

/* Responsive Styling */
@media (max-width: 767px) {
    .price-item {
        padding: 30px;
    }

    .plan-title {
        font-size: 22px;
    }

    .plan-price {
        font-size: 40px;
    }

    .price-body ul li {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .pricing-title {
        font-size: 32px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .pricing-section .col-md-6 {
        margin: auto;
    }

    .price-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .pricing-title {
        font-size: 24px;
    }

    .pricing-price {
        font-size: 26px;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(72, 255, 0, 0.8));
    padding: 80px 0;
}

    .testimonials .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .testimonials h4 {
        font-size: 24px;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .testimonials h2 {
        font-size: 32px;
        color: #ffffff;
        font-weight: 700;
    }

.testimonial-item {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .testimonial-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    }

    .testimonial-item .testimonial-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffffff;
        margin-top: 15px;
        box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.3);
        transition: transform 0.3s ease-in-out;
    }

    .testimonial-item:hover .testimonial-img {
        transform: scale(1.1);
    }

.client-info {
    margin-top: 15px;
    text-align: center;
}

    .client-info h3 {
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        margin-top: 10px;
    }

.client-title {
    font-size: 14px;
    color: #f5f5f5;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.message-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 15px;
    border-radius: 18px;
    max-width: 260px;
    margin: 0 auto;
    font-size: 15px;
    color: #ffffff;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.15);
    position: relative;
    transform: rotate(-1deg);
}

    .message-bubble::after {
        content: "";
    }

/* Responsive Design */
@media (max-width: 767px) {
    .testimonials .row {
        text-align: center;
    }

    .testimonials h2 {
        font-size: 28px;
    }

    .testimonial-item {
        margin-bottom: 30px;
    }

    .message-bubble {
        font-size: 14px;
    }

    .testimonial-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .testimonials {
        border-radius: 0px;
    }
}

/* Responsive Styles */
@media (max-width: 1324px) and (min-width: 824px) {
    .testimonials .col-lg-3 {
        flex: 1 1 48%;
    }
}

/*--------------------------------------------------------------
# Car Care tips Section
--------------------------------------------------------------*/

.car-care-tips {
    padding: 70px 20px;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .car-care-tips:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #db4506;
        margin-bottom: 10px;
    }

    .section-title .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        color: #7a7a7a;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.tips-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tips-left,
.tips-right {
    flex: 1;
    padding: 20px;
}

.tip-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

    .tip-item:hover {
        transform: translateY(-8px);
    }

.icon-container {
    background-color: #df4b09;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    border-radius: 50%;
    margin-right: 20px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .icon-container:hover {
        transform: scale(1.1);
    }

.tip-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tip-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #656262;
    line-height: 1.5;
}

.divider {
    width: 2px;
    background-color: #f39c12;
    height: 100%;
    margin: 0 20px;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .tips-steps {
        flex-direction: column;
    }

    .tips-left,
    .tips-right {
        width: 100%;
    }

    .tips-left,
    .tips-right {
        flex: 1;
        padding: 0px;
    }

    .divider {
        display: none;
    }

    .tips-steps {
        gap: 0px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (max-width: 758px) {
    .car-care-tips {
        padding-bottom: 20px;
    }

    .section-title h1 {
        font-size: 27px;
    }

    .tips-left,
    .tips-right {
        width: 100%;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .icon-container {
        font-size: 32px;
    }

    .tip-info h3 {
        font-size: 20px;
    }

    .tip-info p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/


.contact-section {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #fff;
    padding: 0px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.contact-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff7f50;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #dcdcdc;
}

.contact-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

    .contact-list li {
        margin-bottom: 20px;
        color: #ccc;
    }

    .contact-list i {
        color: #ff7f50;
        margin-right: 15px;
    }

.contact-form-wrapper {
    background-color: #444;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 16px;
    font-weight: 600;
    color: #f1f1f1;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #555;
    background-color: #333;
    color: #f1f1f1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .contact-form .form-control:focus {
        border-color: #ff7f50;
        box-shadow: 0 0 10px rgba(255, 127, 80, 0.3);
    }


.contact-form .btn-submit {
    background: linear-gradient(135deg, #bf2f2f, #E65100);
    color: #fff;
    padding: 12px 0;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.3s ease-out;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 95, 95, 0.2);
    position: relative;
}

    /* Button Hover Effects */
    .contact-form .btn-submit:hover {
        background: linear-gradient(135deg, #ff9b72, #ff5f5f);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 95, 95, 0.3);
    }

.button-area span {
    font-size: 17px;
    margin-left: 30px;
    margin-top: 1.5rem;
    display: none;
}

/* Media Query for Smaller Devices */
@media (max-width: 767px) {
    .contact-title {
        font-size: 30px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form .form-label {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {

    .contact-info {
        text-align: left;
    }

    .contact-title {
        font-size: 30px;
    }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/


.faq-section {
    padding: 60px 20px;
    background-color: #fafafa;
    color: #333;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #df4b09;
    /* Soft red */
    margin-bottom: 10px;
}

.faq-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: auto;
}

/* FAQ Item */
.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.1);
    }

/* Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .faq-question i {
        color: #df4b09;
        font-size: 20px;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .faq-question:hover i {
        transform: translateX(10px);
        /* Move icon slightly */
    }

    .faq-question h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin: 0;
        padding: 10px 0;
        transition: color 0.3s ease;
    }

    .faq-question:hover h4 {
        color: #df4b09;
        /* Color on hover */
    }

/* Arrow */
.faq-arrow {
    font-size: 16px;
    color: #df4b09;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-arrow {
    transform: rotate(90deg);
    /* Rotate arrow when hovered */
}

/* Answer */
.faq-answer {
    display: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    padding-left: 15px;
    border-left: 4px solid #df4b09;
}

/* Active state */
.faq-item.active .faq-answer {
    display: block;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }

    .faq-question:hover i {
        transform: translateX(0px);
        /* Move icon slightly */
    }

    .faq-description {
        font-size: 16px;
    }

    .faq-container {
        padding: 0 10px;
    }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    background: linear-gradient(135deg, rgba(139, 0, 56, 0.8), rgba(139, 0, 56, 0.8));
    color: #fff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

/* Footer Logo */
.footer-logo {
    text-align: left;
}

.footer-logo-img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-logo-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 16px;
    color: #f7f7f7;
    font-style: italic;
}

.footer-links h5 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin: 10px 0;
    }

        .footer-links ul li a {
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: #f39c12;
            }


.footer-contact h5 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

    .footer-contact ul li {
        margin-bottom: 12px;
        font-size: 15px;
    }

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-contact a:hover {
        color: #f39c12;
    }

/* Footer About Section */
.footer-about p {
    font-size: 15px;
    color: #f1f1f1;
}

.footer-small-paragraph {
    font-size: 14px;
    color: #f7f7f7;
    font-style: italic;
    margin-top: 10px;
}


/* Footer Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    color: #fff;
    font-size: 30px;
    margin: 0 15px;
    padding: 15px;
    border-radius: 50%;
    background-color: #c0392b;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .social-icon:hover {
        background-color: #f39c12;
        color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

    .social-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border: 2px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: all 0.3s ease;
    }

    .social-icon:hover::before {
        transform: translate(-50%, -50%) scale(1);
    }


.footer-legal {
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-logo-title {
        font-size: 28px;
    }

    .footer-contact p,
    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-social-links a {
        font-size: 26px;
    }
}


.footer-legal {
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 20px;
}

/* Responsive Design */

@media (max-width: 1024px) {

    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
}


@media (max-width: 991px) {
    .footer-logo-title {
        font-size: 28px;
    }

    .footer-contact p,
    .footer-links ul li a {
        font-size: 17px;
    }

    .footer-social-links a {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .footer-logo {
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        text-align: left;
    }

    .footer-contact,
    .footer-links {
        margin-top: 20px;
    }

    .footer-social-links a {
        font-size: 24px;
        margin: 0 12px;
    }
}
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 0;
    background-size: cover;
    background-position: center;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 16px;
    color: #fff;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .hero-content .description {
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .hero {
      min-height: 80vh;
      padding: 15px 0;
    }
  
    .hero-content {
      padding: 0 12px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content .tagline {
      font-size: 1.2rem;
    }
  
    .hero-content .description {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      min-height: 60vh;
    }
  
    .hero-content h1 {
      font-size: 1.5rem;
    }
  
    .hero-content .tagline {
      font-size: 1rem;
    }
  
    .hero-content .description {
      font-size: 0.9rem;
    }
  }
  body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.page-cus {
    margin-top: 140px;
    margin-bottom: 100px;
}