/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: #f4f8fb;
    color: #333;
}

/* ===============================
   HEADER
================================= */
header {
    background: #0c2d48;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 95px;
    width: auto;
    display: block;
}


nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* ===============================
   MAIN LAYOUT
================================= */
main {
    flex: 1;
}

/* ===============================
   TOP HIGH-RES IMAGE (Homepage)
================================= */
.hero-image {
    margin: 0;
    padding: 0 !important;
    line-height: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===============================
   HERO SECTION
================================= */
.hero {
    background: #145da0;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

/* ===============================
   BUTTON
================================= */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #ffffff;
    color: #0c2d48;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #e6e6e6;
}

/* ===============================
   GENERAL SECTIONS
================================= */
section {
    padding: 70px 80px;
    text-align: center;
    background: white;
}

section h2 {
    margin-bottom: 20px;
    color: #0c2d48;
}

/* ===============================
   ABOUT PAGE TRIPLE IMAGES
================================= */
.triple-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 80px;
    background: #ffffff;
}

.triple-images img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.triple-images img.middle {
    max-width: 380px;
}

.triple-images img:hover {
    transform: scale(1.03);
}

/* ===============================
   CONTACT PAGE TWO-COLUMN
================================= */
.two-column {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
}

.two-column .left {
    flex: 1;
}

.two-column .right {
    flex: 1;
    text-align: right;
}

.two-column .right img {
    max-width: 380px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===============================
   FORM STYLING
================================= */
.form-container {
    max-width: 600px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background: #0c2d48;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

form button:hover {
    background: #145da0;
}

/* ===============================
   FOOTER
================================= */
footer {
    background: #0c2d48;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 900px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 15px;
    }

    .triple-images {
        flex-direction: column;
        padding: 40px 20px;
    }

    .triple-images img,
    .triple-images img.middle {
        max-width: 90%;
    }

    .two-column {
        flex-direction: column;
        text-align: center;
    }

    .two-column .right {
        text-align: center;
    }

    section {
        padding: 40px 20px;
    }

}

/* ===============================
   FULL WIDTH BANNER WITH NO GAP
================================= */

.banner-section {
    position: relative;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}

.banner-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.banner-text {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    background: rgba(12, 45, 72, 0.85);
    padding: 40px;
    color: white;
    max-width: 450px;
    border-radius: 8px;
}

.banner-text h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .banner-text {
        position: static;
        transform: none;
        margin: 20px;
    }

    .banner-section img {
        height: 400px;
    }
}
