/* General Styles */
body {
    margin: 0;
    font-family: "Helvetica", sans-serif;
    text-align: center;
    background: #0A1828;
    color: white;
}

/* Hero Image */
.hero-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.overlay-text h1 {
    font-size: 2.5rem;
    margin: 10px 0;
    color: #BFA181;
}

.overlay-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation Bar */
nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #178582;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
}

/* About Me */
.about {
    padding: 80px 10%;
    text-align: left;
    background: #0A1828;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BFA181;
    margin-bottom: 20px;
}

.about-content {
    max-width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Achievements Section */
.achievements {
    padding: 50px 20px;
    text-align: center;
}

.achievements h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #BFA181;
}

.info-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    margin-top: 20px;
}

.info-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    max-width: 250px;
    text-align: center;
}

/* Divider */
.divider {
    height: 2px;
    width: 80%;
    background: #BFA181;
    margin: 30px auto;
}

/* Footer */
footer {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
}

footer h2 {
    font-size: 2rem;
    color: #BFA181;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer a {
    color: #178582;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}
/* Banner */
.banner {
    width: 100%;
    height: 250px; /* Adjust height as needed */
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
