/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content wrapper */
main {
    flex: 1;
}

/* Header */
header {
    background: #007BFF;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

header nav a:hover {
    background: #0056b3;
}

/* Hero Section */
.hero {
    background: url('car-wash-banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.hero .btn {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #0056b3;
}

/* Sections */
section {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p, section ul {
    margin: 0 auto;
    max-width: 800px;
}

/* Pricing Table */
table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background: #fff;
}

table th, table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background: #007BFF;
    color: #fff;
}

table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Team Page */
.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.team-member {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 20px;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h2 {
    margin: 10px 0;
    color: #007BFF;
}

.team-member p {
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    flex-shrink: 0;
}

footer p {
    margin: 0;
}
/* Contact Page Styles */
.contact-intro {
    text-align: center;
    padding: 20px;
    background-color: #007BFF;
    color: white;
}

.contact-form {
    padding: 20px;
    background: white;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #007BFF;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #0056b3;
}

.contact-details {
    padding: 20px;
    background: #f4f4f4;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.detail-item h3 {
    color: #007BFF;
}

.social-media {
    text-align: center;
    padding: 20px;
    background: white;
}

.social-icons a {
    margin: 0 10px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.social-icons a:hover {
    text-decoration: underline;
}

.map iframe {
    border: none;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
}

.hero .btn {
    display: inline-block;
    background: #07eeff;
    color: #333;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .btn:hover {
    background: #FFA000;
}

/* Features Section */
.features {
    padding: 20px;
    background-color: #f4f4f4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #007BFF;
}

/* Services Section */
.services {
    padding: 20px;
    background-color: white;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h3 {
    color: #007BFF;
}

/* Testimonials Section */
.testimonials {
    padding: 20px;
    background: #007BFF;
    color: white;
    text-align: center;
}

.testimonial {
    background: #0056b3;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    color: white;
}

.testimonial h4 {
    margin-top: 10px;
    font-weight: bold;
}

/* Pricing Table */
.pricing table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

.pricing th, .pricing td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.pricing th {
    background-color: #007BFF;
    color: white;
}

.pricing tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing tr:hover {
    background-color: #ddd;
}

/* About Page - Team Section */
.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.team-member {
    text-align: center;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

.team-member h3 {
    margin-top: 10px;
    color: #007BFF;
}

/* Buttons */
button, .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover, .btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    .features-grid, .services-grid, .team {
        grid-template-columns: 1fr;
    }
}
/* Running Banner Above Nav */
.running-banner {
    background-color: #07b9ff;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.running-banner p {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* Gallery Section */
.gallery {
    padding: 20px;
    text-align: center;
}

.gallery h1, .gallery h2 {
    color: #007BFF;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.video-gallery video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Styling for H1 and P in Index */
.main-heading {
    color: #FF5733; /* Change to your preferred color */
    font-size: 2.5rem;
    font-weight: bold;
}

.main-paragraph {
    color: #555; /* Subtle gray color for the paragraph */
    font-size: 1.2rem;
    line-height: 1.6;
}
/* Logo Styling */
.logo-container {
    text-align: center;
    margin: 10px 0;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}
/* Team Section */
.team {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.team h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Team Profiles Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007BFF;
}

.team-member h2 {
    color: #007BFF;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
/* Services Page Styles */

/* General Styles for the Services Section */
.services {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.services h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.services .intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Grid Layout for Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 20px;
    text-align: center;
    background-color: #e9f5ff;
    margin-top: 30px;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us ul li {
    font-size: 1rem;
    margin: 10px 0;
    color: #555;
}
