body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}
nav {
    background-color: #2c3e50;
    padding: 15px 0;
    text-align: center;
    position: relative;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 15px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    transition: background 0.3s;
}
nav ul li a:hover {
    background: #e67e22;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #2c3e50;
        position: absolute;
        width: 100%;
        left: 0;
        top: 50px;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        text-align: center;
        padding: 10px 0;
    }
    
    .logo {
        right: 10px;
        top: 5px;
    }
    .logo img {
        max-width: 100px;
    }
}

header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #34495e, #2c3e50);
    color: white;
}
header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
header p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

.why-we-exist {
    text-align: center;
    padding: 40px;
    background: #eef1f7;
}
.why-we-exist h2 {
    color: #2c3e50;
}
.why-we-exist p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    color: #555;
}

.logo {
    position: absolute; 
    right: 20px;
    top: 10px;
}
.logo img {
    max-width: 60px;
    height: auto;
}

#services {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-item {
    margin-bottom: 30px;
}
.service-item img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-top: 10px;
}
#locations {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.state {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    background: #2c3e50;
    color: white;
    margin: 10px 0;
    border-radius: 5px;
}
.state:hover {
    background: #e67e22;
}
.cities {
    display: none;
    list-style: none;
    padding: 0;
}
.cities li {
    font-size: 18px;
    margin: 5px 0;
}

.contact {
    text-align: center;
    padding: 40px;
    background: #ffffff;
}
.contact form {
    max-width: 500px;
    margin: auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact button {
    background: #2c3e50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-container {
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Space between text and icon */
    font-family: Arial, sans-serif;
}

    /* Optional: Styling for the WhatsApp link */
.wa-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #25D366;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    color: white;
    font-size: 14px;
    text-decoration: none;
}

    /* Optional: Hover effect for the WhatsApp link */
.wa-link:hover {
    background-color: #128C7E;
}

.margin-zero {
    margin: 0%;
}