<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h4 {
    color: #2c3e50;
    margin: 0 0 20px;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1abc9c;
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #002f5f, #000428);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-width: 150px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}
.menu ul li a:hover {
    background-color: #1abc9c;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #002f5f;
        padding: 15px 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .menu ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .menu ul li a {
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    .hamburger {
        display: flex;
    }

    .menu.open {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #004e92, #000428);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    animation: fadeIn 1s ease-in-out;
}

.hero-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    color: #f0f0f0;
    animation: fadeIn 2s ease-in-out;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 3s ease-in-out;
}

.cta-button:hover {
    background-color: #e65039;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}
h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #1abc9c;
    position: absolute;
    left: 0;
    bottom: -10px;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 50px; }
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin: 40px auto;
    max-width: 1200px;
}

.services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #002f5f;
    margin-bottom: 40px;
    position: relative;
}

.services-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1abc9c;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.services-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background-color: #34495e;
    color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc((100% - (20px * 2)) / 3);
    max-width: calc((100% - (20px * 2)) / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #1abc9c;
    margin-bottom: 15px;
}

.service-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.call-now-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.call-now-button:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    .service-box {
        max-width: 100%;
	flex-basis: 100%;
        margin-bottom: 20px;
    }
}
/* Map Section */
.map-section {
    background-color: #f4f7f6;
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
}

.map-content {
    margin-bottom: 30px;
}

.map-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #002f5f;
    margin-bottom: 10px;
    position: relative;
}

.map-content h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #1abc9c;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.map-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 20px;
    }
    .map-content h2 {
        font-size: 28px;
    }

    .map-content p {
        font-size: 16px;
    }

    .map-container {
        height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.faq-image {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

.faq-toggle {
    flex: 1;
    animation: fadeIn 2s ease-in-out;
}

.faq-container {
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    background-color: #3498db;
    color: #fff;
    padding: 15px;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-question:hover {
    background-color: #2980b9;
}

.faq-question.active {
    background-color: #1abc9c;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    background-color: #ecf0f1;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question.active + .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
    }

    .faq-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Reviews Section */
.reviews {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

.review-item {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.review-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.review-item p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .reviews {
        flex-direction: column;
    }

    .review-item {
        margin-bottom: 20px;
    }
}

/* Styles for Why Choose Us Section */
.why-choose-us-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.image-container {
    flex: 1 1 40%;
    max-width: 40%;
    margin-right: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.text-container {
    flex: 1 1 60%;
    max-width: 60%;
}

.text-container p,
.text-container ul {
    margin-bottom: 20px;
}

.text-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .why-choose-us-content {
        flex-direction: column;
    }

    .image-container,
    .text-container {
        max-width: 100%;
        margin-right: 0;
    }

    .image-container {
        margin-bottom: 20px;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.footer-content {
    font-size: 16px;
}


.container {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}
</pre></body></html>