@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
}

.top-bar {
    background-color: #d0caca;
    font-family: 'Open Sans';
    font-size: 17px;
    color: rgb(0, 0, 0);
    text-align: center;
    position: fixed;
    top: 0;
    height: 63px;
    width: 100%;
    z-index: 1000;
    display: flex; /* Add flex */
    justify-content: center; /* Center content */
    align-items: center; /* Vertically align content */
}

.topbarlink {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    box-sizing: border-box;
    width:245px;
    height: 36px;
    line-height: 34px;
    user-select: none;
    border-radius: 4px;
    margin-left: 20px;
    cursor: pointer;
    display: inline-block; /* Ensure it stays inline */
    text-decoration: none solid rgb(0, 0, 0);
    text-align: center;
    padding: 0 10px; /* Add some padding for better spacing */
    transition: background-color 0.3s ease;
}

.topbarlink:hover {
    background-color: #d1d1d1;
    color: #000000;
}

.topbarlink:active {
    background-color: #93c5ff71;
    border: none;
    color: #000000;
}



.container {
    display: flex;
    margin-top: 50px; /* Adjust depending on top bar height */
}

.sidebar {
    background-color: #4f474e;
    color: white;
    width: 245px;
    height: 100vh;
    position: fixed;
    top: 50px; /* Same as top bar height */
    left: 0;
    padding-top: 20px;
}

.logo {
    max-height: 40px;
    max-width: 100%;
}
.home-link {
    font-weight: bold;
    border-bottom: 7px solid #38a4e5;
    transition: border-bottom 0.3s; 
}

.home-link:hover {
    color: #777777;
    border-bottom: 7px solid #27648a;
    margin-right: 168px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin-left: 15px;
}

.sidebar ul li {
    padding: 10px;
    text-align: left;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #777777;
    display: block;
}

.content {
    margin-left: 245px; /* Width of sidebar */
    flex: 1;
}
.about-link {
    font-weight: bold;
    border-bottom: 7px solid #38a4e5;
    transition: border-bottom 0.3s; 
}

.about-link:hover {
    color: #777777;
    border-bottom: 7px solid #27648a;
    margin-right: 138px;
}

.background-div-1 {
    position: relative; /* Ensure child elements are positioned correctly */
}

.blue-line {
    position: absolute; /* Position it relative to the parent */
    left: 0;
    width: 100%; /* Full width of the image container */
    height: 10px; /* Adjust line thickness */
    background-color: #38a4e5; /* Blue color for the line */
    z-index: 0; /* Set to 0 so it goes behind the overlays */
    bottom: 0; /* Initial position at the bottom of the div */
    transition: bottom 0.1s; /* Smooth transition effect */
}





        /* Additional styles for the background images */
        .background-div {
            height: 445px; /* Adjust height as needed */
            background-size: cover;
            background-position: center;
            margin: 0px 0; /* Space between divs */
            color: white; /* Text color */
            position: relative; /* Positioning context for absolute text */
            display: flex; /* Use flexbox for centering */
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
        }
        .text-overlay {
            text-align: center; /* Center text within the overlay */
            position: relative; /* Positioning for the text overlay */
            z-index: 1; /* Ensure text appears above the overlay */
        }
        .text-overlay h1 {
            font-family: Georgia, Arial;
            font-weight: 700;
            font-size: 37px; /* Adjust font size as needed */
            margin: 50px; /* Remove default margin */
        }
        .text-overlay p {
            font-family: Georgia, Arial;
            font-weight: 700; /* Normal weight for the paragraph */
            margin: 5px 0 0; /* Margin for spacing */
        }
        /* Overlay to reduce brightness */
        .brightness-overlay {
            position: absolute; /* Positioning over the background */
            top: 0; /* Cover the entire div */
            left: 0; /* Cover the entire div */
            right: 0; /* Cover the entire div */
            bottom: 0; /* Cover the entire div */
            background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
            z-index: 0; /* Place below the text */
        }
        .brightness-overlay-second {
            position: absolute; /* Positioning over the background */
            top: 0; /* Cover the entire div */
            left: 0; /* Cover the entire div */
            right: 0; /* Cover the entire div */
            bottom: 0; /* Cover the entire div */
            background-color: rgba(0, 0, 0, 0.2); /* Black overlay with 50% opacity */
            z-index: 0; /* Place below the text */
        }
        .brightness-overlay-third {
            position: absolute; /* Positioning over the background */
            top: 0; /* Cover the entire div */
            left: 0; /* Cover the entire div */
            right: 0; /* Cover the entire div */
            bottom: 0; /* Cover the entire div */
            background-color: rgba(255, 255, 255, 0.2); /* Black overlay with 50% opacity */
            z-index: 0; /* Place below the text */
        }
        .brightness-overlay-fourth {
            position: absolute; /* Positioning over the background */
            top: 0; /* Cover the entire div */
            left: 0; /* Cover the entire div */
            right: 0; /* Cover the entire div */
            bottom: 0; /* Cover the entire div */
            background-color: rgba(255, 255, 255, 0.438); /* Black overlay with 50% opacity */
            z-index: 0; /* Place below the text */
        }
        .background-div:first-of-type {
            background-attachment: fixed;
            background-position: right 10%; 
            background-size: 85%; /* Reduce the size of the image */
            background-repeat: no-repeat;
        }
          .text-overlay-second {
            position: absolute;
            font-family: 'Arial', sans-serif;
            font-size: 20px;
            padding: 20px;
            text-align: left;
            border-radius: 10px;
            top: 20%;
            left: 10%;
            width: 80%;
        }


        .text-overlay-second h1 {
            font-size: 35px;
            color: #ffffff;
        }
        .text-overlay-second p {
            font-family: Montserrat, Arial;
            color: #000000;
            font-weight: 400;
        }
        .about-image {
            max-width: 400px; /* Set a maximum width for the image */
            float: right; /* Float the image to the right */
        
        }
        
        /* Clear the float */
        .text-overlay-second::after {
            content: ""; /* Create a pseudo-element to clear the float */
            display: table; /* Ensure the container recognizes the float */
            clear: both; /* Clear floats */
        }

.background-div-1 {
    height: 445px; /* Specific height if needed */
}

.background-div-2 {
    height: 350px; /* Different height for this div */
}

.background-div-3 {
    height: 150px; /* Different height for this div */
}

.background-div-4 {
    height: 395px; /* Different height for this div */
}
.maintenance-container { 
    display: flex; /* Align items in a row */ 
    justify-content: space-around; /* Space between items */ 
    align-items: center; /* Center items vertically */
    gap: 20px; /* Add spacing between items */
    position: relative;
    z-index: 1;
}

.maintenance-item {
    color: #000000;
    text-align: center; /* Center text under images */
    flex: 1; /* Ensure equal space for each item */
}

.maintenance-item img {
    max-width: 100%; /* Responsive image */
    height: 224px; /* Maintain aspect ratio */
}

.maintenance-heading {
    text-decoration: underline; /* Underline the heading */
    margin: 10px 0; /* Add some spacing above and below the heading */
    font-weight: bold; /* Make the heading bold */
}

.maintenance-text {
    margin: 5px 0; /* Add some spacing for the caption */
    font-size: 14px; /* Adjust font size as needed */
}

.background-div-8 {
    height: 270px; /* Different height for this div */
}

.image-container { 
    display: flex; /* Align items in a row */ 
    justify-content: space-around; /* Space between items */ 
    gap: 20px; /* Add spacing between items */
}

.image-item {
    color: #000000;
    flex: 1; /* Ensure equal space for each item */
}

.image-item img {
    max-width: 100%; /* Responsive images */
    height: 224px; /* Maintain aspect ratio */
}

.image-heading {
    color: #00ff00;
    margin: 10px 0; /* Add some spacing above and below the heading */
    font-weight: bold; /* Make the heading bold */
    position: relative;
    z-index: 1;
}

.image-text {
    color: #ffffff;
    margin: 5px 0; /* Add some spacing for the caption */
    font-size: 16px; /* Adjust font size as needed */
    position: relative;
    z-index: 1;
    line-height: 37px;
}
.image-text-list {
    color: #ffffff;
    margin: 5px 0; /* Add some spacing for the caption */
    font-size: 16px; /* Adjust font size as needed */
    position: relative;
    z-index: 1;
    line-height: 37px;
}

.aboutpt1-container {
    background-color: #e7ecef; 
    font-family: Montserrat, Arial;
    color: #660000;
	font-weight: 500;
    text-align: left; /* Center the text */
    padding: 30px 33px 20px 80px; /* Padding around the text */
    margin: 0px 0; /* Margin above and below */
    position: relative;
    z-index: 1;
}
.gallery-container {
    background-color: #38a4e5; /* Blue background */
    color: rgb(0, 0, 0);
    text-align: center; /* Center the text */
    padding: 1px; /* Padding around the text */
    margin: 0px 0; /* Margin above and below */
}
.mgmt-container {
    background-color: #38a4e5; /* Blue background */
    color: rgb(0, 0, 0);
    text-align: center; /* Center the text */
    padding: 1px; /* Padding around the text */
    margin: 0px 0; /* Margin above and below */
}


.background-div-5 {
    height: 500px; /* Different height for this div */
}
.gallery01-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.left-images {
    display: flex;
    flex-direction: column;
}

.small-image {
    width: 300px; /* Adjust as needed */
    margin-bottom: 10px; /* Space between images 1 and 2 */
}

.big-image {
    width: 600px; /* Adjust as needed */
    height: 465px; /* Should match the combined height of both small images */
    margin-left: 20px; /* Space between the left images and the big image */
}

.background-div-5b {
    height: 365px; /* Different height for this div */
}

.gallery02-container {
    display: flex;
    justify-content: space-between; /* Space evenly between the images */
    align-items: center; /* Vertically centers images if needed */
    gap: 10px; /* Adjust spacing between images */
    position: relative;
    z-index: 1;
    padding: 30px;
}

.side-image {
    width: 30%; /* Adjust the width as needed to fit within the div */
    object-fit: cover; /* Ensures the image covers the space properly */
}

.two-image {
    width: 45%; /* Adjust the width as needed to fit within the div */
    object-fit: cover; /* Ensures the image covers the space properly */
}

.background-div-6 {
    height: 300px; /* Different height for this div */
}

.background-div-7 {
    height: 160px; /* Different height for this div */
}

.background-div-7b {
    height: 560px; /* Different height for this div */
    background-color: #e7ecef;
}

.enddiv {
    display: flex;
    justify-content: space-between; /* Aligns text and image on the left and right */
    display: flex; /* Enables flexbox layout for inner content */
    justify-content: center; /* Centers items within enddiv horizontally */
    align-items: center; /* Centers items within enddiv vertically */
    text-align: center; /* Optional: Centers text within the text-left div */
}

.text-left {
    flex: 1; /* Allows the text div to take up space */
    margin-right: 20px; /* Space between text and image */
        color: #000000;
    font-family: Montserrat, Arial;
    font-weight: 300;
    font-size: 32px;
}

.image-right img {
    max-width: 85%; /* Ensures the image scales responsively */
    height: auto; /* Maintains aspect ratio */
}
.text-overlay-third h1 {
    position: absolute;
    color: #134f5c;
    font-family: 'Roboto Condensed';
    font-size: 35px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    top: 20%;
    left: 10%;
    width: 80%;
}
.text-overlay_abtpg h1 {
    position: absolute;
    font-family: 'Roboto Condensed';
    font-size: 80px;
    font-weight: 400;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    top: 20%;
    left: 10%;
    width: 80%;
}

.background-div-a2 {
	background-color: #38a4e5;
    height: 435px; /* Different height for this div */
}

.background-div-a3 {
    height: 435px; /* Different height for this div */
}

.text-overlay-mgmt {
	color: #000000;
	text-align: left;
}

.text-overlay-mgmt h2{
	color: #ff0000;
}
.flex-container {
    display: flex;
    align-items: center; /* Vertically centers text next to the image */
}

.inline-image {
    width: 445px;
    height: auto;
    margin-left: 47px;
    margin-right: 10px;
}

.text-content {
    color: #000000;
    text-align: left;
    padding-left: 23px;
    padding-right: 110px;
}
.text-overlay-offer{
	color: #000000;
	text-align: left;
	font-size: large;
	margin-right: 750px;
}
.text-overlay-offer h1{
	font-family:'Roboto Condensed' ;
	color: #f15732;
	text-align: left;

}.text-overlay-offer{
	font-family:'Roboto Condensed' ;
	color: #000000;
	text-align: left;
}
.services-list ul {	
	color: #1c4587;
    font-family: Montserrat, Arial;
	font-weight: 700;
    list-style-type: square; /* Adds bullet points */
    padding-left: 20px; /* Adds some left padding for alignment */
    text-align: left; /* Ensures left alignment */
}

.services-list li {
    margin-bottom: 5px; /* Adds space between list items */
}

.services-list li::marker {
    color: #000000; /* Color for the bullet point */
}

.background-div-a4 {
	background-color: #e7ecef;
    padding: 100px;
    max-width: 100%;
    margin: auto;
	padding-bottom: 20px;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.left-image {
    width: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.left-aligned-textbox {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    flex-grow: 1;
    text-align: left;
}

.centered-textbox {
    background-color: white;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.two-boxes {
    display: flex;
    gap: 10px;
	margin-bottom: 15px;
}

.textbox-left, .textbox-right {
    background-color: white;
    padding: 10px;
    width: 50%;
    text-align: center;
}
.cont-link {
    font-weight: bold;
    border-bottom: 7px solid #38a4e5;
    transition: border-bottom 0.3s; 
}

.cont-link:hover {
    color: #777777;
    border-bottom: 7px solid #27648a;
    margin-right: 124px;
}

.background-div-c1 {
	background-color: #e7ecef;
	color: #990000;
    padding: 32px;
    max-width: 100%;
	position: relative;
	z-index: 1;
	font-weight: 700;
	font-size: 19px;
}

.contact-textbox {
    background-color: white;
    padding: 10px;
    text-align: center;
}

.background-div-7c {
    height: 395px;
}

.background-div-5a {
    height: 715px; 
}
.left-text {
    line-height: 65px;
    position: relative;
    z-index: 1;
    margin-left: 74px;
}
.form-container {
    z-index: 1;
    position: relative;
    margin-right: 150px;
}
