/* style.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}
p {
  line-height: 1.4;
}
header.navbar {
  background: #2c3e50;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 120%;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.navbar nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .active {
  color: #e1b2b2;
}
.navbar nav a:hover {
  color: #f1c40f;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

#main-menu {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #34495e;
    padding: 10px 0;
  }

  #main-menu a {
    padding: 10px 20px;
    border-top: 1px solid #2c3e50;
  }

  #main-menu.show {
    display: flex;
  }
}



.hero {
  text-align: center;
  background: linear-gradient(to right, #3498db, #9b59b6);
  color: white;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(33% - 20px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card a {
  color: #2980b9;
  text-decoration: underline;
}

.projects {
  background: #ffffff;
  padding: 40px 0;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.project-card {
  background: #f0f0f0;
  padding: 20px;
  flex: 1 1 300px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.project-card a {
  color: #2c3e50;
  font-weight: bold;
  text-decoration: none;
}


.project-card {
  background-color: #f8f9fc;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.project-card p {
  color: #4a4a4a;
  font-size: 15px;
  margin-bottom: 15px;
}

.project-card a {
  display: inline-block;
  text-decoration: none;
  background-color: #0077cc;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.project-card a:hover {
  background-color: #005fa3;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}




.info-section {
  background: #ecf0f1;
  padding: 30px 20px;
  text-align: center;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  margin: 10px 0;
  font-size: 1.1em;
}

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

/* Responsive */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .project-grid {
    flex-direction: column;
  }
}
