/* Global Reset and Font */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #1c1f23;
  color: #fff;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Under Construction Banner */
.construction-banner {
  background-color: #ffa940;
  color: #242628;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}

/* Navigation/Header */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #242628;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
}

.logo img {
  width: 100px;
  height: auto;
}

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

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section with Even Darker Background */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("assets/tech-bg.svg");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  padding: 2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* Darker overlay */
  backdrop-filter: blur(5px); /* Slightly stronger blur for smooth contrast */
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}

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

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #f6821f;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-content span {
  color: #f6821f;
  font-weight: 600;
}

/* Buttons */
.btn-primary,
.btn-contact {
  padding: 0.8rem 1.5rem;
  background-color: #f6821f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover,
.btn-contact:hover {
  background-color: #ffa042;
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(15, 18, 22, 0.97); /* Darker background for contrast */
  backdrop-filter: blur(4px);
}

.services .section-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #f6821f;
}

.services .section-header p {
  color: #b3b3b3;
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.service-card {
  background-color: #242628;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #333;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f6821f;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Why Us Section */
.why-us {
  padding: 4rem 2rem;
  background: rgba(15, 18, 22, 0.97);
  text-align: center;
  backdrop-filter: blur(4px);
}

.why-us-content h3 {
  font-size: 2rem;
  color: #f6821f;
  margin-bottom: 1rem;
}

.why-us-content ul {
  list-style: none;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
  padding: 0;
}

.why-us-content li {
  margin: 1rem 0;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(15, 18, 22, 0.97);
  backdrop-filter: blur(4px);
}

.contact h3 {
  font-size: 2rem;
  color: #f6821f;
  margin-bottom: 1rem;
}

.contact p {
  max-width: 600px;
  margin: 0.5rem auto 2rem auto;
  font-size: 1rem;
  color: #ddd;
}

/* Footer */
.footer {
  background-color: #242628;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 0.9rem;
  color: #999;
}

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

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

  .nav-links ul {
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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