/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #1B3F5D;
    color: white;
    padding: 15px 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #222;
        width: 150px;
        border-radius: 5px;
        padding: 10px;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .nav-active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background-color: #fff;
    background-image: url(./images/banner.jpg);
    padding: 50px 0;
    text-align: center;

    background-size: cover; 
    background-position: center center; 
    min-height: 100vh; 
}

/* Dark Translucent Overlay */
/* .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% darkness 
} */


.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1B3F5D;
}

.hero p {
    margin-bottom: 30px;
    color: #555;
    padding: 5%;
    margin-top: 250px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.587);
    border-radius: 5px;
}

.hero button {
    background-color: #1B3F5D;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero p {
        margin-top: 250px;
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 5px;
    }
}

/* About Section */
.about {
    background-color: #f0f0f0;
    padding: 50px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about h2 {
    color: #1B3F5D;
    font-size: 2rem;
    margin-bottom: 15px;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    padding-top: 10px;
    padding-bottom: 10px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
    }
}

/* Footer */
footer {
    background-color: #1B3F5D;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}