/* Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f0f7f7;
    color: #333;
}

/* Header */
header {
    background-color: #007c91; /* Teal Blue */
    color: white;
    padding: 25px;
    text-align: center;
}
/* Call Now Button */

.call-button {
    display: inline-block;
    background-color: #d4af37; /* gold */
    color: #0f2f33;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s ease;
}

.call-button:hover {
    background-color: white;
    color: #0f2f33;
    box-shadow: 0 0 12px #d4af37;
}
/* Navigation */
nav {
    background-color: #005f6b; /* Darker Teal */
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #a8f0f0; /* Light Teal Glow */
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
}

ul li {
    padding: 8px 0;
}

/* Buttons */
button {
    background-color: #007c91;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: #00a8a8;
}

/* Form Styling */
form {
    max-width: 500px;
    margin: auto;
    text-align: left;
}

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

textarea {
    resize: vertical;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Email Link */

.email-link a {
color:#d4af37;
text-decoration:none;
font-weight:bold;
}

.email-link a:hover {
color:white;
text-shadow:0 0 8px #d4af37;
}

/* Footer */
footer {
    background-color: #005f6b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }
}





