/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

/* Link Styling */
a {
    text-decoration: none;
    color: #004aad;
}

a:hover {
    color: #003080;
}

/* Header & Navigation */
header {
    background: #004aad;
    color: white;
    padding: 15px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    margin-bottom: 0;
    position: relative;
    text-align: center;
    color: white;
    min-height: 32vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero-image.jpg') no-repeat center center/cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 173, 0.7);
}

.hero h1, .hero p {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

/* Section Styles */
.section {
    padding: 35px 20px;
    text-align: center;
}

/* About Section */
.about {
    background-color: #f8f8f8;
    color: #333;
}

.about h2 {
    margin-bottom: 20px;
}

/* Blog Section */
.blog {
    background-color: #f4f4f4;
    padding: 60px 0;
    color: #333;
}

.blog h2 {
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio {
    background: url('portfolio-image.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: white;
}

.portfolio h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.portfolio .portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio .portfolio-item {
    width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-item img {
    width: 100%;
    height: auto;
}

/* Service Section */
.services {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: url('services-image.jpg') no-repeat center center/cover;
    color: white;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 173, 0.7);
}

.services h1 {
    position: relative;
    z-index: 2;
}

/* Service Grid */
.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    color: #004aad;
    padding: 20px;
    border-radius: 5px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    background: #ffcc00;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background: #e6b800;
}

/* Contact Page */
.contact {
    position: relative;
    text-align: center;
    padding: 50px;
    background: url('contact-image.jpg') no-repeat center center/cover;
    color: white;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 173, 0.7);
}

.contact h1,
.contact p,
.contact form,
.contact-info,
.contact-map {
    position: relative;
    z-index: 2;
}

/* Contact Form Enhancements */
.contact-form form {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: vertical;
}

.contact-form form textarea {
    height: 150px;
}

.contact-form form button[type="submit"] {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    background-color: #004aad;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form form button[type="submit"]:hover {
    background-color: #003080;
}

/* Map and Info Section */
.contact-map {
    margin: 40px auto;
    max-width: 800px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 20px auto 0;
    padding: 20px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #000000;
    color: white;
}

/* Generic Elements */
section {
    padding: 35px 20px;
    text-align: center;
}

/* Footer Styles */
footer {
    padding: 20px;
    background-color: #222;
    color: white;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}


@media (max-width: 768px) {
    .hero {
    margin-bottom: 0;
        min-height: 28vh;
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}


/* About page – remove bullet dots */
.about ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.about ul li {
    margin-bottom: 8px;
}
