<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ececec; /* White */
    color: #ffffff; /* White text for contrast */
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 1em 2em;
}

.logo img {
    width: 150px;
}

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

.nav-links li {
    display: inline-block;
}

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

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 60vh; /* Adjust height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/assets/beautiful-red-brick-house-with-decorative-lights.jpg') no-repeat center center/cover;
    filter: blur(2px) brightness(0.4);
    z-index: 0;
    opacity: 0.8;
}

/* Glossy Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 10px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

/* CTA Button Styles */
.cta-button {
    background-color: white;
    color: #000;
    padding: 0.8em 1.5em;
    text-decoration: none;
    border-radius: 30px;
    font-weight: italic;
    font-size: 1em;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #984905;
    transform: scale(1.05);
}

/* Services Section Styles */
.services-section {
    background-color: #111;
    padding: 4em 2em;
    text-align: center;
}

.services-section h2 {
    color: #D3D3D3;
    margin-bottom: 1em;
}

.services {
    display: flex;
    justify-content: space-around;
    gap: 2em;
    flex-wrap: wrap;
}

.service-card {
    background-color: #222;
    padding: 2em;
    border-radius: 10px;
    max-width: 300px;
    color: #ffffff;
}

.service-card h3 {
    color: #D3D3D3;
    margin-bottom: 0.5em;
}

.about-section {
    max-width: 1000px; /* Set a width to control alignment */
    margin: 0 auto; /* Centers the whole section */
    padding: 2em;
}

.about-section h2 {
    background-color: #e8e8e8; /* Dark Green */
    color: #070000;
    text-align: left; /* Left-align for professional appearance */
    display: flex;
    justify-content: center;
}

.about-section p {
    text-align: left; /* Ensures paragraph text is left-aligned */
    font-size: 1.1em;
    line-height: 1.6;
    color: #000;
}


/* Footer Styles */
.footer {
    background-color: #111;
    color: #fff;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 1em;
}

.contact-us h3,
.inquiry-form h3,
.area-coverage h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.contact-us p,
.inquiry-form label,
.area-coverage p {
    margin: 0.5em 0;
}

.inquiry-form form {
    display: flex;
    flex-direction: column;
}

.inquiry-form input,
.inquiry-form textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-button {
    background: linear-gradient(180deg, #865f36 0%, #865f36 100%); /* Gradient for depth */
    color: rgb(236, 106, 35);
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 8px; /* Soft rounded edges */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px #865f36 ; /* Shadow for 3D effect */
    outline: none;
}

/* Clicked (Pressed) Effect */
.submit-button:active {
    box-shadow: 0 2px #010f06;
    transform: translateY(2px); /* Moves down slightly when pressed */
}

/* Hover Effect */
.submit-button:hover {
    background: linear-gradient(180deg, #589d67 0%, #3d7550 100%);
}


.area-coverage p {
    font-size: 0.9em;
    line-height: 1.5;
}

/* Footer Navigation */
.footer-nav {
    text-align: center;
    margin-top: 2em;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

/* Call &amp; WhatsApp Buttons Container */
.call-now-container {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 1em;
}


/* Call, WhatsApp &amp; Facebook Buttons Container */
.contact-icons {
    display: flex;
    align-items: center; /* Align all icons properly */
    gap: 15px; /* Space between icons */
    margin-top: 5px; /* Adjust spacing from text */
}

/* Button Styling */
.call-now-button, .whatsapp-button, .facebook-button {
    display: inline-block;
    background: none;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease-in-out;
}

/* Button Hover Effects */
.call-now-button:hover, .whatsapp-button:hover, .facebook-button:hover {
    transform: scale(1.1);
}

/* Icon Styling */
.call-now-button img, 
.whatsapp-button img,
.facebook-button img {
    width: 64px; /* Adjust icon size */
    height: 64px;
}


/* Mobile Fix */
/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-content {
        max-width: 90%;
        font-size: 1em;
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .call-whatsapp-container {
        justify-content: center;
    }
}


/* Mobile Responsive Fixes */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 1em;
        text-align: center;
    }

    .hero-section::before {
        opacity: 1; /* Reduce opacity for better visibility */
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        content: "";
        box-shadow: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 1em;
        margin-top: 10px;
    }

    .hero-section {
        backdrop-filter: blur(2px);
        filter: brightness(2.5);
        color: #ffffff;
        font-weight: bold;
    }

    .hero-content h1 {
        font-size: 3em;
        font-weight: bold;
        margin-bottom: 0.5em;
        text-shadow: none;
        outline: none;
    }

    .hero-content p {
        font-size: 1em;
    }

    .services, .about-cards {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

</pre></body></html>