/* General Styles */
body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: #fff; color: #333; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 1.8em; font-weight: 700; color: #e67e22; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { font-weight: 600; color: #555; transition: color 0.3s ease; }
.nav-links a:hover { color: #e67e22; }

/* Hero Section */
.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero.jpg') no-repeat center center/cover; color: #fff; text-align: center; padding: 180px 0; min-height: 80vh; display: flex; align-items: center; justify-content: center; margin-top: -80px; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 4em; margin-bottom: 20px; }
.hero p { font-size: 1.4em; margin-bottom: 40px; max-width: 800px; margin: 0 auto 40px; }
.btn { background-color: #e67e22; color: #fff; padding: 15px 40px; border-radius: 5px; font-weight: 600; text-transform: uppercase; transition: transform 0.3s ease; display: inline-block; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-3px); }

/* About Section */
.about { padding: 100px 0; }
.about-content { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5em; color: #2c3e50; margin-bottom: 20px; }
.about-image { flex: 1; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Services Section */
.services { padding: 80px 0; background-color: #f9f9f9; text-align: center; }
.services h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5em; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background-color: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* Contact Section */
.contact { padding: 100px 0; text-align: center; }
.contact h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5em; margin-bottom: 50px; }
.contact form { max-width: 600px; margin: 0 auto; text-align: left; }
.contact input, .contact textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Poppins', sans-serif; box-sizing: border-box; }

/* Footer */
footer { background-color: #2c3e50; color: #ecf0f1; text-align: center; padding: 60px 0; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #e67e22; margin: 0 15px; font-weight: 600; }
footer p { margin: 5px 0; font-size: 0.9em; }
.clickable-image { cursor: pointer; }

@media (max-width: 768px) {
    .about-content { flex-direction: column; }
    .hero h1 { font-size: 2.5em; }
    .nav-links { display: none; }
}