:root {
    --primary-blue: #0066cc;
    --secondary-blue: #0052a3;
    --dark-blue: #003366;
    --light-blue: #e6f2ff;
    --accent-gold: #d4a017;
    --green: #2e8b57;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Header Styles */
.header-top {
    background: var(--dark-blue);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.header-top a:hover {
    color: var(--light-blue);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.logo-img-placeholder {
    background: var(--primary-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    font-family: 'Noto Sans Ethiopic', sans-serif;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin: 0;
}

/* Navigation */
.navbar {
    padding: 0;
    background: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
    color: white !important;
    padding: 15px 20px !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: var(--secondary-blue);
    color: white !important;
}

.navbar-nav .nav-link.active {
    background: var(--secondary-blue);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Search Button */
.search-btn {
    background: var(--accent-gold);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
}

/* Hero Slider */
.hero-slider {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1587734195503-904fca47e0e9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&h=500&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 30px;
}

.hero-slider h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Noto Sans Ethiopic', sans-serif;
}

.hero-slider p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Quick Links */
.quick-links {
    background: var(--light-gray);
    padding: 30px 0;
    margin-bottom: 30px;
}

.quick-link-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.quick-link-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* News Section */
.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Noto Sans Ethiopic', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-blue);
}

.news-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.news-date {
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    display: inline-block;
    font-size: 0.9rem;
}

/* Statistics */
.stats-section {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    background: #002244;
    color: #aaa;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-gray);
    padding: 10px 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--secondary-blue);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Cards */
.feature-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Language Toggle */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.lang-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}

.lang-btn.active {
    background: white;
    color: var(--dark-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider h1 {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
}