/* Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #090909;
  color: #1e1e1e;
}

h1, h2, h3 {
  font-size: 22px;
  color: #FF7500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Logo */
.logo img {
  width: 100px;
  height: auto;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  top: 10px;
  right: 20px;
  left: 350px;

}
.header-area{
  display: block;
  height: 80px;
}

/* Sticky Nav with Hamburger */
nav {
  background-color: #000;
  display: flex;
  justify-content: space-between; /* KEY: logo left, nav right */
  align-items: center;
  padding: 18px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Nav Links */
.nav {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-right: 100px;
}

.nav li a {
  
  text-decoration: none;
  color: orange;
  font-weight: 600;
  padding: 10px;
  transition: background 0.3s ease;
}

.nav li a:hover {
  background: rgba(255, 255, 255, 0.229);
  border-radius: 6px;
}

.nav li a:active {
  background: rgba(255, 255, 255, 0.35);
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 35px;
  right: 20px;
  left: 350px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f9f6f6;
  transition: 0.3s;
}

/* Banner Section */
.banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.banner-content {
  position: absolute;
  top: 28%;
  left: 10%;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
  max-width: 540px;
  font-family: 'Segoe UI', sans-serif;
}

.banner-content h1 {
  margin: 0;
  font-size: 60px;
  font-weight: bold;
}

.banner-content p {
  font-size: 25px;
}

/* Three Column Section */
.three-columns {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 30px;
  padding: 0 20px;
}

.three-columns section {
  flex: 1 1 30%;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.three-columns h2 {
  color: #C64F00;
}

/* Cards Section */
.card-grid {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.card {
  flex: 1 1 calc(33.33% - 20px);
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  color: #ff6600;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #ff6600, #ff9500);
  text-align: center;
  padding: 5px 150px 0px 150px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.download-button img {
  width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

.download-button img:hover {
  transform: scale(1.05);
}

.cta .download-button img {
  margin-top: -30px;
  width: 400px;
}

/* Extra Section */
.section {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  width: 90%;
  max-width: 1200px;
}

.headline {
  font-size: 32px;
  font-weight: bold;
  color: #ff6600;
  margin: 0 0 10px;
}

.subtext {
  font-size: 25px;
  color: #ccc;
  margin: 0 0 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  /* Banner Adjustments */
  .banner-content {
    top: 18%;
    left: 5%;
    padding: 10px;
    max-width: 90%;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .download-button img {
    width: 100%;
    max-width: 280px;
  }

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

  .cta .download-button img {
    width: 80%;
    margin-top: 0;
  }

  /* Nav Adjustments */
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: rgba(7, 7, 7, 0.662);
    padding: 20px;
    z-index: 100;
  }

  .nav.show {
    display: flex;
  }

  .nav li {
    padding: 10px 0;
    text-align: center;
  }

  .three-columns {
    flex-direction: column;
    margin: 145px auto;
  }

  .three-columns section {
    flex: 1 1 100%;
  }

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