@font-face {
  font-family: "Cardo";
  src: url("Google fonts/Cardo-Regular.ttf");
  display: block;
}
@font-face {
  font-family: "Titilum";
  src: url("Google fonts/TitilliumWeb-Regular.ttf");
  display: block;
}
@font-face {
  font-family: "Glory";
  src: url("Google fonts/Glory-VariableFont_wght.ttf");
  display: block;
}
@font-face {
  font-family: "Oswald";
  src: url("Google fonts/Oswald-VariableFont_wght.ttf");
  display: block;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #0d0f16;
}
:root {
  --primary-1: #FF8C00;   /* Yellowish Orange*/
  --primary-2: #0A1D3C;   /* Navy Blue */
  --secondary-1: #F5E9D0; 
  --secondary-2: #4A5568;
  --primary-font: "Glory";
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow-x: hidden;
}

.logo img {
  /* margin-left: 60%; */
  width: 190px;
}

.nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  list-style-type: none;
  font-family: "Oswald";
}

.nav-links li a {
  text-decoration: none;
  color: white;
  transition: color 0.2s;
  font-size: 1.4rem;
}

.nav-links li a:hover {
  color: var(--primary-1);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-size: 1.5rem;

}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.cart {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #d7002e;
  color: #fff;
  padding: 3px 7px;
  border-radius: 50%;
  font-size: 12px;
}
/* HERO BG BEGINS */
.hero-bg {
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
   url(IMAGES/cinema-5069314.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.hero-bg img {
  background-repeat: no-repeat;
  width: 100%;
  transform: scale(1.1);
  position: relative;
}
.stack .list {
  color: white;
  font-size: 1.3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-350%);
  font-family: "Oswald";
}
.stack p {
  color: white;
  font-size: 5rem;
  top: 40%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 15%);
  font-family: "Titilum";
  font-weight: bold;
}
.stack .bottom-txt {
  font-size: 1.4rem;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  color: white;
  text-align: center;
  font-family: "Glory";
}
.stack .buton {
   position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-55%, -65%);
  display: flex;
  justify-content:center;
  gap: 10px;
 
}
.buton button {
  padding: 18px;
  font-family: "Glory";
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  color: white;
}
.buton button:nth-child(1) {
   background-color: var(--primary-2);
}
.buton button:nth-child(2) {
   background-color: var(--primary-1);
}
/* LIL preview of the services section */
.about {
  padding: 30px 20px;
  /* background-color: var(--primary-2); */
  background-color: #0d0f16;
}
.design {
  display: flex;
  justify-content: center;
  gap: 10%;
  margin-top: 10%;
  position: relative;
}
.design img {
  margin-left: 5%;
  outline: 12px groove var(--primary-1);
  border-radius: 4px;
  object-fit: cover;
}
.design-texts .about-us {
  color: var(--primary-1);
  font-size: 1.3rem;
}
.design-texts p {
  font-size: 3rem;
  color: white;
  font-family: "Oswald";
}
.design-texts span {
  color: white;
  font-family: "Titilum";
  font-size: 1.3rem;
  line-height: 1.6;
}

.skills-content {
  background: #111423;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  margin-top: 30px;
}

.skill-bar {
  margin-top: 25px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;

}
.skill-info span {
  font-family: "Oswald";
}

.progress {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-1), #ffb347);
  border-radius: 6px;
  animation: grow 1.2s ease forwards;
}
@keyframes grow {
  from { width: 0; }
}
/* SERVICES SECITON */
.services {
  padding: 80px 7%;
  background: #0d0f16; 
  color: #fff;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-header .tag {
  display: inline-block;
  padding: 6px 14px;
  background: #1c1f2b;
  color: var(--primary-1);
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: "Titilum";
}

.services-header h2 {
  margin: 20px 0 10px;
  font-size: 2.5rem;
  font-family: "Oswald";
}

.services-header p {
  font-size: 1.2rem;
 
  font-family: "Oswald";
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #0d0f16;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #8b9aff;
}

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  font-family: "Oswald";
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.5;
  font-family: "Oswald";
}
.service-icon {
  width: 50px;
  height: auto;
}
/* SKILLS */
.skill {
  background-color: #0d0f16;
  color: white;
  margin-top: 5%;

}
.our-skills {
  padding: 30px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.our-skills span {
  font-size: 1.5rem;
  font-family: "Titilum";
  color: var(--primary-1);
}
.our-skills p {
  font-size: 3.5rem;
  font-family: "Oswald";
}
.our-skills .passion {
  font-size: 1.2rem;
  color: white;
}
.sk-img {
  margin-top: 6%;
}
.sk-img img {
  border-radius: 8px;
}
.skill-stack {
  /* background-color: #121e2d; */
  margin-bottom: 5%;
  display: flex;
  justify-content: space-evenly;
  height: auto;
  padding: 20px 20px;
}
.skill-stack .stack-holder {
  background-color: #0d0f16;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
  text-align: center;
  height: 280px;
  padding: 50px 40px;
}
.stack-holder img {
  width: 70px;
}
.stack-holder p {
  font-size: 1.3rem;
  margin-top: 5px;
  font-family: "Oswald";
}
/* MY TEAM */
.myTeam {
  background-color: #0d0f16;
}
.myTeam .myTeam-holder {
  padding: 30px 20px;
}
.team-span {
  color: var(--primary-1);
  font-size: 1.6rem;
  font-family: "Glory";
  text-align: center;
  display: block;
}
.team-p {
  text-transform: uppercase;
  font-family: "Oswald";
  color: white;
  font-size: 3rem;
  text-align: center;
}
.team-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  padding: 35px 20px;
}
.team-card-holder {
  height: 370px;
  width: 280px;
  border: 3px inset var();
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  text-align: center;
  padding: 10px;
}
.team-card-holder .image {
  background-color: #121e2d;
  border-radius: 50%;
  height: 60%;
  margin-bottom: 10px;
} 
.team-card-holder span {
  font-size: 1.2rem;
  font-family: "Titilum";
  color: var(--primary-1);
}
.team-card-holder p {
  color: white;
  font-family: "Titilum";
  margin-top: 5%;
  font-size: 1.7rem;
}
/* TESTIMONIALS */
.testimonials {
  background-color: #0d0f16;
  padding: 30px 20px;
  margin-top: 5%;
  height: auto;
}
.testi-holder .testi-span {
  color: var(--primary-1);
  font-size: 1.7rem;
  font-family: "Glory";
  text-align: center;
  display: block;
}
.testi-holder .testi-p {
  text-transform: uppercase;
  font-family: "Oswald";
  color: white;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}
/* SWIPER TESTIMONIALS */
.glass {
  backdrop-filter: blur(12px);
  background: #0d0f16;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.testimonial-card {
  width: 75%;
  margin: auto;
  padding: 45px 25px;
  height: 450px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  transform: scale(0.85);
  transition: 0.4s ease;
}
.swiper-slide-active .testimonial-card {
  transform: scale(1);
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.quote {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-family: "Oswald";
}
.stars {
  font-size: 2rem;
  color: gold;
  margin-bottom: 10px;
}
.name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 5px;
  font-family: "Oswald";
}
.mySwiper {
  width: 100%;
  padding: 50px 0;
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  background-color: black;
  padding: 5px;
  border-radius: 5px;
}

.swiper-pagination-bullet {
  opacity: 0.5;
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
/* COUNTER */
.counter-class {
  background-color: #0d0f16;
  padding: 50px 20px;
}
.counter-container {
  text-align: center;
  padding: 30px 20px;
}
.counter-span {
  font-size: 1.4rem;
  font-family: "Cardo";
  color: white;
}
.counter-p {
  font-size: 3.5rem;
  margin-top: 5px;
  font-family: "Oswald";
  color: white;
}
.counter-images {
  display: flex;
  justify-content: space-evenly;
  gap: 20px; 
  margin-top: 2.5%;
}
.img-wrapper {
  position: relative;
  display: inline-block;
}
.img-wrapper img {
  display: block;
  height: 200px;
}
.img-wrapper .img-span {
  position: absolute;
  top: 50%;        
  left: 50%;        
  transform: translate(-50%, -90%);
  font-size: 2.7rem;
  color: white;
  pointer-events: none; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-family: "Oswald";
}
.img-wrapper p {
  text-align: center;
  margin-top: 20px;
  font-size: 1.8rem;
  font-family: "Oswald";
  color: white;
}
.appointment {
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
   url(IMAGES/vbg.jpg);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.form-container {
  padding: 50px 20px;
  width: 40%;
  background-color: white;
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Oswald";
  color: #121e2d;
  font-size: 2.8rem;
}
.form-container input {
  padding: 25px;
  width: 90%;
  display: block;
  margin: auto;
  font-family: "Oswald";
  font-size: 1.2rem;
  margin-bottom: 20px;
  outline: none;
  border-radius: 5px;
  margin-top: 5px;
  border: none;
  background-color: hsl(0, 0%, 92%);
}
.form-container textarea {
  padding: 45px;
  width: 90%;
  display: block;
  margin: auto;
  font-family: "Oswald";
  font-size: 1.2rem;
  margin-bottom: 20px;
  outline: none;
  border-radius: 5px;
  margin-top: 5px;
  border: none;
  background-color: hsl(0, 0%, 92%);
  resize: vertical;
  overflow: hidden;
  max-width: 100%;
}
.form-container button {
  padding: 20px 55px;
  font-family: "Oswald";
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #121e2d;
  cursor: pointer;
  margin-left: 5%;
}
.write-up {
  color: white;
  /* width: 60%; */
  padding: 50px 20px;

}
.write-up .write-up-p {
  font-family: "Oswald";
  font-size: 4rem;
}
.write-up span {
  font-size: 1.5rem ;
  font-family: "Titilum";
}
.project-box {
  display: flex;
  justify-content: flex-start; 
  align-items: flex-end;
  gap: 30px;               
  flex-wrap: wrap;        
  padding: 20px;
}

.project-item {
  background-color: #0d0f16;
  color: white;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  width: 180px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-item h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Oswald";
}

.project-item p {
  font-size: 18px;
  line-height: 1.4;
  font-family: "Oswald";
}

/* Optional: hover effect */
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
/* BLOG INSIGHTS */
.blog-insights {
  background-color: #0d0f16;
  padding: 30px 20px;
}
 .blog-span span {
  color: var(--primary-1);
  font-size: 1.6rem;
  font-family: "Glory";
  text-align: center;
  display: block;
}
.blog-span p {
  text-transform: uppercase;
  font-family: "Oswald";
  color: white;
  font-size: 3rem;
  text-align: center;
}
.blog-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 20px;
}

.blog-card {
  background-color: white; /* dark card bg */
  border-radius: 16px;
  overflow: hidden;
  width: 400px;
  height: 460px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-text {
  padding: 20px;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-date {
  font-size: 1rem;
  font-family: "Helvetica";
  color: var(--primary-2);
  font-weight: bold;
}

.blog-p {
  font-size: 1.5rem;
  font-family: "Oswald";
  font-weight: 600;
  line-height: 1.4;
}

.blog-card a {
  align-self: flex-start;
  font-size: 1rem;
  color: #121e2d; /* accent color for link */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: "Oswald";
}
.blog-card button {
  width: 180px;
  padding: 13px;
  font-family: "Oswald";
  border: none;
  background-color: #0d1723;
  color: white;
  font-size: 1.1rem;
  border-radius: 5px;
}

.blog-card a:hover {
  color: #FF8C00;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
/* FOOTER STYLING */
.site-footer {
  background: #0a0d16;
  color: #cbd5e1;
  padding: 70px 40px 20px;
  font-family: var(--primary-font);
  height: 60vh;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-col h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  font-family: "Oswald";
}

.footer-col h3::after {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--primary-1);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  font-family: "Oswald";
}

.footer-col ul li a:hover {
  color: var(--primary-1);
  padding-left: 6px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald";
}

.contact-list i {
  color: var(--primary-1);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: #94a3b8;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

  /* NAVBAR */
  .main-nav {
    padding: 10px 20px;
    overflow-x: hidden;
  }
  .nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 9;
}

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }
   .nav-links.show {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  /* HERO SECTION */
  .hero-bg {
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .stack .list {
    font-size: 0.9rem;
    transform: translate(-50%, -10%);
    width: 90%;
    text-align: center;
  }

  .stack p {
    font-size: 2.8rem;
    transform: translate(-50%, -40%);
    width: 100%;
    text-align: center;
  }

  .stack .bottom-txt {
    font-size: 1rem;
    width: 90%;
    transform: translate(-50%,-70%);
  }

  .stack .buton {
    top: 68%;
    flex-direction: column;
    gap: 8px;
    transform: translate(-50%, -50%);
  }

  .buton button {
    width: 180px;
    font-size: 1rem;
    padding: 15px;
  }
  .buton button:nth-child(2) {
    display: none;
  }

  /* ABOUT SECTION */
  .design {
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
  }

  .design img {
    width: 90%;
    margin: auto;
  }

  .design-texts p {
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 2.5%;
  }

  .design-texts span {
    text-align: center;
    display: block;
    width: 100%;
    line-height: 1.5;
  }

  .business-tab1 {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }

  .business-tab1 p,
  .business-tab1 span {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }

  /* SERVICES SECTION (main fix) */
  .services {
    padding: 60px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px;
  }

  .services-header .title {
    font-size: 1.8rem;
  }

  /* SKILLS */
  .our-skills {
    flex-direction: column;
    text-align: center;
  }
  .our-skills p {
    font-size: 2.5rem;
  }

  .sk-img img {
    width: 90%;
    margin: auto;
  }

  .skill-stack {
    flex-direction: column;
    gap: 20px;
    width: 85%;
    justify-content: center;
    margin: auto;
  }

  .stack-holder {
    text-align: center;
  }

  /* TEAM */
  .team-p {
    font-size: 2.5rem;
    margin-top: 10px;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
  }
  .team-card-holder {
    width: 90%;
    height: auto;
  }
  .team-card-holder img {
    width: 85%;
    margin: auto;

  }

  .team-card-holder p {
    font-size: 1.2rem;
    
  }

  /* TESTIMONIALS */
  .testi-holder .testi-p {
    font-size: 2.5rem;
    margin-top: 10px;
  }
  .testimonial-card {
    width: 92%;
    margin: auto;
    padding: 30px 15px;
    height: auto;
  }

  /* COUNTER */
  .counter-span {
    font-family: "Titilum";
  }
  .counter-container .counter-p {
    font-size: 2.5rem;
  }
  .counter-images {
    flex-direction: column;
    gap: 30px;
  }

  .img-wrapper img {
    margin: auto;
  }

  .img-span {
    font-size: 2rem;
  }

  /* APPOINTMENT */
  .appointment {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: none;
  }

  .form-container {
    width: 100%;
    margin: auto;
  }
  .form-container h2 {
    font-size: 2.2rem;
  }
  .form-container input {
    padding: 20px;
    width: 100%;
  }
  .form-container textarea {
    padding: 30px;
    width: 100%;
  }
  .form-container button {
    margin-left: 0;
    width: 100%;
    padding: 15px;
  }
  .write-up {
    text-align: center;
    width: 95%;
    margin: auto;
  }
  .write-up .write-up-p {
    font-size: 2.5rem;
  }
  .write-up span {
    font-size: 1.2rem;
  }

  .project-box {
   flex: 2;
    justify-content: center;
  }

  /* BLOG SECTION */
  .blog-span span {
    font-size: 1.4rem;
  }
  .blog-span p {
    font-size: 2.5rem;
  }
  .blog-cards {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 20px;
  }
  .blog-card {
    width: 95%;
    height: auto;
    margin: auto;
  }
  .blog-card img {
    width: 100%;
  }
  /* FOOTER  */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    flex-direction: column;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-list {
    align-items: center;
  }
}

@media (max-width: 500px) {
/* NAVBAR */
  .hero-bg {
    background-attachment: scroll;
    overflow-x: hidden;
  }
  .main-nav {
    padding: 10px 20px;
    overflow-x: hidden;
  }
  .nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 0; /* initially hidden */
  height: 0;
  background-color: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 9;
}

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }
   .nav-links.show {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    text-align: center;
  }
}