* { margin: 0; padding: 0; box-sizing: 0; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(34,139,34,0.95); backdrop-filter: blur(10px); z-index: 1000; transition: 0.3s; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-menu a:hover { color: #90EE90; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #fff; margin: 3px 0; transition: 0.3s; }

/* Hero */
.hero { height: 100vh; background: linear-gradient(135deg, #228B22 0%, #90EE90 100%); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grain\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"1\" fill=\"%23ffffff20\"/><circle cx=\"75\" cy=\"75\" r=\"1\" fill=\"%23ffffff10\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grain)\"/></svg>'); animation: float 20s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-content { max-width: 800px; z-index: 2; animation: fadeInUp 1s ease; }
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn, .btn-secondary { padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; border: none; cursor: pointer; }
.cta-btn { background: #fff; color: #228B22; box-shadow: 0 10px 30px rgba(255,255,255,0.3); }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,255,255,0.4); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #228B22; }
.hero-stats { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; gap: 3rem; opacity: 0.9; }
.hero-stats div { text-align: center; font-weight: 600; }
.hero-stats i { font-size: 2rem; margin-bottom: 0.5rem; display: block; }

/* Features */
.features { padding: 5rem 0; background: #f8f9fa; }
.features h2 { text-align: center; font-size: 2.5rem; margin-bottom: 4rem; color: #228B22; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature { text-align: center; padding: 2rem; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: 0.3s; }
.feature:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.feature i { font-size: 3rem; color: #228B22; margin-bottom: 1rem; }
.feature h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }

/* Footer */
footer { background: #228B22; color: #fff; text-align: center; padding: 2rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.feature { animation: fadeInUp 0.8s ease forwards; opacity: 0; animation-delay: calc(0.2s * var(--i)); }

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background: #228B22; width: 100%; text-align: center; transition: 0.3s; }
    .nav-menu.active { left: 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 1rem; bottom: 2rem; flex-wrap: wrap; }
}

/* Scroll Behavior */
html { scroll-behavior: smooth; }
