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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}
  
#header {
  position: relative;
  background-image: url('image_gemini.jfif');
  background-size: cover;
  background-position: center;
  height: 100vh; 
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px; 
}

#header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit; 
  filter: blur(2px);
  z-index: 1;
}

#header nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 10; 
}

#header .logo h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  margin: 0;
}
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3498db;
}

.hero-section {
  position: relative;
  z-index: 5;
}

.hero-section h2 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.hero-section p {
  font-size: 2.9rem;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
  padding: 15px 40px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
}

.cta-button:hover {
  background-color: #2980b9;
}

#about {
 
  background-color: #000000;
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

#services {
  padding: 80px 0;
}

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

.service-title {
  font-size: 2.8rem;
  color: #3498db;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.service-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  flex-wrap: wrap; 
}


.service-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  width: 30%; 
  min-width: 280px; 
  transition: transform 0.3s ease-in-out;
  border: 2px solid #3498db;
}


.service-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.service-item p {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 15px;
}


.service-item:hover {
  transform: scale(1.05);
  border-color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
  
form input,
form textarea {
  padding: 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
}

form textarea {
  height: 150px;
  resize: none;
}

form button {
  padding: 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #2980b9;
}
  

footer {
  background-color: #2980b9;
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.2rem;
}

footer .social-links a:hover {
  color: #3498db;
}
  
@media (max-width: 768px) {

  #header {
      height: 70vh; 
      background-size: cover; 
      background-position: center; 
  }

  #header .logo h1 {
      font-size: 25px; 
  }

  
  #header::after {
      filter: blur(1px); 
  }

  .nav-links li {
      margin-left: 10px;
  }

  .hero-section h2 {
      font-size: 2.5rem; 
  }

  .hero-section p {
      font-size: 1rem; 
  }

  .cta-button {
      font-size: 14px;
      padding: 10px 25px;
  }

  .service-title {
      font-size: 2rem;
  }

  .service-items {
      flex-direction: column;
  }

  .service-item {
      width: 100%; 
      margin: 20px auto;
  }

  .service-image {
      height: 200px; 
  }

  footer .social-links a {
      font-size: 1rem;
  }
}


@media (max-width: 480px) {

  #header {
      height: 60vh; 
  }

  #header .logo h1 {
      font-size: 15px; 
  }

  .hero-section h2 {
      font-size: 2rem; 
  }

  .cta-button {
      font-size: 12px;
      padding: 8px 20px;
  }

  .service-title {
      font-size: 1.8rem;
  }

  .service-item {
      width: 100%;
      margin: 10px auto;
  }

  .service-image {
      height: 180px; 
  }

  footer .social-links a {
      font-size: 0.9rem;
  }
}
