* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: sans-serif;
}

body {
  background: #161616 !important;
  color: #fff !important;
}

/* Navbar */
#navigation {
  padding: 16px 0;
  background: #161616;
}

#navigation #navbarNav a {
  color: #fff;
  padding: 0 16px;
}

#navingation .nav-link {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

#navigation .nav-link:hover {
  transform: scale(1.1);
}

#navigation .navbar-toggler i {
  color: #fff;
}

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero .opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* adjust for darkness */
  z-index: 1;
}

#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

#hero .hero-content h1 {
  font-size: 96px;
  font-weight: 800;
  margin-bottom: 16px;
  color: transparent;
  -webkit-text-stroke: 2px white;
  transition: all 0.5s ease;
  cursor: pointer;
}

#hero .hero-content h1:hover {
  color: white;
  -webkit-text-stroke: 0px;
}

#hero .hero-content p {
  font-size: 18px;
  margin-bottom: 48px;
}

#hero .download-btn {
  padding: 16px 24px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

#hero .download-btn:hover {
  background-color: #fff;
  color: #000;
  border: none;
}

/* About */
#about {
  padding: 140px 0 0 0;
}

#about .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .image img {
  width: 60%;
  border-radius: 50%;
  transition: box-shadow 0.4s ease;
  cursor: pointer;
}

#about .image img:hover {
  box-shadow: 0 0 20px #fff, 0 0 40px #fff;
}

#about .right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .right-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.8px white;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 16px;
  text-transform: uppercase;
}

#about .right-content p {
  line-height: 32px;
}

#about .right-content h2:hover {
  color: #fff;
  -webkit-text-stroke: 0px white;
}

#about .right-content .bottom-content {
  display: flex;
  gap: 80px;
  margin-top: 32px;
}

#about .right-content .bottom-content .tools {
  border: 1px solid #fff;
  width: 100%;
  padding: 24px 48px;
  transition: box-shadow 0.4s ease;
}

#about .right-content .bottom-content .skills {
  border: 1px solid #fff;
  width: 100%;
  padding: 24px 48px;
  transition: box-shadow 0.4s ease;
}

#about .right-content .bottom-content .tools:hover,
#about .right-content .bottom-content .skills:hover {
  box-shadow: 0 0 15px #fff, 0 0 30px #fff;
}

#about .right-content .bottom-content .tools ul li {
  padding: 16px 0;
}

#about .right-content .bottom-content .skills ul li {
  padding: 16px 0;
}

/* Projects */
#project {
  padding: 140px 0 0 0;
}

#project .head h2 {
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.8px white;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

#project .head h2:hover {
  color: #fff;
  -webkit-text-stroke: 0px white;
}

#project a {
  text-decoration: none;
  color: inherit;
}

#project .row {
  margin-bottom: 80px;
}

#project .row .col-lg-5 .box {
  border: 1px solid #fff;
  border-radius: 16px;
  transition: box-shadow 0.4s ease;
}

#project .row .col-lg-5 .box:hover {
  box-shadow: 0 0 15px #fff, 0 0 30px #fff;
}

#project .row h2 {
  margin-bottom: 32px;
  font-size: 40px;
}

#project .row .col-lg-5 .box img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}

#project .row .col-lg-5 .box h3 {
  text-align: center;
  padding: 24px 0;
  color: #fff;
  text-decoration: none;
}

/* Contact */
#contact {
  padding: 60px 0 0 0;
}

#contact h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  -webkit-text-stroke: 0.8px #fff;
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 48px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#contact h2:hover {
  color: #fff;
  -webkit-text-stroke: 0px #fff;
}

#contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .contact-form {
  width: 50%;
}

#contact .contact-form .btn {
  padding: 0;
  margin-top: 32px;
  width: 100%;
}

#contact .contact-form .btn button {
  width: 100%;
  padding: 16px 24px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

#contact .contact-form .btn button:hover {
  background-color: #fff;
  color: #000;
}

/* Footer */
#footer {
  padding: 140px 0 0 0;
}

#footer hr {
  margin-bottom: 48px;
}

#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer .container a {
  text-decoration: none;
  color: #fff;
}

#footer .container .navlinks ul {
  display: flex;
}

#footer .container .navlinks ul li {
  list-style: none;
  padding: 48px 24px;
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

#footer .container .navlinks ul li:hover {
  transform: scale(1.1);
}

#footer .container .social-links i {
  font-size: 24px;
  padding: 0 24px;
}

#footer .container .copyrights p {
  font-size: 14px;
  margin: 48px 0 32px 0;
}

/* Navbar */
@media (max-width: 992px) {
  #navigation #navbarNav a {
    padding: 0;
  }

  #navigation .navbar-nav .nav-item {
    margin-top: 12px;
    padding: 0px;
  }
}

/* About */
@media (max-width: 992px) {
  #about {
    padding: 80px 0 0 0;
  }

  #about .right-content h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 32px;
  }

  #about .right-content p {
    text-align: center;
  }

  #about .right-content .bottom-content {
    flex-direction: column;
    gap: 40px;
  }
}

/* Project */
@media (max-width: 992px) {
  #project {
    padding: 80px 0 0 0;
  }
  #project .head h2 {
    margin-bottom: 32px;
    font-size: 32px;
  }
  #project .row h2 {
    font-size: 24px;
    margin-bottom: 0;
  }
  #project .row {
    gap: 32px;
  }
}

/* Contact */
@media (max-width: 992px) {
  #contact {
    padding: 30px 0 0 0;
  }
  #contact h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  #contact .contact-form {
    width: 100%;
  }
}

/* Footer */
@media (max-width: 992px) {
  #footer {
    padding: 80px 0 0 0;
  }

  #footer ul {
    padding: 0px;
  }
}
