* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
  position: fixed;
  width: 100%;
  background: #000;
  color: #fff;
  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: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

nav a:hover {
  color: orange;
  text-decoration:underline;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* HERO */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
}

/* Background Video */

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Content */

.hero-content {
  max-width: 650px;
  color: white;
  text-align: left;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1;
  margin-top: 150px;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content h1 span {
  color: orange;
}

.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Button */

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: orange;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {

  .hero {
    padding: 0 5%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

}

/* ABOUT */

.about {
  padding: 100px 8%;
  background: #0a0a0a;
  color: white;
}

/* Heading */

.about-heading {
  margin-bottom: 50px;
}

.about-heading h2 {
  font-size: 3rem;
  text-align: left;
}

/* Container */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Block */

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* Button */

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background: orange;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: white;
  color: #000;
  transform: translateY(-3px);
}

/* Image Block */

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .about-container {
    flex-direction: column;
  }

  .about-heading h2 {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

}

@media (max-width: 768px) {

  .about {
    padding: 80px 5%;
  }

  .about-heading h2 {
    font-size: 2.3rem;
  }

  .about-text p {
    font-size: 1rem;
  }

}

/* ---------- PROJECTS SECTION ---------- */

.projects-section {
    padding: 100px 8%;
    background: #0a0a0a;
    color: white;
}

.projects-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

/* GRID */

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* CARD */

.project-card {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border 0.3s ease;
}

/* HOVER */

.project-card:hover {
    transform: translateY(-8px);
    border: 1px solid orange;
}

/* IMAGE */

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */

.project-content {
    padding: 20px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-content p {
    color: #bcbcbc;
    line-height: 1.6;
}

/* BUTTON */

.see-more {
    text-align: center;
    margin-top: 40px;
}

.see-more a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: orange;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
}

.see-more a:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .projects-section {
        padding: 80px 5%;
    }

    .projects-section h2 {
        font-size: 2.2rem;
    }

    .project-card img {
        height: 200px;
    }

}

/* =========================
   SERVICES
========================= */

.services {
    padding: 100px 8%;
    background: #0a0a0a;
    color: white;
    overflow: hidden;
}

/* HEADING */

.services-heading {
    margin-bottom: 60px;
}

.services-heading h2 {
    font-size: 3rem;
    text-align: left;
    position: relative;
    display: inline-block;
}

/* Accent line */

.services-heading h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -12px;

    width: 70px;
    height: 4px;

    background: orange;
    border-radius: 20px;
}

/* GRID */

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */

.service {
    position: relative;

    background: linear-gradient(
        145deg,
        #111,
        #161616
    );

    padding: 40px 30px;

    border-radius: 18px;

    border: 1px solid #1f1f1f;

    transition: 0.4s ease;

    overflow: hidden;
}

/* Glow effect */

.service::before {
    content: "";

    position: absolute;
    top: -50%;
    right: -50%;

    width: 250px;
    height: 250px;

    background: rgba(255, 165, 0, 0.08);

    border-radius: 50%;

    transition: 0.5s ease;
}

/* Hover */

.service:hover {
    transform: translateY(-10px);
    border: 1px solid orange;
}

.service:hover::before {
    transform: scale(1.2);
}

/* Number */

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.06);

    position: absolute;
    top: 20px;
    right: 25px;
}

/* Heading */

.service h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

/* Paragraph */

.service p {
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 1rem;

    position: relative;
    z-index: 2;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .services-heading h2 {
        text-align: center;
        display: block;
    }

    .services-heading h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 768px) {

    .services {
        padding: 80px 5%;
    }

    .services-heading h2 {
        font-size: 2.3rem;
    }

    .service {
        padding: 35px 25px;
    }

}



/* =========================
   PRICING SECTION
========================= */

.pricing {
    padding: 110px 8%;
    background: #050505;
    color: white;
    overflow: hidden;
}

/* HEADING */

.pricing-heading {
    margin-bottom: 70px;
}

.pricing-heading h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 15px;
}

.pricing-subtitle {
    color: #9d9d9d;
    max-width: 600px;
    line-height: 1.7;
}

/* GRID */

.pricing-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

/* CARD */

.price-card {
    position: relative;

    background: linear-gradient(
        145deg,
        #101010,
        #161616
    );

    border: 1px solid #1e1e1e;

    padding: 40px 30px;

    border-radius: 22px;

    transition: 0.4s ease;

    overflow: hidden;
}

/* HOVER */

.price-card:hover {
    transform: translateY(-12px);
    border: 1px solid orange;
}

/* PLAN TOP */

.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.plan-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
}

/* TITLE */

.price-card h3 {
    font-size: 1.7rem;
}

/* PRICE */

.price {
    font-size: 3rem;
    color: orange;
    font-weight: bold;
    margin-bottom: 15px;
}

/* DESCRIPTION */

.plan-description {
    color: #bdbdbd;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* LIST */

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.price-card ul li {
    margin: 14px 0;
    color: #d4d4d4;
    line-height: 1.5;
}

/* BUTTON */

.pricing-btn {
    display: inline-block;

    padding: 14px 30px;

    background: orange;
    color: black;

    text-decoration: none;
    font-weight: bold;

    border-radius: 8px;

    transition: 0.3s ease;
}

.pricing-btn:hover {
    background: white;
    transform: translateY(-3px);
}

/* FEATURED */

.featured {
    border: 2px solid orange;
    transform: scale(1.03);
}

/* BADGE */

.badge {
    position: absolute;
    top: 18px;
    right: 18px;

    background: orange;
    color: black;

    padding: 7px 14px;

    border-radius: 30px;

    font-size: 0.75rem;
    font-weight: bold;
}

/* PREMIUM CARD */

.premium-card {
    position: relative;
}

/* Glow */

.premium-glow {
    position: absolute;
    top: -100px;
    right: -100px;

    width: 250px;
    height: 250px;

    background: rgba(255,165,0,0.08);

    border-radius: 50%;

    filter: blur(20px);
}

/* Premium button */

.premium-btn {
    background: white;
}

.premium-btn:hover {
    background: orange;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .pricing-heading h2 {
        text-align: center;
    }

    .pricing-subtitle {
        text-align: center;
        margin: auto;
    }

}

@media (max-width: 768px) {

    .pricing {
        padding: 90px 5%;
    }

    .pricing-heading h2 {
        font-size: 2.3rem;
    }

    .featured {
        transform: scale(1);
    }

    .price-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 2.5rem;
    }

}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    padding: 110px 8%;
    background: #0a0a0a;
    color: white;
    overflow: hidden;
}

/* HEADING */

.why-heading {
    margin-bottom: 70px;
}

.why-heading h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 18px;
    position: relative;
}

/* Accent line */

.why-heading h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -12px;

    width: 80px;
    height: 4px;

    background: orange;
    border-radius: 20px;
}

.why-heading p {
    color: #9e9e9e;
    max-width: 650px;
    line-height: 1.8;
    margin-top: 30px;
}

/* GRID */

.why-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */

.why-item {
    position: relative;

    background: linear-gradient(
        145deg,
        #111,
        #181818
    );

    padding: 40px 30px;

    border-radius: 20px;

    border: 1px solid #1f1f1f;

    transition: 0.4s ease;

    overflow: hidden;
}

/* Hover */

.why-item:hover {
    transform: translateY(-10px);
    border: 1px solid orange;
}

/* Glow */

.why-item::before {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    background: rgba(255,165,0,0.06);

    border-radius: 50%;

    transition: 0.4s ease;
}

.why-item:hover::before {
    transform: scale(1.2);
}

/* Number */

.why-number {
    font-size: 4rem;
    font-weight: 800;

    color: rgba(255,255,255,0.06);

    position: absolute;
    top: 20px;
    right: 25px;
}

/* TITLE */

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;

    position: relative;
    z-index: 2;
}

/* TEXT */

.why-item p {
    color: #bcbcbc;
    line-height: 1.8;

    position: relative;
    z-index: 2;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .why-heading h2 {
        text-align: center;
    }

    .why-heading h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-heading p {
        text-align: center;
        margin: 30px auto 0;
    }

}

@media (max-width: 768px) {

    .why-us {
        padding: 90px 5%;
    }

    .why-heading h2 {
        font-size: 2.3rem;
    }

    .why-item {
        padding: 35px 25px;
    }

}





/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    padding: 110px 8%;
    background: #050505;
    color: white;
    overflow: hidden;
}

/* HEADING */

.testimonials-heading {
    margin-bottom: 70px;
}

.testimonials-heading h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 18px;
    position: relative;
}

/* Accent line */

.testimonials-heading h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -12px;

    width: 80px;
    height: 4px;

    background: orange;
    border-radius: 20px;
}

.testimonials-heading p {
    color: #9e9e9e;
    max-width: 650px;
    line-height: 1.8;
    margin-top: 30px;
}

/* GRID */

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */

.testimonial-card {
    position: relative;

    background: linear-gradient(
        145deg,
        #101010,
        #181818
    );

    padding: 35px 30px;

    border-radius: 20px;

    border: 1px solid #1f1f1f;

    transition: 0.4s ease;

    overflow: hidden;
}

/* Hover */

.testimonial-card:hover {
    transform: translateY(-10px);
    border: 1px solid orange;
}

/* Glow */

.testimonial-card::before {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    background: rgba(255,165,0,0.05);

    border-radius: 50%;
}

/* Quote */

.quote-icon {
    font-size: 5rem;
    color: rgba(255,255,255,0.05);

    position: absolute;
    top: 15px;
    right: 25px;
}

/* Stars */

.stars {
    color: orange;
    font-size: 1.1rem;
    margin-bottom: 20px;

    position: relative;
    z-index: 2;
}

/* TEXT */

.testimonial-card p {
    color: #c2c2c2;
    line-height: 1.8;
    margin-bottom: 30px;

    position: relative;
    z-index: 2;
}

/* CLIENT INFO */

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;

    position: relative;
    z-index: 2;
}

/* IMAGE */

.client-image img {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    object-fit: cover;

    border: 2px solid orange;
}

/* NAME */

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

/* ROLE */

.client-info span {
    color: #9e9e9e;
    font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .testimonials-heading h2 {
        text-align: center;
    }

    .testimonials-heading h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonials-heading p {
        text-align: center;
        margin: 30px auto 0;
    }

}

@media (max-width: 768px) {

    .testimonials-section {
        padding: 90px 5%;
    }

    .testimonials-heading h2 {
        font-size: 2.3rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

}


/* =========================
   CLIENTS SECTION
========================= */

.clients {
    padding: 100px 0;
    background: #050505;
    color: white;
    overflow: hidden;
}

/* HEADING */

.clients-heading {
    text-align: center;
    margin-bottom: 60px;
}

.clients-heading h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.clients-heading p {
    color: #9e9e9e;
    font-size: 1rem;
}

/* SLIDER */

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient fade edges */

.logo-slider::before,
.logo-slider::after {
    content: "";

    position: absolute;
    top: 0;

    width: 120px;
    height: 100%;

    z-index: 2;
}

.logo-slider::before {
    left: 0;

    background: linear-gradient(
        to right,
        #050505,
        transparent
    );
}

.logo-slider::after {
    right: 0;

    background: linear-gradient(
        to left,
        #050505,
        transparent
    );
}

/* TRACK */

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;

    width: max-content;

    animation: scrollLogos 25s linear infinite;
}

/* LOGOS */

.logo-track img {
    width: 140px;
    opacity: 0.65;

    transition: 0.3s ease;

    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ANIMATION */

@keyframes scrollLogos {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* RESPONSIVE */

@media (max-width: 768px) {

    .clients {
        padding: 80px 0;
    }

    .clients-heading h2 {
        font-size: 2.3rem;
    }

    .logo-track {
        gap: 50px;
    }

    .logo-track img {
        width: 100px;
    }

}



/* 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;
}




/* =========================
   FAQ SECTION
========================= */

.faq {
    padding: 110px 8%;
    background: #0a0a0a;
    color: white;
}

/* HEADING */

.faq-heading {
    margin-bottom: 70px;
}

.faq-heading h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 18px;
    position: relative;
}

/* Accent line */

.faq-heading h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -12px;

    width: 80px;
    height: 4px;

    background: orange;
    border-radius: 20px;
}

.faq-heading p {
    color: #9d9d9d;
    max-width: 600px;
    line-height: 1.8;
    margin-top: 30px;
}

/* CONTAINER */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */

.faq-item {
    background: linear-gradient(
        145deg,
        #101010,
        #181818
    );

    border: 1px solid #1f1f1f;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;
}

/* Hover */

.faq-item:hover {
    border: 1px solid orange;
}

/* ACTIVE */

.faq-item.active {
    border: 1px solid orange;
}

/* QUESTION BUTTON */

.faq-question {
    width: 100%;

    background: transparent;
    border: none;

    color: white;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-size: 1.1rem;
    font-weight: 600;

    text-align: left;
}

/* ICON */

.faq-icon {
    font-size: 1.5rem;
    color: orange;
}

/* ANSWER */

.faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #bcbcbc;
    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .faq-heading h2 {
        text-align: center;
    }

    .faq-heading h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .faq-heading p {
        text-align: center;
        margin: 30px auto 0;
    }

}

@media (max-width: 768px) {

    .faq {
        padding: 90px 5%;
    }

    .faq-heading h2 {
        font-size: 2.3rem;
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 22px;
    }

}




/* SECTION */
.contact-section {
  padding: 80px 20px;
  background: #0f0f0f;
  color: #fff;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* ================= LEFT ================= */
.contact-left {
  flex: 1;
  min-width: 280px;
}

.contact-left .logo {
  width: 80px;
  margin-bottom: 15px;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-left p {
  color: #aaa;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 5px 0;
  color: #ccc;
}

/* SOCIALS */
.socials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socials a {
  color: #00ffae;
  text-decoration: none;
}

.socials a:hover {
  color: #fff;
}

/* ================= RIGHT ================= */
.contact-right {
  flex: 1;
  min-width: 320px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
}

.contact-right h2 {
  margin-bottom: 5px;
}

.contact-right p {
  color: #aaa;
  margin-bottom: 20px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

textarea {
  min-height: 100px;
  resize: none;
}

/* BUDGET */
.budget-box {
  margin-top: 10px;
}

input[type="range"] {
  width: 100%;
}

button {
  padding: 12px;
  background: #00ffae;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #00d18f;
}

/* 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;
}


/* 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;
  }
}
