* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'poppins', sans-serif;
    background-color: #f4f4f4;
    ;
}

/* header {
    background-color: #2a9d8f;
    padding: 15px 20px;
    text-align: center;
    color: white;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
} */


/* General Styles for Header */
    /* General Styles for Header */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #2a9d8f;
        color: white;
        position: relative;
    }
    
    /* Logo Styling */
    .logo img {
        height: 80px;
    }
    
    /* Call Icon Styling (Positioned on the right side) */
    .call-icon a {
        display: inline-block;
        padding: 10px;
        position: absolute;
        right: 10px;
        top: -5px;
       
    }
    
    .call-icon img {
        height: 30px;
    }
    
    /* Navigation Menu for Desktop */
    .nav {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        gap: 20px;
    }
    
    .nav-links li {
        list-style: none;
    }
    
    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        padding: 5px 10px;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: #264d47;
        border-radius: 5px;
    }
    
    /* Hamburger Menu for Mobile */
    .hamburger {
        display: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
        position: absolute;
        right: 20px;
        top: 10px;
    }
    
    .hamburger .bar {
        width: 30px;
        margin-top: 4px;
        height: 6px;
        background-color: white;
        border-radius: 5px;
    }
    
    /* Mobile Navigation Menu */
    .nav-mobile {
        display: none;
        background-color: #2a9d8f;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }
    
    .nav-mobile ul {
        padding: 0;
        list-style: none;
    }
    
    .nav-mobile li {
        margin-bottom: 15px;
    }
    
    .nav-mobile a {
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
        padding: 10px 20px;
        display: block;
    }

    .nav-mobile li a:hover {
        background-color: #264d47;
        border-radius: 5px;
    }
    
    /* Display Hamburger and Adjust Layout on Mobile */
    @media (max-width: 768px) {
        .nav {
            display: none; /* Hide desktop navigation for mobile */
        }
    
        .hamburger {
            display: flex; /* Show hamburger icon on mobile */
        }
    
        .nav-mobile.active {
            display: block; /* Show mobile navigation when hamburger is clicked */
        }
    }
    
    /* Adjust layout for smaller mobile screens */
    @media (max-width: 480px) {
        .logo img {
            height: 50px;
        }
    
        .call-icon img {
            height: 35px;
        }
    }




/* Hero section  */


/* General Styles for the Hero Section */
.hero {
    position: relative;
    background-image: url('icons/hero-image.jpg') !important; /* Use your desired background image */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Ful viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-cleaning {
    position: relative;
    background-image: url('icons/cleaning_service_wego4u.jpg') !important; /* Use your desired background image */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Ful viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2; /* Ensures content is above the overlay */
    animation: fadeInUp 1.5s ease-out;
    padding: 0 20px; /* Add some padding for mobile devices */
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInText 3s ease-in-out;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.cta-button {
    font-size: 1.1rem;
    padding: 12px 30px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #264d47;
}

/* Animation for Text and Fade In */
@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Effect */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /* z-index: -1;  */
    /* Ensures it stays in the background */
}

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .hero-content {
        padding: 0 20px; /* Add padding for smaller screens */
    }

    .services h2 {
        font-size: 2rem;
    }

    .services p {
        font-size: 1rem;
    }
}



/* Services */


/* General Styles */
.services {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.service-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2a9d8f;
}

.service-card .price span {
    font-size: 1rem;
    color: #555;
}

.service-card button {
    background-color: #2a9d8f;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #264d47;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


/* General Styles */
/* .services {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.service-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2a9d8f;
}

.service-card .price span {
    font-size: 1rem;
    color: #555;
}

.service-card button {
    background-color: #2a9d8f;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #264d47;
}

/* Mobile Responsive */
/* @media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    } 
} 
*/




/* footer {
    background-color: #2a9d8f;
    padding: 20px 0;
    text-align: center;
}

footer li {
color:#2a9d8f;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
} */


/* footer */

/* General Footer Styling */
.footer {
    background-color: #2a9d8f;
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* Footer Column Styling */
.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    border : 1px solid #070707;
    padding: 10px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #264d47;
}

/* Social Media Icons Styling */
.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #070707;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        max-width: none;
        text-align: center;
        
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 20px;
    }
}










.social-icons img {
    width: 25px;
    height: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.track-order {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.track-order h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.track-form {
    margin-bottom: 30px;
}

.track-form input {
    padding: 10px;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.track-form button {
    background-color: #2a9d8f;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.track-form button:hover {
    background-color: #264d47;
}

.order-status {
    margin-top: 30px;
    padding: 20px;
    background-color: #e9f5f1;
    border-radius: 5px;
}

.order-status h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.order-status p {
    font-size: 1.2rem;
}


.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    font-size: 1rem;
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #2a9d8f;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #264d47;
}


.privacy-policy {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.privacy-policy h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}


.terms-conditions {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.terms-conditions h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.terms-conditions h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.terms-conditions p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}


/* // work with us  */

/* General Styles for the Work With Us Page */
.work-with-us {
    background-color: #f4f4f4;
    padding: 30px;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Form Styles */
.driver-application-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="file"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    color: #333;
}

input[type="file"] {
    padding: 5px;
    font-size: 0.95rem;
}

.submit-btn {
    background-color: #2a9d8f;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.submit-btn:hover {
    background-color: #264d47;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .driver-application-form {
        margin-top: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input[type="text"], input[type="email"], input[type="tel"], input[type="file"] {
        padding: 10px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}


/* Update after adding cleaning services */

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown a::after {
    content: " ▼";
    font-size: 0.6em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #2a9d8f;
    min-width: 180px;
    top: 100%;
    left: 0;
    border-radius: 5px;
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: white;
    text-align: left;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* WhatsApp Call Icon */
.call-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2000;
}

.call-icon img {
    width: 40px;
    height: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .call-icon {
        top: 10px;
        right: 60px; /* shift to left of hamburger */
    }
}
