/* General Colors */
:root {
    --primary-color: #004aad; /* Deep blue */
    --secondary-color: #f28729; /* Accent orange */
    --background-color: #f4f4f4;
    --text-color: #2d2d2d;
    --footer-color: #002b5c; /* Footer navy blue */
    --hover-color: #f28729; /* Hover for links and buttons */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-size-5xl: 24px;
    --font-size-lgi: 19px;
    --font-size-29xl: 48px;
}

/* Body Styling */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-montserrat);
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Improved Navigation Styles */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 30px;
    position: relative;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--hover-color);
}

.company-info-navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.contact-info1-navigation {
    display: none; /* Hide the contact info by default on mobile */
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background-color: var(--primary-color);
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}
.container3-section1 {
    text-align: center;
    color: #004aad;
}

.service-list {
    list-style-type: none;
    padding: 0;
}

.service-list li {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: "•";
    color: #f28729;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 18px;
    margin-right: 10px;
}
/* Mobile Navigation */
@media (max-width: 768px) {
    .company-info-navigation {
        display: none; /* Ensure the menu is hidden by default */
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
        transition: all 0.3s ease;
        padding: 20px;
    }

    .company-info-navigation.active {
        display: flex; /* Show the menu when active */
    }

    .hamburger-menu {
        display: flex;
    }

    .contact-info1-navigation {
        display: none; /* We can keep this hidden on mobile */
    }

    .phone-icon-navigation {
        color: white;
        font-size: 14px;
        padding-right: 10px; /* Space before phone number */
    }

    .company-info-navigation a {
        padding: 10px 0;
    }
}

/* Section Header */
.section-header {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    background-image: url(../public/section@3x.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px; /* Adjust height based on need */
}

.section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Adds subtle overlay */
    z-index: 0;
}

.h1-header {
    font-size: 36px;
    color: white;
    z-index: 1;
    position: relative;
    text-shadow: 1px 1px 1px black;
}
div.div-header h2{
    font-size: 20px;
    color: white;
    z-index: 1;
    position: relative;
    text-shadow: 1px 1px 1px black;
}
/* Services Section */
.container-section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: var(--background-color);
}

.container1-section1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
}

.margin-icon-section1 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.paragraph-section1 {
    max-width: 700px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

    .h1-section1 {
        font-size: 32px;
        text-align: center;
    }

    .paragraph-section1 {
        text-align: center;
        padding: 10px;
    }
}

/* Footer Enhancements */
.footer {
    background-color: var(--footer-color);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-container-footer {
    max-width: 800px;
}

.footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer a {
    color: var(--hover-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

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

    .address-container-footer {
        max-width: 100%;
    }
}

/* Styling for the company text block next to the logo */
.logo-text-container {
    display: flex;
    align-items: center;
}
.company-text-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px; /* Reduces space between logo and text */
}

.company-title {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
    color: yellow;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    margin: -5px 0 0;
    color: #120d8a;
}


/* Adjust logo positioning */
.logotemp-1-icon-navigation {
    height: 75px;
    width: 75px;
    /*position: relative;*/
    /*top: 0;*/
    /*left: 0;*/
    /*margin-right: 20px;*/
}

.photo-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sample-logo-navigation {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logotext {
    margin: 0;
    font-size: 12px;
    color: white;
}

@media (max-width: 768px) {
    .company-info-navigation {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logotemp-1-icon-navigation {
        height: 40px;
        width: 40px;
    }

    .logotext {
        font-size: 10px;
    }

    .phone-number-navigation {
        font-size: 12px;
    }
}
