:root {
    --primary: #0f4c81;     /* Corporate Blue */
    --secondary: #4a934a;   /* Agri Green */
    --accent: #f4a261;      /* Warm Orange */
    --text: #333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --nav-height: 90px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* 🌍 GLOBAL BACKGROUND */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../world-map.png'); /* Optional */
    background-size: cover;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* 🔝 TOP BAR */
.top-bar { background: #111; color: #ddd; font-size: 0.85rem; padding: 12px 5%; display: flex; justify-content: space-between; border-bottom: 3px solid var(--secondary); }
.top-contact span { margin-right: 25px; display: inline-flex; align-items: center; gap: 8px; }
.top-social a { margin-left: 15px; color: #ccc; font-size: 0.9rem; }
.top-social a:hover { color: var(--secondary); }

/* 🧱 NAVBAR */
.navbar {
    background: var(--white);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.logo img { height: 60px; width: auto; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-weight: 600; font-size: 1rem; color: #2c3e50; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--secondary); }

/* DROPDOWN */
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: white; 
    width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: 0.3s;
    border-radius: 0 0 4px 4px; padding: 10px 0;
}
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 25px; border-bottom: 1px solid #f5f5f5; text-transform: none; font-size: 0.95rem; color: #555; }
.dropdown-menu li a:hover { background: #f8f9fa; color: var(--primary); padding-left: 30px; }

/* 1️⃣ HERO */
.hero {
    position: relative;
    height: 85vh;
    background: linear-gradient(to right, rgba(15, 76, 129, 0.8), rgba(15, 76, 129, 0.4)), url('../hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: white;
}
.hero-content { max-width: 700px; animation: slideRight 1s ease-out; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; font-weight: 800; line-height: 1.1; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.95; font-weight: 300; }
.btn { padding: 15px 40px; border-radius: 50px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--secondary); color: white; box-shadow: 0 10px 20px rgba(74, 147, 74, 0.4); }
.btn-primary:hover { background: #3d7a3d; transform: translateY(-5px); }

/* 🌟 SPECIALISED AREAS */
.special-section { background: #fff; padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; width: 60px; height: 4px; background: var(--secondary); position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }
.section-header p { color: #777; font-size: 1.1rem; max-width: 600px; margin: 25px auto 0; }

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.area-card { 
    background: #fff; border-radius: 10px; overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.4s; 
    border: 1px solid #eee; position: relative;
    display: flex; flex-direction: column; /* Fixes height alignment */
}
.area-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: transparent; }
.area-img { height: 200px; overflow: hidden; }
.area-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.area-card:hover .area-img img { transform: scale(1.1); }
.area-content { padding: 25px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.area-content h3 { color: #333; font-size: 1.4rem; margin-bottom: 10px; }
.area-content p { font-size: 0.9rem; color: #666; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }
.area-link { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-top: auto; }

/* 📰 NEWS GRID SYSTEM (THIS WAS MISSING) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 👈 Forces 3 Columns */
    gap: 40px;
}

/* Mobile Responsiveness for News */
@media (max-width: 992px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* 🎬 ANIMATIONS */
@keyframes slideRight { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
}