* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

nav a {
  color: #000;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

nav a:hover {
  color: orange;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* HERO */

.hero {
  height: 100vh;
  background: url("./img/heroimage55.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


/* DARK OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Darkness level */
  z-index: 1;
}


/* CONTENT ABOVE OVERLAY */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  margin: 20px 0;
  color: #ddd;
}


/* ABOUT */

.about {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about h2 {
  margin-bottom: 20px;
}


/* SERVICES */

.services {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.service {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


/* PROJECTS */

.projects {
  padding: 80px 20px;
  text-align: center;
}

.project-box {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.project {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project img {
  width: 100%;
}

.project h4 {
  padding: 15px;
}


/* PRICING */

.pricing {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #666;
  margin-bottom: 50px;
}


.pricing-box {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}


.price-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
}


.price-card:hover {
  transform: translateY(-10px);
}


.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}


.price {
  font-size: 2.3rem;
  color: orange;
  font-weight: bold;
  margin-bottom: 25px;
}


.price-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}


.price-card ul li {
  margin: 10px 0;
  color: #444;
}


/* FEATURED CARD */

.featured {
  border: 3px solid orange;
  transform: scale(1.05);
}


.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: orange;
  color: black;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: bold;
}


/* RESPONSIVE */

@media(max-width:768px){

  .featured {
    transform: scale(1);
  }

  .pricing h2 {
    font-size: 2rem;
  }

}



/* WHY US */

.why-us {
  padding: 80px 20px;
  text-align: center;
}

.why-box {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
}

.why-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* CLIENTS */

.clients {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.client-logos img {
  width: 120px;
  opacity: 0.7;
}


/* STATS */

.stats {
  background: #111;
  color: white;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 20px;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: orange;
}


/* PROCESS */

.process {
  padding: 80px 20px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step span {
  display: inline-block;
  background: orange;
  color: black;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  margin-bottom: 10px;
}


/* FAQ */

.faq {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.faq-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 8px;
}


/* CTA */

.cta-banner {
  background: linear-gradient(to right,#ff9800,#ffb300);
  color: black;
  text-align: center;
  padding: 70px 20px;
}

.cta-banner h2 {
  margin-bottom: 10px;
}


/* SKILLS */

.skills {
  padding: 80px 20px;
  text-align: center;
}

.skills-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.skills-box span {
  background: #111;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
}



/* CONTACT */

.contact {
  padding: 100px 20px;
  background: #111;
  color: white;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}


/* LEFT BRAND */

.contact-brand img {
  width: 120px;
  margin-bottom: 15px;
}

.contact-brand h2 {
  color: orange;
  margin-bottom: 10px;
}

.contact-brand p {
  color: #ccc;
  line-height: 1.6;
}

.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  color: orange;
  text-decoration: none;
  font-weight: 600;
}

.socials a:hover {
  text-decoration: underline;
}


/* FORM */

.contact-form {
  background: white;
  color: black;
  padding: 40px;
  border-radius: 12px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: orange;
}


/* FOOTER */

.footer {
  background: #000;
  color: white;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  color: orange;
  margin-bottom: 15px;
}

.footer-box p {
  color: #ccc;
  line-height: 1.6;
}


/* LINKS */

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: orange;
}


/* NEWSLETTER */

.footer-box form {
  display: flex;
  margin-top: 10px;
}

.footer-box form input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.footer-box form button {
  background: orange;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 600;
}


/* FOOTER BOTTOM */

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}


/* MOBILE */

@media(max-width:768px){

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 30px;
  }

}




/* CONTACT */

.contact {
  background: #111;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}


/* FOOTER */

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}


/* MOBILE */

@media(max-width:768px){

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid #333;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
