/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Body */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #006400;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
header .logo {
  font-size: 1.5em;
  font-weight: bold;
}
header nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
header nav a:hover {
  color: #FFD700;
}

/* Hero */
.hero {
  background: url('https://picsum.photos/1200/500?tech') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.hero .btn {
  background: #FFD700;
  color: #333;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.hero .btn:hover {
  background: #FFA500;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
section h2 {
  margin-bottom: 20px;
  color: #006400;
}

/* Services */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #228B22;
  margin-bottom: 10px;
}

/* Contact Form */
#contactForm {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 20px auto;
}

#contactForm input, #contactForm textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contactForm button {
  background: #004aad;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

#contactForm button:hover {
  background: #0066cc;
}

/* Social Media Icons */
.social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons a {
  color: #004aad;
  font-size: 1.8em;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Footer */
footer {
  background: #006400;
  color: white;
  text-align: center;
  padding: 20px;
}
