* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}




html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal overflow */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 28px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

/* Logo Styling */
.logo img {
    height: 30px;
    /* Decrease the height */
    width: auto;
    /* Keep the aspect ratio intact */
}

/* Navbar Links Styling */
.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    font-weight: bold;
}

.navbar ul li {
    position: relative;
}

/* Link Styling */
.navbar ul li a {
    text-decoration: none;
    color: #32746D;
    padding: 5px 10px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar ul li a:hover {
    background-color: rgba(50, 116, 109, 0.1);
    /* Light background effect */
    color: #000000;
    transform: scale(1.1);
}


/* Dropdown Menu Styling */
.navbar ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 250px;
    opacity: 0;
    /* Hidden initially */
    transition: opacity 0.3s ease;
}

/* Dropdown Item Styling */
.navbar ul li .dropdown-menu li a {
    display: block;
    padding: 5px 20px;
    color: #000000;
}

.navbar ul li .dropdown-menu li a:hover {
    background-color: #ffffff;
    color: #32746D;
}

/* Show Dropdown on Hover */
.navbar ul li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    /* Fade-in effect */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .navbar {
        height: 60px; /* Reduce height for mobile */
        padding: 10px 15px;
    }

    
    
    .navbar ul {
        display: none;
        /* Hide navbar links by default */
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        background-color: #ffffff;
    }

    .navbar.active ul {
        display: flex;
        /* Show navbar links when active */
    }
    


    /* Ensure Hamburger Icon is visible */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 10px;
        width: 30px;
        height: 20px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        z-index: 1100;
        /* Ensure it's above other elements */
    }

    /* Styling for the mobile hamburger icon */
    .hamburger span {
        display: block;
        width: 30px;
        height: 4px;
        margin: 5px 0;
        background-color: #32746D;
    }

    /* Hide Hamburger Icon when Menu is Active */
    .navbar.active .hamburger {
        display: none;
    }

    /* Handle Dropdown on Mobile */
    .navbar ul li .dropdown-menu {
        position: absolute;
        width: 100%;
        opacity: 1;
        display: none;
        /* Hide dropdowns initially */
    }

    .navbar ul li.active .dropdown-menu {
        display: block;
        /* Show dropdown when the li has active class */
    }

    .navbar ul li a {
        padding: 10px 20px;
        text-align: center;
        width: 100%;
        font-size: 14px;
    }
}



/* Close (Cross) Icon */
.close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #32746D;
    cursor: pointer;
    z-index: 1200;
}

.close-btn:hover {
    color: red;
}



.heading {
    color: #000000;
    text-align: center;
    font-weight: bold;

}

.content-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.left-section {
    flex: 2;
    margin-right: 40px;
}

.image-container img {
    width: 100%;
    height: 440px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.text-content {
    margin-top: 20px;
    color: #000000;
}

.text-content h2 {
    font-size: 24px;
    margin-top: 10px;
}

.text-content h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #32746D;
    font-weight: bold;
}

.text-content ol {
    padding-left: 20px;
}

.text-content ol li {
    margin-bottom: 10px;
}



footer {
    background-color: #32746D;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    /* Consistent gap between all columns */
    align-items: flex-start;
    width: 100%;
}

.column {
    width: 22%;
    /*min-width: 250px;*/
    margin: 0;
    /* Remove the margin for uniform spacing */
    padding-top: 0;
    padding: 15px;
    /* Add uniform padding inside the columns */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute content evenly inside the column */
    box-sizing: border-box;
}




.column h3 {
    color: #ffffff;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin: 10px 0;
}

.column ul li a {
    color: #fff;
    text-decoration: none;
}

.column p {
    margin: 10px 0;
}

.column:first-child {
    text-align: left;
}

.column:first-child img {
    max-width: 200px;
    /* Reduced the width */
    height: auto;
    margin-bottom: 15px;
    margin-left: 0;

}

.column:first-child p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}


.footer-bottom {
    display: block;
    flex-direction: column;
    /* Stack paragraph and icons vertically */
    align-items: center;
    /* Center content */
    padding: 20px 0px;
    /* background-color: #000000;*/
    text-align: center;
    width: 100vw;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0px;
    border-top: 1px solid #ddd;
    
    /* background: linear-gradient(to right, #0f2027, #203a43, #2c5364);*/

}

.footer-bottom p {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    width: 100vw;
    /* Ensures it takes full row width */
    text-align: center;
    justify-content: center;

}

.social-media {
    display: flex;
    justify-content: center;
    /* Center icons */
    flex-wrap: wrap;
    /* Ensures icons move to a new row if needed */
    gap: 15px;
    width: 100vw;
    margin-bottom: 10px;
}

.social-media a img {
    max-width: 40px;
    height: auto;
}


.content {
    flex: 1;
}

.contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 0;
    color: rgb(0, 0, 0);
    position: fixed;
    bottom: 0;
    width: 100%;

}

.contact-bar div {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.contact-bar div img {
    margin-right: 10px;
    height: 40px;
    width: 40px;
}

.contact-bar div:not(:last-child) {
    border-right: 1px solid white;
    padding-right: 20px;
}

.contact-bar div:last-child {
    padding-left: 20px;
}


/*footeer*/


@media (max-width: 768px) {


    /* Footer container stacks all columns vertically */
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 0px;
        /* Adds consistent spacing between the stacked columns */
    }

    /* Each column takes full width and centers its content */
    .column {
        width: 100%;
        /* Full width for each column */
        text-align: center;
        /* Centers the content for readability */
        margin-bottom: 10px;
        /* Adds spacing between columns */
    }

    /* For the first column (logo and company info) */
    .column:first-child {
        text-align: center;
        /* Centers the logo and text */
    }

    .column:first-child img {
        margin: 0 auto 15px;
        /* Center the logo and add spacing below it */
        max-width: 150px;
        /* Resize the logo for mobile */
        height: auto;
    }

    .column:first-child p {
        font-size: 14px;
        /* Adjust text size for readability on mobile */
        line-height: 1.5;
        /* Add proper line spacing */
    }

    /* Page links and services (ensure proper alignment) */
    .column ul {
        list-style: none;
        padding: 0;
    }

    .column ul li {
        margin: 10px 0;
        /* Adds spacing between list items */
    }

    .column ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        /* Adjust link size for mobile */
    }

    /* Social media icons section */
    .social-media {
        gap: 10px;
        /* Reduce spacing between icons */
    }

    .social-media a img {
        max-width: 30px;
        /* Resize icons for smaller screens */
        height: auto;
    }

    /* Footer bottom text and social media icons */
    .footer-bottom {
        padding: 15px 10px;
        /* Reduce padding for smaller screens */
        text-align: center;
        margin-bottom: 40px;
        justify-items: center;
        /* Ensure everything is centered */
    }

    .footer-bottom p {
        font-size: 14px;
        /* Adjust text size for footer info */
    }
}










/* Hide contact bar on mobile */
@media (max-width: 768px) {
    .contact-bar {
        display: none;
    }
}