/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* 24/7 Banner */
.banner {
    background-color: #ff4d4d;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('images/main_title_pic.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #005a87;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #003f5e;
}

.cta-button.whatsapp {
    background-color: #25D366;
    margin-left: 15px;
}

.cta-button.whatsapp:hover {
    background-color: #1DA851;
}

/* Services Section */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    color: #005a87;
    margin-bottom: 40px;
    font-size: 2rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin: 20px 0 10px;
    color: #005a87;
}

/* Map Section */
.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Contact Section */
#contact a {
    color: #005a87;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
    text-align: left;
}

form label {
    display: block;
    margin-top: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    margin-top: 15px;
    padding: 12px 25px;
    background: #005a87;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background: #003f5e;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

footer .socials {
    margin-bottom: 10px;
}

footer .socials a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s;
}

footer .socials a:hover {
    transform: scale(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 2rem;
    padding: 15px 18px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1);
}

/* Responsive */
@media(max-width: 768px){
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}