/* Root Variables */
:root {
    --primary-color: #006400; /* Dark Green */
    --secondary-color: #C5A059; /* Gold/Beige */
    --accent-color: #004d00;
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b08d4b;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
    position: relative;
}

.main-nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    padding: 10px 0;
    display: block;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    background-color: #006400;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 2.9rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: bold;
}

/* Shortcuts Section */
.shortcuts-section {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.shortcut-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    cursor: pointer;
}

.shortcut-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.shortcut-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.shortcut-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.image-container {
  text-align: center;
  margin: 3rem 0;
  padding: 0 15px;
}

.section-image {
  max-width: 1000px;          /* or 90vw / 1200px / whatever fits your design */
  width: 100%;
  height: auto;
  border-radius: 8px;         /* optional */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* optional */
}
/* News & Events Section */
.news-events-section {
    padding: 60px 0;
}

.section-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.news-column, .events-column {
    flex: 1;
    min-width: 300px;
}

.section-header {
    margin-bottom: 30px;
    position: relative;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* News List */
.news-list li {
    display: flex;
    margin-bottom: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.date-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 70px;
    height: fit-content;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 15px;
}

.news-content a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.news-content a:hover {
    color: var(--primary-color);
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Events List */
.events-list li {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.events-list a {
    display: flex;
    align-items: center;
}

.event-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.event-title {
    font-weight: 500;
    color: #333;
}

.tender-highlight {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.tender-highlight h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tender-highlight p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    background-color: var(--primary-color);
    padding: 50px 0;
    color: var(--white);
}

.info-section .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.info-box {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.info-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
}

.footer-top {
    padding: 60px 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list li i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px; /* Adjust based on header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: 0.3s;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
    }

    .main-nav ul li a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .footer-row {
        grid-template-columns: 1fr;
    }
}
