/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; scroll-behavior: smooth; }

/* Navbar */
nav {
  background: #ffafcc;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .logo img { height: 50px; width: auto; border-radius: 50%; }
nav ul { list-style: none; display: flex; }
nav ul li { margin: 0 15px; }
nav ul li a {
  text-decoration: none; color: #000; font-weight: bold; transition: 0.3s;
}
nav ul li a:hover { color: #ff914d; }

/* Hero */
.hero {
  height: 100vh;
  display: flex; justify-content: center; align-items: center;
  text-align: center; color: white;
  background: url("background.jpeg.jpeg") no-repeat center/cover;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.5);
}
.hero-content { position: relative; z-index: 1; }
.hero h2 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size:2.2rem; margin-bottom: 20px; }
.hero .btn {
  padding: 12px 25px; background: #ff914d; border: none;
  border-radius: 8px; color: white; font-weight: bold;
  cursor: pointer; transition: 0.3s;
}
.hero .btn:hover { background: #e86e1d; transform: scale(1.05); }

/* Sections */
section { padding: 60px 20px; text-align: center; }
section h2 { font-size: 2rem; margin-bottom: 20px; color: #ff914d; }

/* Services */
.services {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.card {
  background: #fff; border-radius: 10px; padding: 20px; width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer;
}
.card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }

/* Contact Modal */
.modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); justify-content: center; align-items: center;
}
.modal-content {
  background: #fff; padding: 30px; border-radius: 10px; max-width: 500px; width: 90%;
}
.modal-content h3 { margin-bottom: 15px; color: #ff914d; }
.modal-content input, .modal-content textarea {
  width: 100%; padding: 10px; margin: 10px 0;
  border: 1px solid #ccc; border-radius: 5px;
}
.modal-content button {
  background: #ff914d; color: white; padding: 10px 20px; border: none;
  border-radius: 5px; cursor: pointer; transition: 0.3s;
}
.modal-content button:hover { background: #e86e1d; }
.close { float: right; font-size: 20px; cursor: pointer; color: red; }

/* Footer */
footer {
  background: #333; color: white; text-align: center; padding: 20px; margin-top: 30px;
}

/* Responsive */
@media(max-width:768px) {
  .services { flex-direction: column; align-items: center; }
  nav ul { display: none; } /* (Later you can add hamburger menu here) */
}
