/* Reset & Fonts */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: #f4f7f6; color: #333; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 24px; font-weight: bold; color: #2c3e50; }
.dot { color: #0078d4; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: #0078d4; }
.btn-login { padding: 8px 20px; border: 2px solid #0078d4; border-radius: 5px; color: #0078d4 !important; }
.btn-login:hover { background: #0078d4; color: #fff !important; }

/* Hero Section */
.hero { height: 80vh; background: linear-gradient(135deg, #0078d4, #00bcf2); color: white; display: flex; justify-content: center; align-items: center; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; }
.upload-box { background: white; padding: 40px; border-radius: 10px; color: #333; width: 400px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); border: 2px dashed #ccc; transition: 0.3s; }
.upload-box:hover { border-color: #0078d4; transform: translateY(-5px); }
.upload-box i { font-size: 50px; color: #0078d4; margin-bottom: 15px; }
.btn-primary { background: #0078d4; color: white; border: none; padding: 10px 25px; border-radius: 5px; cursor: pointer; margin-top: 15px; font-size: 16px; }

/* Features */
.features { padding: 80px 50px; text-align: center; background: white; }
.feature-grid { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.card { background: #f9f9f9; padding: 30px; border-radius: 10px; width: 300px; transition: 0.3s; }
.card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.card i { font-size: 40px; color: #0078d4; margin-bottom: 20px; }

/* Pricing */
.pricing { padding: 80px 50px; text-align: center; background: #eef2f5; }
.pricing-grid { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.price-card { background: white; padding: 40px; border-radius: 10px; width: 300px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; border-top: 5px solid #0078d4; }
.price-card h3 { font-size: 24px; margin-bottom: 10px; }
.price-card .price { font-size: 36px; font-weight: bold; color: #0078d4; margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 30px; text-align: left; }
.price-card li { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* Footer */
footer { background: #2c3e50; color: white; text-align: center; padding: 20px; margin-top: auto; }
