:root {
  --orange: orange;
  --dark-bg: #0d0d0d;
  --light-text: #f1f1f1;
  --footer-bg: #1a1a1a;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
}









.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top,white);
  padding: 1em 2em;
  border-bottom: 4px solid var(--orange);
  flex-wrap: wrap;
  position: relative;
}



.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5em;
  color: var(--orange);
}

.logo-text p {
  margin: 0;
  font-size: 0.9em;
  color: #ccc;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #cc7000;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5em;
  background: transparent;
  border: none;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: black;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: -2.82%;
  color: white;
  background: transparent; /* no background */
  padding: 1em 2em;
  border-left: none; /* no orange line */
  font-size: clamp(1.5em, 4vw, 2.5em);
  font-weight: bold;
}



.services-section {
  text-align: center;
  padding: 3em 2em;
}

.services-section h2 {
  font-size: 2em;
  margin-bottom: 2em;
  color: var(--light-text);
}

.services-section .highlight {
  color: var(--orange);
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.service-card {
  max-width: 380px;
  text-align: center;
}

.service-card h3 {
  color: var(--orange);
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* Coming Soon Section */
.coming-soon {
  text-align: center;
  padding: 4em 2em;
  font-size: clamp(1.2em, 2vw, 1.8em);
  color: #ccc;
}

.commitment {
  background-color: #111;
  padding: 2em;
  text-align: center;
  font-size: clamp(1em, 2.5vw, 1.5em);
  color: #ccc;
}

.commitment span {
  color: var(--orange);
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  display: flex;
  flex-wrap: wrap;
  padding: 2em;
  gap: 2em;
  justify-content: space-between;
  border-top: 4px solid var(--orange);
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer h3 {
  color: var(--orange);
  margin-bottom: 1em;
}

.footer p,
.footer input {
  margin: 0.5em 0;
  color: #ccc;
}

.footer input[type="text"] {
  width: 100%;
  padding: 0.5em;
  background-color: #333;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
}

.footer input[type="text"]:focus {
  border-color: var(--orange);
  outline: none;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-text {
    font-size: clamp(1.5em, 3vw, 2em);
    left: 5%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    justify-content: center;
    gap: 1em;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: white;
    margin-top: 1em;
    padding: 1em;
    border-radius: 8px;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    color: black;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 40vh;
  }

  .hero-text {
    font-size: clamp(1em, 4vw, 1.5em);
    bottom: 10%;
    padding: 0.5em 1em;
  }



  .logo img {
    height: 50px;
  }

  .logo-text h1 {
    font-size: 1.2em;
  }




  .logo-text p {
    font-size: 0.8em;
  }


}


@media (max-width: 600px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}
