
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 16px 'Segoe UI', sans-serif; color: #333; background: #f9f9f9; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
header { background: #007BFF; color: white; position: fixed; width: 100%; z-index: 1000; }
.logo { color: white; font-weight: bold; text-decoration: none; padding: 15px 0; }
nav ul { list-style: none; display: flex; justify-content: center; }
nav ul li a { color: white; text-decoration: none; padding: 10px 15px; }
nav ul li a:hover { color: #e6f7ff; }
.hero {  height: 100vh; display: flex; align-items: center; justify-content: center;
 text-align: center; color: #007BFF;}
.hero h1 { font-size: 3.5rem; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.hero p { font-size: 1.5rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.btn { background: white; color: #007BFF; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; text-decoration: none; }
.btn:hover { background: #e6f7ff; transform: translateY(-3px); }
.services { padding: 80px 0; background: #fff; }
.services h2 { text-align: center; font-size: 2.5rem; color: #007BFF; margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #f8f9fa; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,123,255,0.2); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-content { padding: 20px; }
.service-content h3 { font-size: 1.3rem; color: #007BFF; margin-bottom: 10px; }
.service-content p { color: #555; font-size: 1rem; }
.contact { padding: 80px 0; background: #f1f3f5; }
.contact h2 { text-align: center; font-size: 2.5rem; color: #333; margin-bottom: 30px; }
.contact p { text-align: center; color: #555; margin-bottom: 40px; }
form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
form input, form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
form button { padding: 12px; background: #007BFF; color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; }
form button:hover { background: #0056b3; }
.contact-info { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; text-align: center; }
.contact-info div { color: #555; font-size: 1.1rem; }
.icon { font-size: 24px; color: #007BFF; margin-bottom: 10px; }
footer { background: #007BFF; color: white; text-align: center; padding: 20px 0; }
footer p { font-size: 0.9rem; color: #e6f7ff; }
@media (max-width: 768px) { .logo { font-size: 1.5rem; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } nav ul { flex-direction: column; } }
