/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
header { background: #fff; padding: 20px 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 100; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo { font-size: 1.5rem; font-weight: bold; color: #007BFF; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; padding: 5px 10px; transition: background 0.3s; }
nav ul li a:hover { background: #007BFF; color: #fff; border-radius: 5px; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
#hero { height: 100vh; background: url('./hero.jpg') no-repeat center/cover; display: flex; align-items: center; color: #fff; text-align: center; position: relative; }
#hero::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }
.btn { display: inline-block; background: #007BFF; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 5px; transition: background 0.3s; }
.btn:hover { background: #0056b3; }

/* Section Titles */
.section h2 { font-size: 2.5rem; margin-bottom: 20px; text-align: center; }
.section { padding: 80px 0; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s; }
.service-item:hover { transform: translateY(-5px); }
.service-item img { width: 100%; height: 200px; object-fit: cover; }
.service-item h3 { padding: 15px 0; }

/* Why us */
.why-list { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; }
.why-list li { flex: 1 1 200px; margin: 10px; font-size: 1.1rem; }
.why-list li span { color: #007BFF; margin-right: 10px; }

/* Process */
.process-steps { display: flex; justify-content: space-around; text-align: center; }
.step { flex: 1; max-width: 200px; }
.step .number { background: #007BFF; color: #fff; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: auto 0 10px auto; }

/* Contact */
#contact form { display: flex; flex-direction: column; max-width: 500px; margin: auto; }
#contact input, #contact textarea { padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }
#contact button { width: 150px; align-self: center; }
#formMessage { text-align: center; margin-top: 15px; }

/* Footer */
footer { background: #f4f4f4; padding: 20px 0; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    nav ul { flex-direction: column; background: #fff; position: absolute; top: 60px; right: 20px; width: 200px; padding: 10px; border-radius: 5px; display: none; }
    nav ul.active { display: block; }
    .menu-toggle { display: block; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
