/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #212121;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    color: #23527c;
}


/* Header Styles */

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav li {
    margin-right: 20px;
}

header nav a {
    color: #fff;
}

header nav a:hover {
    color: #ccc;
}


/* Gallery Styles */

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#gallery img {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


/* About Styles */

#about {
    background-color: #929090;
    padding: 2rem;
}

#about h2 {
    margin-top: 0;
}


/* Services Styles */

#services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#services.service {
    width: 30%;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#services.service h3 {
    margin-top: 0;
}


/* Contact Styles */

#contact {
    background-color: #aeadad;
    padding: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#contact-form label {
    margin-bottom: 10px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

#contact-form button[type="submit"] {
    background-color: #337ab7;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#contact-form button[type="submit"]:hover {
    background-color: #23527c;
}


/* Newsletter Styles */

#newsletter {
    background-color: #f7f7f7;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#newsletter h3 {
    margin-top: 0;
}

#newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

#newsletter button[type="submit"] {
    background-color: #337ab7;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#newsletter button[type="submit"]:hover {
    background-color: #23527c;
}


/* Footer Styles */

#footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    clear: both;
}

#footer p {
    margin-bottom: 0;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: #ccc;
}

.whatsapp-bubble {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #0a0a0a;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    font-size: 2rem;
}


/* Creamish and Greyish