/* ====== Global Styles ====== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ====== Navbar Styles ====== */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
}

/* Logo inside the navbar */
.nav-logo {
    height: 90px;
    width: auto;
}

.navbar-nav .nav-link {
    font-size: 16px;
    margin-left: 20px;
    color: black;
}

/* ====== Hero Section ====== */
.hero {
    background: url('Assets/header.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: white;
    font-size: 36px;
    font-weight: bold;
    position: relative;
}

/* ====== About Us Section ====== */
#about img {
    max-width: 100%;
    border-radius: 10px;
}

/* ====== Contact Us Section ====== */
#contact {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* ====== Footer Section ====== */
footer {
    background-color: black;
    color: white;
    padding: 40px 0;
}

footer img {
    width: 50px;
    height: auto;
}

footer p {
    font-size: 14px;
    margin-top: 10px;
}
