/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container for Side Margins */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background-color: #f9f9f9;
    padding: 10px 0;
    width: 100%;


}

.top-header .container {
    padding-left: 0;
    /* remove default padding */
    margin-left: 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;

}

.logo {
    width: 60px;
    height: auto;
}

.top-header h1 {
    color: rgb(0, 0, 0);
    font-size: 1.8rem;
}

/* Banner / Hero */
.banner {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Styling */
.banner-text {
    position: absolute;
    top: 50%;
    left: 40px;
    /* Space from the left side */
    transform: translateY(-50%);
    /* Vertical center */
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: left;
    max-width: 600px;
}

.banner-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Biggest heading */
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-text h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    /* Slightly smaller */
    margin-bottom: 15px;
    font-weight: 500;
}

.banner-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    /* Paragraph */
    line-height: 1.5;
}




/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    /* Light background for contrast */
}

.welcome-section .welcome-logo {
    width: 200px;
    height: 200px;
    height: auto;
    margin-bottom: 20px;
}

.welcome-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0d3b66;
    /* Matches navy header */
}

.welcome-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


/* About Section */
.about {
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.about p {
    font-size: 1rem;
    color: #555;
}


/* Gallery 1 */
.gallery-1 {
    margin-top: 50px;
    padding: 100px 0;
    text-align: center;
    background-color: #0a7593;
    width: 100%;
}

.gallery-1 h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #fff;
}

.gallery-images-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item-1 {
    background: #fff;
    padding-top: 20px;
    /* white area above image */
    padding-bottom: 20px;
    /* white area below content */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 320px;
    text-align: center;
}

.gallery-item-1 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.gallery-item-1 h4 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0a7593;
}

.gallery-item-1 p {
    font-size: 0.95rem;
    color: #333;
    margin-top: 8px;
    padding: 0 10px;
    line-height: 1.4;
}

/* Gallery 2 */
.gallery {
    margin-top: 50px;
    padding: 100px 0;
    text-align: center;
    background-color: #f5f5f5;
    width: 100%;
}

.gallery h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    background: #fff;
    padding-top: 20px;
    /* white area above image */
    padding-bottom: 20px;
    /* white area below content */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 320px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.gallery-item h4 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0a7593;
}

.gallery-item p {
    font-size: 0.95rem;
    color: #333;
    margin-top: 8px;
    padding: 0 10px;
    line-height: 1.4;
}


/* Contact Map Section */
.contact-section {
    padding: 60px 20px;
    background: #0a7593;
    font-family: Arial, sans-serif;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 10px;
    color: #333;
}

.info-item {
    display: grid;
    grid-template-columns: 24px auto 1fr;
    /* icon | label | value */
    column-gap: 10px;
    align-items: start;
    margin: 15px 0;
    color: #555;
}

.info-item i {
    grid-column: 1;
    color: #007bff;
    margin-top: 3px;
}

.info-item p {
    grid-column: 2;
    margin: 0;
    font-size: 0.9rem;
    color: #0a7593;
    font-weight: 600;
}

.info-item span {
    grid-column: 3;
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .info-item {
        grid-template-columns: 24px 1fr;
    }

    .info-item p {
        grid-column: 2;
    }

    .info-item span {
        grid-column: 2;
        margin-top: 2px;
    }
}




/* Footer */
footer {
    background: #ffffff;
    color: rgb(5, 5, 5);
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}



/* Shared hover animations */
.gallery-item-1 img,
.gallery-item img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Gallery 1 - 3D Tilt + Scale */
.gallery-item-1 {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.gallery-item-1:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.gallery-item-1:hover img {
    transform: scale(1.05);
}

/* Gallery 2 - Smooth Lift + Glow */
.gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.02);
}