/* style.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #334155; line-height: 1.6; background: #f8fafc; }

/* NAVIGATION BAR */
nav {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav .logo img { height: 60px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { 
    text-decoration: none; 
    color: #064e3b; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 14px;
    transition: 0.3s;
}
nav ul li a:hover { color: #10b981; }

/* HERO SECTION */
.hero {
    height: 60vh;
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero h1 { font-family: 'Poppins'; font-size: 48px; margin-bottom: 10px; }
.hero p { font-size: 20px; letter-spacing: 3px; opacity: 0.8; }

/* CONTENT SECTION */
.container { width: 80%; max-width: 1200px; margin: 60px auto; min-height: 50vh; }
.section-title { font-family: 'Poppins'; font-size: 32px; color: #064e3b; margin-bottom: 30px; border-left: 8px solid #10b981; padding-left: 20px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.img-box { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); height: 400px; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }

/* FOOTER */
footer { background: #0f172a; color: white; text-align: center; padding: 30px; margin-top: 50px; }