/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: url('https://www.transparenttextures.com/patterns/stardust.png'), #1c1c3c;
  background-size: cover;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  padding: 12px 24px;
  background-color: #00f2ff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00bcd4;
}

/* Features section */
.features {
  padding: 3rem 2rem;
  background-color: #111827;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.features li {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #a0aec0;
}

/* Footer */
.footer {
  background-color: #0a0a23;
  text-align: center;
  padding: 1rem;
  color: #888;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* Smaller hero section for inner pages */
.small-hero {
  height: 50vh;
  background-color: #1e1e3f;
}

/* Project List */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: #111827;
}

.project-card {
  background-color: #1f2937;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card h3 {
  margin-top: 0;
  color: #00f2ff;
}
/* About Section */
.about-section {
  padding: 3rem 2rem;
  background-color: #0d1721;
  color: #ccc;
}

.about-container {
  max-width: 800px;
  margin: auto;
  background: #1f2937;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  line-height: 1.8;
}

.about-container h2 {
  color: #00f2ff;
  margin-bottom: 1rem;
}
/* Contact Section */
.contact-section {
  padding: 3rem 2rem;
  background-color: #0a192f;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-container input,
.contact-container textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

.contact-container button {
  background-color: #00f2ff;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background-color: #00bcd4;
}

.socials {
  margin-top: 1.5rem;
  text-align: center;
}

.socials a {
  margin: 0 10px;
  color: #00f2ff;
  text-decoration: none;
  font-weight: bold;
}
/* Privacy Section */
.privacy-section {
  padding: 3rem 2rem;
  background-color: #0d1721;
  color: #ccc;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
  background: #1f2937;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  line-height: 1.8;
}

.privacy-container h2,
.privacy-container h3 {
  color: #00f2ff;
  margin-top: 1.5rem;
}

.privacy-container a {
  color: #00f2ff;
  text-decoration: underline;
}
/* 🔹 Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111827;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #00f2ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00f2ff;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    right: 1rem;
    background-color: #1e293b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    flex-direction: column;
    width: max-content;
    min-width: 160px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
    color: #00f2ff;
    font-size: 1.8rem;
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .features h2 {
    font-size: 1.5rem;
  }

  .features li {
    font-size: 1rem;
  }
}
