* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  border: none;
  outline: none;
}

:root {
  --bg-color: #2b2222;
  --second-bg-color: #616161;
  --card-bg: #7c4008;
  --card-bg: #7c4008;
  --main-color: #ff7a01;
  --main-color1: #bec201;
  --text-color: #fff;
  --second-color: #e4e4e4;
  --other-color: #c6c9d8bf;
  --h1-font: 7rem;
  --h2-font: 3.5rem;
  --p-font: 1.1rem;
}

.light-mode {
  --color-primary: #ffffff;
  --color-secondary: #f56692;
  --color-white: #454e56;
  --color-black: #000;
  --color-grey0: #f8f8f8;
  --color-grey-1: #6c7983;
  --color-grey-2: #6c7983;
  --color-grey-3: #6c7983;
  --color-grey-4: #454e56;
  --color-grey-5: #f8f8f8;
  --color-grey-6: #12181b;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 28px 11%;
  border-bottom: 1px solid transparent;
  transition: all ease 0.5s;
}

.animated-text {
  animation: fadeInBounce 10s ease-in-out infinite;
  /* Adjust the total duration to 10s */
  opacity: 0;
  /* Initially hide the text */
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    /* Initial position above */
  }

  20% {
    opacity: 1;
    transform: translateY(0);
    /* Bouncing animation */
  }

  80% {
    opacity: 1;
    /* Stay visible for 5 seconds */
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
    /* Back to initial position */
  }
}

.developer-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  overflow: hidden;
}

.left-animation,
.right-animation {
  display: inline-block;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 2s ease-in-out forwards;
}

.right-animation {
  transform: translateX(100%);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo img {
  width: 70px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 50%;
  transition: transform 0.5s;
}

/* .logo img {
  width: 70px;
  height: 40px;
} */
.navlist {
  display: flex;
}

.navlist a {
  color: var(--second-color);
  font-size: var(--p-font);
  font-weight: 600;
  margin: 0 40px;
  transition: all ease 0.4s;
}

.navlist a:hover {
  color: var(--main-color);
}

a.active-btn {
  color: var(--main-color);
}

/* #menu-icon {
  font-size: 42px;
  color: var(--text-color);
  z-index: 10001;
  cursor: pointer;
  display: none;
} */
#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 4px;
}

#bar2 {
  transition-duration: 0.8s;
}

#bar1,
#bar3 {
  width: 70%;
}

#checkbox:checked+.toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}

#checkbox:checked+.toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}

#checkbox:checked+.toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

#checkbox:checked+.toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

#checkbox:checked+.toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

section {
  padding: 120px 19% 100px;
}

/* section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 18rem;
} */

.home {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    url(/images/image.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-text h3 {
  color: var(--second-color);
  font-size: 22px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  word-spacing: 10px;
}

.hero-text h1 {
  font-family: "Dosis", sans-serif;
  font-size: var(--h1-font);
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.hero-text h4 {
  color: var(--second-color);
  font-size: 25px;
  font-weight: 600;
  word-spacing: 15px;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-block;
  padding: 16px 45px;
  background: var(--main-color);
  color: var(--text-color);
  font-size: var(--p-font);
  font-weight: 600;
  border: 2px solid var(--main-color);
  transition: all ease 0.5s;
}

.btn:hover {
  transform: translateX(5px);
  background: var(--main-color);
  background: transparent;
}

header.sticky {
  padding: 15px 11%;
  background: #000;
  border-bottom: 1px solid #4e5055;
}

.home-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  align-items: center;
  gap: 4rem;
}

.home-about .about-img img {
  width: 70%;
  height: 50%;
  border-radius: 50%;
}

.home-about .about-text h2 {
  font-family: "Dosis", sans-serif;
  font-size: var(--h2-font);
  font-weight: 800;
  margin-bottom: 10px;
}

.home-about .about-text h5 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.4;
}

span {
  color: var(--main-color);
}

.home-about .about-text p {
  color: var(--other-color);
  font-size: var(--p-font);
  line-height: 30px;
  margin-bottom: 3rem;
}

.service {
  background: var(--bg-color);
}

.service .text-center {
  text-align: center;
}

.service .text-center h2 {
  font-family: "Dosis", sans-serif;
  font-size: var(--h2-font);
  font-weight: 800;
  margin-bottom: 10px;
}

.service .text-center h4 {
  font-size: 22px;
  font-weight: 500;
}

.service .project-display {
  margin-top: 15px;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service .project-display .container {
  position: relative;
  width: 1100px;
  display: flex;
  justify-content: center;
  gap: 8.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}

.project-display .container .card {
  position: relative;
  max-width: 300px;
  height: 200px;
  background: var(--main-color);
  margin: 30px 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.project-display .container .card:hover {
  height: 420px;
}

.project-display .container .card .imgBox {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  width: 260px;
  height: 260px;
  top: -60px;
  left: 5px;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



.project-display .container .card .imgBox .imgBox-head {
  text-align: center;
}

.project-display .container .card .imgBox img {
  max-width: 100%;
  border-radius: 4px;
}

.project-display .container .card .content {
  position: relative;
  margin-top: -10px;
  padding: 10px 15px;
  text-align: center;
  color: var(--text-color);
  overflow: hidden;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.project-display .container .card .content::-webkit-scrollbar {
  width: 8px;
}

.project-display .container .card .content::-webkit-scrollbar-track {
  background: transparent;
}

.project-display .container .card .content::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 4px;
}

.project-display .container .card .content::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}

.project-display .container .card .content p {
  text-align: center;
}

.project-display .container .card:hover .content {
  visibility: visible;
  opacity: 1;
  margin-top: -60px;
  transition-delay: 0.3s;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, auto)); */
  align-items: center;
  gap: 5rem;
}

.contact .left-contact {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 4rem;
}

.contact .left-contact .in i {
  color: var(--main-color);
  opacity: 0.5;
  font-size: 90px;
  font-size: 90px;
  margin-bottom: 15px;
  transition: all ease 0.4;
}

.contact .left-contact .in i:hover {
  opacity: 1;
  cursor: pointer;
}

.contact .left-contact .in h4 {
  font-size: 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact .right-contact h2 {
  font-family: "Dosis", sans-serif;
  font-size: var(--h2-font);
  font-weight: 800;
  margin-bottom: 5px;
}

.contact .right-contact a {
  display: inline-block;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--main-color);
  padding: 3px 0;
  transition: all ease 0.4s;
}

.contact .right-contact a:hover {
  transform: translateY(-5px);
  color: var(--text-color);
  border-bottom: 4px solid var(--text-color);
}

.contact .right-contact p {
  color: var(--other-color);
  font-size: var(--p-font);
  line-height: 30px;
}

.orange {
  color: var(--main-color);
}

.contact .form-container {
  max-width: 700px;
  margin: 30px;
  background-color: var(--bg-color);
  padding: 30px;
  border-left: 5px solid var(--main-color);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
}

.contact .form-container .heading {
  text-align: center;
  display: block;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact .form-container .form .input {
  color: #87a4b6;
  width: 100%;
  height: 80%;
  background-color: #002733;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.contact .form-container .form .input:focus {
  border-left: 5px solid var(--main-color);
}

.contact .form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #013747;
  color: var(--main-color);
  font-weight: bold;
  resize: none;
  max-height: 150px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.contact .form-container .form .textarea:focus {
  border-left: 5px solid var(--main-color);
}

.contact .form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.contact .form-container .form .button-container .send-button {
  flex-basis: 70%;
  background: var(--main-color);
  padding: 10px;
  color: #001925;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.contact .form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
}

.contact .form-container .form .button-container .reset-button-container {
  filter: drop-shadow(1px 1px 0px var(--main-color));
  flex-basis: 30%;
}

.contact .form-container .form .button-container .reset-button-container .reset-button {
  position: relative;
  text-align: center;
  padding: 10px;
  color: var(--main-color);
  font-weight: bold;
  cursor: pointer;
  background: #001925;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%);
  transition: all 0.2s ease-in-out;
}

.contact .form-container .form .button-container .reset-button-container .reset-button:hover {
  background: var(--main-color);
  color: #001925;
}

.end-section {
  padding: 80px 19% 70px;
  background: var(--second-bg-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.end-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-section p {
  color: var(--other-color);
  font-size: var(--p-font);
  line-height: 30px;
  margin-bottom: 20px;
}

.end-section i {
  height: 40px;
  width: 40px;
  background: var(--main-color);
  color: var(--text-color);
  border: 2px solid var(--main-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50px;
  margin: 0 9px;
  transition: all ease 0.5s;
}

.end-section i:hover {
  transform: translateY(-5px);
  background: transparent;
  border: 2px solid var(--main-color);
}

.scroll-bttn i {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  color: var(--main-color);
  background: var();
  background: rgba(49, 49, 49, 0.5);
  backdrop-filter: blur(10px);
  font-size: 25px;
  padding: 9px;
  border-radius: 0.8rem;
}

.portfolio-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
}

.row {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.row img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), #00293f);
  position: absolute;
  border-radius: 8px;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  transition: height 0.5s;
}

.layer h5 {
  font: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.layer p {
  color: var(--second-color);
  font-size: 1rem;
  line-height: 1.8;
}

.layer i {
  color: var(--main-color);
  margin-top: 20px;
  font-size: 20px;
  background: var(--text-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.row:hover img {
  transform: scale(1.1);
}

.row:hover .layer {
  height: 100%;
}

@media (min-width: 50px) and (max-width: 300px) {
  header {
    padding: 15px 2%;
  }

  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 15px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 12px;
    padding: 10px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-text h3 {
    font-size: 17px;
  }

  .hero-text .developer-animation h4 {
    font-size: 12px;
    word-spacing: 2px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about .about-text h5 {
    font-size: 15px;
  }

  .home-about .about-text p {
    font-size: 12px;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 600px;
    height: auto;
  }

  .contact .left-contact {
    flex-direction: column;
    gap: 10px;
  }

  .contact .right-contact h2 {
    font-size: 25px;
  }

  .service .project-display .container {
    padding: 0;
  }

  .service .text-center {
    margin-bottom: 60px;
  }

  .service .text-center h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service .text-center h4 {
    font-size: 15px;
    font-weight: 500;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 300px) and (max-width: 400px) {
  :root {
    --h1-font: 1.4rem;
    --h2-font: 1rem;
  }

  header {
    padding: 15px 2%;
  }

  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 15px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 12px;
    padding: 10px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-text h3 {
    font-size: 17px;
  }

  .hero-text .developer-animation h4 {
    font-size: 12px;
    word-spacing: 2px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about .about-text h5 {
    font-size: 15px;
  }

  .home-about .about-text p {
    font-size: 12px;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 600px;
    height: auto;
  }

  .contact .left-contact {
    flex-direction: column;
    gap: 10px;
  }

  .contact .right-contact h2 {
    font-size: 25px;
  }


  .service .project-display .container {
    padding: 0;
  }

  .service .text-center {
    margin-bottom: 60px;
  }

  .service .text-center h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service .text-center h4 {
    font-size: 15px;
    font-weight: 500;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 400px) and (max-width: 562px) {
  :root {
    --h1-font: 2rem;
    --h2-font: 3.5rem;
  }

  header {
    padding: 10px 2%;
  }

  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 10px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 15px;
    padding: 12px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text .developer-animation h4 {
    font-size: 13px;
    word-spacing: 2px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about .about-text h5 {
    font-size: 15px;
  }

  .home-about .about-text p {
    font-size: 12px;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 400px;
    height: auto;
  }

  .contact .left-contact {
    flex-direction: column;
    gap: 10px;
  }

  .contact .right-contact h2 {
    font-size: 25px;
  }

  .service .project-display .container {
    padding: 0;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 562px) and (max-width: 685px) {
  :root {
    --h1-font: 5rem;
    --h2-font: 3.5rem;
    --p-font: 1.1rem;
  }

  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 20px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 20px;
    padding: 12px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .hero-text .developer-animation h4 {
    font-size: 12px;
    word-spacing: 2px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about .about-text h5 {
    font-size: 15px;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .home-about .about-text p {
    font-size: 12px;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 300px;
    height: auto;
  }

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

  .home {
    min-height: 80vh;
  }


  .contact .left-contact {
    gap: 15px;
  }

  .contact .right-contact h2 {
    font-size: 30px;
  }

  .contact .left-contact .in i {
    font-size: 60px;
  }

  .contact .left-contact .in h4 {
    font-size: 20px;
  }

  .service .project-display .container {
    padding: 0;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 685px) and (max-width: 809px) {
  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 20px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 20px;
    padding: 12px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text h1 {
    font-size: 70px;
  }

  .hero-text .developer-animation h4 {
    font-size: 20px;
    word-spacing: 2px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-about .about-text h5 {
    font-size: 20px;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 300px;
    height: auto;
  }


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

  .contact .left-contact {
    margin: auto;
    gap: 15px;
  }

  .contact .right-contact h2 {
    font-size: 30px;
  }

  .contact .left-contact .in i {
    font-size: 60px;
  }

  .contact .left-contact .in h4 {
    font-size: 20px;
  }

  .service .project-display .container {
    padding: 0;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 809px) and (max-width: 1090px) {
  .toggle {
    display: flex;
  }

  .navlist {
    position: absolute;
    top: -800px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 20px 0;
    text-align: left;
    transition: all 0.5s ease;
  }

  .navlist a {
    display: block;
    font-size: 15px;
    padding: 12px 0;
  }

  .navlist.open {
    top: 100%;
  }

  .hero-text {
    font-size: 8px;
    word-spacing: 4px;
    margin-bottom: 7px;
  }

  .hero-text h1 {
    font-size: 75px;
  }

  .hero-text .developer-animation h4 {
    font-size: 25px;
    word-spacing: 2px;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .home-about .about-img {
    text-align: center;
  }

  .home-about .about-img img {
    max-width: 100%;
    width: 300px;
    height: auto;
  }

  .home-about .about-text h5 {
    font-size: 20px;
  }

  .home-about .about-text p {
    text-align: justify;
  }

  .btn {
    padding: 10px 35px;
    font-size: 12px;
  }



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

  .contact .left-contact {
    margin: auto;
    gap: 40px;
  }

  .contact .right-contact h2 {
    font-size: 30px;
  }

  .contact .left-contact .in i {
    font-size: 60px;
  }

  .contact .left-contact .in h4 {
    font-size: 20px;
  }

  .service .project-display .container {
    padding: 0;
  }

  section {
    padding: 100px 5% 80px;
  }
}

@media (min-width: 1090px) and (max-width: 1200px) {
  :root {
    --h1-font: 5rem;
    --h2-font: 3.5rem;
    --p-font: 1.1rem;
  }

  .home {
    min-height: 90vh;
  }

  .navlist a {
    margin: 0 20px;
  }

  section {
    padding: 100px 5% 80px;
  }

}

@media (min-width: 1200px) and (max-width: 1600px) {
  header {
    padding: 14px 4%;
  }

  /* header.sticky {
    padding: 8px 4%;
  } */

  section {
    padding: 100px 5% 80px;
  }
}
