body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #0d1117;
  border-bottom: 1px solid #222;
  position: relative;
}

.logo {
  line-height: 1.2;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3b82f6;
}

.logo-sub {
  font-size: 0.85rem;
  color: #3b82f6;
}

.nav {
  display: flex;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

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

.nav a:hover {
  color: #3b82f6;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Hero section */
.hero {
  background-image: url("../images/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 500px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ccc;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #aaa;
}

.cta-button {
  background-color: #3b82f6;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #1e40af;
}

/* Contact section */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #3b82f6;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.info-box i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #0d1117;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    text-align: left;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 10px 20px;
  }

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

  .info-box i {
    font-size: 2rem;
  }

  .info-box p {
    font-size: 0.95rem;
    text-align: center;
  }

  .contact-info {
    gap: 20px;
  }
}
.info-box a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.info-box a:hover {
  color: #3b82f6;
}
