body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: #121212;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.logo:hover {
  color: #ff6f61;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6f61;
}

#dark-mode-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

#hero {
  text-align: center;
  padding: 2rem;
  color: white;
  position: relative;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
              url('/images/hero_background.jpg') center/cover no-repeat;
}

#hero h2 {
  font-size: 2.0rem;
}

#hero p {
  font-size: 1.5rem;
}

#contact {
  padding-bottom: 5rem;
}

.btn {
  display: inline-block;
  background: #FFD700;
  color: #000000;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #FFB800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  flex: 1;
  min-width: 200px;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.dark-mode .service {
  background: #222;
}

.dark-mode .check-list li::before {
  color: white;
}

.dark-mode .service-text p {
  color: white;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "✔";
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea, button {
  padding: 12px;
  border: 1px solid white;
  border-radius: 5px;
}

button {
  background: #ff6f61;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #d9534f;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: white;
  margin-top: 20px;
}

.email {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.email:hover {
  color: #ff6f61;
}

.dark-mode .email {
  color: white;
}

.dark-mode .email:hover {
  color: #ff6f61;
}

footer .email {
  color: white;
}

.dark-mode footer .email {
  color: white;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.team-member {
  text-align: center;
  flex: 1 1 250px;
  max-width: 250px;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
}

.name {
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}

.position {
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}

.dark-mode .name,
.dark-mode .position {
  color: white;
}

@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}

.service-section {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 4rem;
   gap: 2rem;
   flex-wrap: wrap;
}

.service-section:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1 1 40%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-text {
  flex: 1 1 50%;
}

.service-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .service-section {
    flex-direction: column !important;
    text-align: center;
  }

  .service-text h2 {
    font-size: 1.5rem;
  }
}

.lang-toggle {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.lang-toggle:hover {
  background: #ff6f61;
  color: white;
}

.dark-mode .lang-toggle {
  color: white;
  border-color: white;
}

.dark-mode .lang-toggle:hover {
  background: #ff6f61;
  color: white;
}

