
html {
    scroll-padding-top: 60px;
}


body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
}

:root {
    --navbar-bg: #FF8200; 
    --navbar-link-color: #FDFDFD;
    --navbar-link-hover-color: #FFEDB5;
    --background-color: #FFFFFF;
    --text-color: #000000;
}

body.dark-mode {
    --navbar-bg: #2F2F2F;
    --navbar-link-color: #FDFDFD; 
    --navbar-link-hover-color: #FFEDB5; 
    --background-color: #1C1C1C;
    --text-color: #FDFDFD; 
}


/* Logo Styling */
#carwash-logo {
    max-width: 100px;
    margin-bottom: 10px;
    transition: filter 0.5s ease; 
}

/* Light Mode */
body:not(.dark-mode) #carwash-logo {
    filter: invert(0%) sepia(10%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Dark Mode */
body.dark-mode #carwash-logo {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.8) contrast(1.2);
}


/* Header Styling */
header {
    transition: background-color 0.5s ease, color 0.5s ease;
}

#carwash-title {
    font-size: 3rem;
    color: #FF8200; 
    font-family: 'Teko', sans-serif;
    font-weight: bold;
    text-shadow: 2px 3px  rgba(0, 0, 0, 0.5); 

}

#carwash-subtitle {
    font-weight: 400;
    font-size: 1.5rem;
    color: #D15600; 
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px  rgba(0, 0, 0, 0.5); 

}

@media (max-width: 576px) {
    #carwash-subtitle {
        display: none; 
    }
}

/* Navbar Styling */
.navbar {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background-color: var(--navbar-bg);
    padding: 10px 15px;
    transition: background-color 0.5s ease, color 0.5s ease;
}


.nav-link {
    color: var(--navbar-link-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin: 0 10px;
    position: relative;
    transition: color 0.5s ease;
    text-shadow: 2px 2px  rgba(0, 0, 0, 0.5);

}

.nav-link:hover {
    color: var(--navbar-link-hover-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px; 
    background-color: var(--navbar-link-hover-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%; 
}
.nav-link:visited,
.nav-link:active {
    color: var(--navbar-link-color);
    text-decoration: none; 
}
.nav-link:focus {
    outline: none; 
    color: var(--navbar-link-hover-color); 
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(253, 253, 253, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-menu {
    background-color: #FF8200; 
    border-radius: 8px;
    border: none;
    padding: 10px 0;
    text-align: center;
}

.dropdown-item {
    color: #FDFDFD; 
    font-size: 0.9rem;
    padding: 8px 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #FFEDB5; 
    color: #2F2F2F; 
    border-radius: 5px;
}

/* Light/Dark Mode Toggle Button */
#theme-toggle {
    border: none; 
    background: transparent; 
    font-size: 1.5rem;
    color: var(--navbar-link-color);
    transition: color 0.3s ease;
}

#theme-toggle:hover {
    color: #FFEDB5;
}

#theme-toggle:focus {
    outline: none;
}


#mode-toggle {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--navbar-link-color);
    transition: color 0.3s ease;
}

#mode-toggle:hover {
    color: #FFEDB5;
}

@media (max-width: 576px) {
    .navbar-nav {
        text-align: center;
        justify-content: center;
    }
}
/* Navbar Styling END*/


/* Hero Section */
#hero-section {
    position: relative;
    height: 50vh; 
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

#hero-title {
    font-size: 4rem;
    font-family: 'Teko', sans-serif;
    font-weight: bold;
    color: var(--hero-text-color); 
    margin-bottom: 20px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#hero-tagline {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color:  var(--hero-text-color); 
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 

}


.hero-cta {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    padding: 12px 24px;
    background-color: #FF8200; 
    border: 2px solid transparent; 
    color: #FDFDFD;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px  rgba(0, 0, 0, 0.5); 

}

.hero-cta:hover {
    background-color: #D15600; 
    border-color: #FFEDB5; 
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); 
    
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 237, 181, 0.3); 
    transition: width 0.4s ease;
    z-index: 1;
}

.hero-cta:hover::after {
    width: 100%; 
}

.hero-cta span {
    position: relative;
    z-index: 2;
}

:root {
    --hero-text-color: #FFEDB5; 
}

body.dark-mode {
    --hero-text-color: #FDFDFD; 
}

@media (max-width: 768px) {
    #hero-title {
        font-size: 3rem;
    }
    #hero-tagline {
        font-size: 1.2rem;
    }
    .hero-cta {
        font-size: 1rem;
    }
}
/* Hero Section END*/










/* About Us Section */
#about-us {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Teko', sans-serif;
    color: #FF8200; 
    margin-bottom: 20px;
    text-shadow: 2px 3px  rgba(0, 0, 0, 0.5); 
}

.about-description {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    list-style: none;
    padding: 0;
}

.about-values li {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-values i {
    color: #FF8200; 
    margin-right: 10px;
}

#about-us img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* About Us Section END*/











/* Services Section */
#services {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
        border: none;

}



.service-card {
    background-color: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .overlay {
    opacity: 1;
}

.price {
    font-size: 2.5rem;
    color: #FFEDB5; 
    font-weight: bold;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-family: 'Teko', sans-serif;
    color: var(--card-title-color);
    margin-bottom: 10px;
    text-shadow: 1px 1px  rgba(0, 0, 0, 0.5); 

}

.service-content p {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--card-text-color);
}

:root {
    --card-bg-color: #FFFFFF;
    --card-title-color: #FF8200; 
    --card-text-color: #000000;
}

body.dark-mode {
    --card-bg-color: #2F2F2F; 
    --card-title-color: #FFEDB5; 
    --card-text-color: #FDFDFD; 
}

/* Services Section END*/









/* Services Comparison Section */
#service-comparison {
    background-color: var(--background-color); 
    color: var(--text-color); 
    padding: 50px 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#service-comparison .section-title {
    font-size: 2.5rem;
    font-family: 'Teko', sans-serif;
    color: var(--title-color); 
    margin-bottom: 30px;
    text-shadow: 2px 3px  rgba(0, 0, 0, 0.5);
    
}

.table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--table-bg-color); 
    color: var(--table-text-color); 
}

.table th {
    background-color: var(--table-header-bg); 
    color: var(--table-header-text); 
    font-size: 1.2rem;
    padding: 15px;
}

.table td {
    background-color: var(--table-cell-bg);
    color: var(--table-cell-text);
    font-size: 1rem;
    padding: 10px;
    vertical-align: middle;
}

.table th, .table td {
    border: 1px solid var(--table-border-color); 
}

.table tbody tr:hover {
    background-color: var(--table-hover-bg); 
}

.table-responsive {
    overflow-x: auto;
}
.warning-price{
    text-align: center;
    font-size: 2rem;
    font-family: 'Teko', sans-serif;

}
/* Dark/Light Mode Variables */
:root {
    /* Light Mode */
    --background-color: #EBF4FA;
    --text-color: #1D1D1D;
    --title-color: #FF8200;

    --table-bg-color: #FDFDFD;
    --table-text-color: #1D1D1D;
    --table-header-bg: #FF8200;
    --table-header-text: #FFFFFF;
    --table-cell-bg: #FFFFFF;
    --table-cell-text: #1D1D1D;
    --table-border-color: #DDDDDD;
    --table-hover-bg: #FFEDB5;
}

body.dark-mode {
    /* Dark Mode */
    --background-color: #1C1C1C;
    --text-color: #FDFDFD;
    --title-color: #FFEDB5;

    --table-bg-color: #2F2F2F;
    --table-text-color: #FDFDFD;
    --table-header-bg: #FF8200;
    --table-header-text: #FFFFFF;
    --table-cell-bg: #2F2F2F;
    --table-cell-text: #FDFDFD;
    --table-border-color: #555555;
    --table-hover-bg: #D15600;
}

/*@media (max-width: 768px) {
    #service-comparison .table th:nth-child(n+3), 
    #service-comparison .table td:nth-child(n+3) {
        display: none; 
    }
    
    .table th, .table td {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #service-comparison .table th, 
    #service-comparison .table td {
        font-size: 0.8rem;
    }
} */
/* Services Comparison Section END*/




/* Contact Section */
#contact {
    background-color: var(--background-color); 
    color: var(--text-color);
    transition: background-color 0.5s ease, color 0.5s ease;
    padding: 50px 0;
    text-align: center !important;
    
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Teko', sans-serif;
    color: var(--title-color); 
    margin-bottom: 30px;
    text-shadow: 2px 3px  rgba(0, 0, 0, 0.5);
    
}

/* Contact Details */
.contact-details {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 2;
}

.contact-details li {
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    color: #FF8200;
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-details a {
    color: var(--link-color); 
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--link-hover-color); 
}

/* Dark/Light Mode Variables */
:root {
    --background-color: #EBF4FA;
    --text-color: #1D1D1D;
    --title-color: #FF8200;

    --link-color: #023E8A;
    --link-hover-color: #FF8200;
}

body.dark-mode {
    --background-color: #1C1C1C;
    --text-color: #FDFDFD;
    --title-color: #FFEDB5;

    --link-color: #FFEDB5;
    --link-hover-color: #D15600;
}

/* Contact Section END*/






/* Footer Styling */
#footer {
    background-color: var(--footer-bg); 
    color: var(--footer-text);
    transition: background-color 0.5s ease, color 0.5s ease;
}

.footer-links {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.footer-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 1rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--footer-link-hover-color);
}

.social-icons {
    font-size: 1.5rem;
}

.social-link {
    color: var(--footer-link-color);
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--footer-link-hover-color);
    transform: scale(1.2);
}

:root {
    --footer-bg: #1D1D1D; 
    --footer-text: #FDFDFD; 
    --footer-link-color: #FF8200; 
    --footer-link-hover-color: #FFEDB5; 
}

body.dark-mode {
    --footer-bg: #1C1C1C; 
    --footer-text: #FDFDFD;
    --footer-link-color: #FFEDB5;
    --footer-link-hover-color: #D15600; 
}
/* Footer Styling END*/
