/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?dredging,sea') no-repeat center center/cover;
    min-height: 70vh; /* Ensures visibility */
    display: flex;
    align-items: center;
}

/* Video Carousel */
.carousel-item video {
    height: 80vh; /* Adjust height as needed */
    object-fit: cover;
}

/* Footer (Fixed Overlap Issue) */
.footer {
    background: #212529;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative; /* Prevents overlap */
    width: 100%;
    bottom: 0;
}

/* Page Layout Fix */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

.footer {
    background: #212529;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}
/* Text Container */
.text-container {
    max-width: 900px;
    margin: auto;
    text-align: justify;
    line-height: 1.6;
    font-size: 18px;
    font-family: "Times New Roman", serif;
    color: #333;
}

/* Gallery Section */
.gallery-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 15px;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 100px; /* Reduced spacing */
    flex-wrap: wrap;
}

.gallery-item {
    width: 100px; /* Small image size */
    height: 100px;
    overflow: visible; /* Prevents zoom from breaking layout */
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid black;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(3); /* Less aggressive zoom */
}

/* Responsive Adjustments */

.text-container {
    max-width: 900px; /* Limit width for better readability */
    margin: auto; /* Center the text */
    text-align: justify; /* Justify text for a professional look */
    line-height: 1.6; /* Improve line spacing */
    font-size: 18px; /* Increase font size for readability */
    font-family: "Times New Roman", serif; /* Use a professional font */
    color: #333; /* Dark gray color for readability */
}

.navbar-brand{
	font-size: 15px;
}
@media (max-width: 768px) {
    .container p {
        font-size: 14px;
    }
    .footer .row {
        text-align: center;
    }
    .footer .col-md-4 {
        margin-bottom: 5px;
    }
}
