/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #0e0d0d;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #009900;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.bdal-logo {
    height: 60px;
    margin-right: 10px;
}

.nav-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #C41230;
}

/* Hero Section */
.projectshero {
    position: relative;
    height: 300px;
    background: url('/assets/images/bck.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-banner-name {
    position: absolute;
    top: 100%;
    left: 7%;
    transform: translateY(-50%);
    background: rgba(7, 7, 7, 0.8);
    color: #fff;
    font-size: 2.5rem;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Main Content */
.body {
    margin-top: 10px; /* Prevent overlap with fixed header */
    padding: 40px 100px;
    color: #333;
}

/* Numbered Publications */
.publications {
    list-style: none;
    counter-reset: publication-counter;
    padding-left: 0;
}

.publications li {
    counter-increment: publication-counter;
    margin-bottom: 10px;
    padding-left: 5px;
}

.publications li::before {
    content: counter(publication-counter) ". ";
    font-weight: bold;
    color: #009900;
}

/* Footer */
.footer {
    background: #009900;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

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

.footer-text {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #C41230;
}
