/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: black;
}

/* Header Styles */
header {
    background-color: #00072D;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo and Text Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    max-height: 100px;  /* Logo height */
    width: auto;  /* Maintain aspect ratio */
}

.logo-container .logo-text {
    font-size: 1.2em;
    color: #1A43BF;
    font-weight: bold;
}

/* Navigation Bar */
nav {
    margin-top: 20px;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li .btn {
    background-color: #1A43BF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav ul li .btn:hover {
    background-color: #00072D;
    color: #fff;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .logo-container img {
        max-height: 80px;  /* Smaller logo for mobile */
    }

    nav ul {
        flex-direction: column;  /* Stack nav items vertically */
        gap: 15px;
    }

    nav ul li a {
        font-size: 1em;  /* Smaller font size */
    }

    nav ul li .btn {
        padding: 10px;  /* Adjust padding for mobile */
    }
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: white; /* Set fallback background */
    overflow: hidden; /* Ensure no overflow */
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    filter: blur(7px); /* Blur the image */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Position behind text */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2; /* Position above the image */
    text-align: center;
    padding: 20px; /* Add padding for spacing */
    color: #00072D; /* Text color */
}

/* Hero Heading */
.hero-content h1 {
    font-size: 2.8em;
    font-weight: bold;
    margin: 0 0 10px; /* Add spacing below the heading */
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.8); /* Improve readability */
}

/* Hero Paragraph */
.hero-content p {
    font-size: 1.4em;
    margin: 0 0 20px; /* Add spacing below the paragraph */
    line-height: 1.6; /* Adjust line height for readability */
    color: #333;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
}

/* Hero Button */
.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #1A43BF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-content .btn:hover {
    background-color: #00072D;
    color: #fff;
}

/* Desktop View */
@media (min-width: 769px) {
    .hero-content h1 {
        font-size: 3em; /* Larger heading */
    }

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

    .hero-content .btn {
        margin-top: 10px;
    }
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

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

    .hero-content .btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .hero-content .btn {
        font-size: 0.85em;
        padding: 7px 12px;
    }
}

/* Our Services Section */
#our-services {
    background-color: #fff; /* White background */
    padding: 40px 20px;
    text-align: center;
}

#our-services h2 {
    font-size: 2em;
    color: #00072D;
    margin-bottom: 40px;
}

#our-services .services-container {
    display: flex;
    justify-content: space-between; /* Spreads out the service items evenly */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    gap: 20px;
}

#our-services .service-item {
    background-color: #f4f4f4; /* Light grey background for service items */
    padding: 20px;
    border-radius: 8px;
    width: calc(25% - 20px); /* Equal width with a gap */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease;
}

#our-services .service-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

#our-services .service-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

#our-services .service-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #00072D;
}

#our-services .service-item p {
    font-size: 1em;
    color: #00072D;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

#why-choose-us h2 {
    font-size: 2em;
    color: #00072D;
    margin-bottom: 20px;
}

#why-choose-us ul {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
}

#why-choose-us ul li {
    margin: 10px 0;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: black;
}

/* Services Page */
#services-page {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

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

.service-block {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    background-color: white;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 48%;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.service-item h3 {
    margin-top: 10px;
}

.terms-quote-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.terms-container,
.quote-form-container {
    flex: 1;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-container ul {
    list-style-type: none;
    padding-left: 20px;
}
.terms-container ul li {
    margin-bottom: 20px; /* Adjust this value for more or less spacing */
}
.terms-container p {
    margin-bottom: 20px; /* Adjust this value for more or less spacing */
}
.quote-form-container form {
    display: flex;
    flex-direction: column;
}

.quote-form-container label {
    margin-bottom: 5px;
}

.quote-form-container input,
.quote-form-container button {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quote-form-container button {
    background-color: #1A43BF;
    color: white;
    border: none;
    cursor: pointer;
}

.checkbox-container {
    margin-top: 15px;
}

.checkbox-container label {
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-container span {
    color: #333;
}

.checkbox-container a {
    color: #1A43BF;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #00072D;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-section {
    flex: 1;
    padding: 10px;
}

footer .footer-section h3 {
    margin-bottom: 10px;
}

footer .footer-section ul {
    list-style-type: none;
}

footer .social-media-icons a {
    color: white;
    margin-right: 10px;
}

footer .footer-logo {
    width: 150px;
    height: auto;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .services-container,
    .terms-quote-container {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
    }

    .quote-form-container {
        width: 100%;
    }
}

/* Footer */
footer {
    background-color: #00072D;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Mobile Menu */
    nav ul {
        flex-direction: column; /* Stack the menu items */
        gap: 10px;
    }

    /* Hero Section */
    .hero {
        padding: 30px 20px;
    }

    /* Our Services Section */
    #our-services .services-container {
        flex-direction: column; /* Stack the services */
        align-items: center; /* Center the items */
    }

    #our-services .service-item {
        width: 90%; /* Service items take more width */
        margin-bottom: 20px; /* Space between items */
    }

    /* Why Choose Us Section */
    #why-choose-us h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    /* Our Services Section */
    #our-services .service-item {
        width: 100%; /* Full width for very small screens */
    }
    
    /* Mobile Hero Section */
    .hero h1 {
        font-size: 1.8em;
    }

    /* Footer */
    footer {
        font-size: 0.8em;
    }
}
#quote-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#quote-form h2 {
    text-align: center;
    color: #1A43BF; /* Blue color */
    font-size: 2em;
    margin-bottom: 20px;
}

#quote-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#quote-form label {
    font-size: 1.1em;
    color: #00072D;
}

#quote-form input[type="text"],
#quote-form input[type="email"],
#quote-form input[type="tel"],
#quote-form input[type="date"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

#quote-form input[type="text"]:focus,
#quote-form input[type="email"]:focus,
#quote-form input[type="tel"]:focus,
#quote-form input[type="date"]:focus {
    border-color: #1A43BF;
    outline: none;
}

#quote-form button[type="submit"] {
    padding: 12px 25px;
    background-color: #1A43BF; /* Blue background */
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#quote-form button[type="submit"]:hover {
    background-color: #00072D; /* Darker blue on hover */
}
/* Footer Section */
footer {
    background-color: #00072D;
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-size: 1em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.social-media-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    text-decoration: none;
}

.social-media-icons a:hover {
    color: #1A43BF; /* Blue hover effect */
}

.footer-section h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #1A43BF; /* Blue hover effect */
}

.footer-section ul li i {
    margin-right: 10px;
    color: #1A43BF; /* Blue color for icons */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}
/* General styling for Contact Us page */
#contact-us-page {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-form,
.contact-info {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 48%;
}

.contact-form h2,
.contact-info h3 {
    font-family: Arial, sans-serif;
    color: #1A43BF;
    text-align: center;
}

.contact-form label,
.contact-info ul li {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

.contact-form button {
    background-color: #1A43BF;
    color: white;
    cursor: pointer;
    border: none;
}

.contact-form button:hover {
    background-color: #00072D;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info ul li a {
    color: #1A43BF;
    text-decoration: none;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 90%; /* Ensure the form and info fit nicely on small screens */
        margin-bottom: 20px;
    }

    .contact-form h2,
    .contact-info h3 {
        font-size: 1.5rem; /* Adjust headings for mobile */
    }

    .contact-form label,
    .contact-info ul li {
        font-size: 1rem; /* Adjust font size for mobile */
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 0.9rem; /* Reduce input sizes on mobile */
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 0.8rem; /* Further adjust font sizes for very small screens */
    }
}
/* Breadcrumbs Style */
.breadcrumb {
    background-color: #f4f4f4;
    padding: 10px 15px;
    margin-bottom: 20px;
    list-style: none;
    border-radius: 5px;
}

.breadcrumb-item {
    display: inline;
    font-size: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 10px;
    color: #333;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #1A43BF;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: bold;
}