* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Poppins";
  color: #fff;
}

:root {
  --bg-color: #000000;
  --second-bg-color: #101010;
  --text-color: rgba(236, 231, 231, 0.894);
  /* --main-color: #ea580c; */
  --main-color: #ff9800;
}

html {
  font-size: 60%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
}

/* Start Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 4rem 15%;
  background: rgba(0, 0, 0, 0.306);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

#menu-icon {
  font-size: 3.5rem;
  color: var(--main-color);
  display: none;
}

.logo {
  font-size: 5rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

span {
  background: linear-gradient(270deg, #FFC107 10%, #FF5722 100%);
  background-clip: text;
  color: transparent;
}

.navbar a {
  font-size: 2.8rem;
  color: var(--text-color);
  margin-left: 5rem;
  font-weight: bold;
  transition: .3s ease-in-out;
  border-bottom: 3px solid transparent;
}

.navbar a:hover {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color) !important;
}

.contact-btn {
  font-size: 1.8rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(270deg, #FFC107 10%, #FF5722 100%);
  border: none;
  margin-right: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
  color: white;
  text-wrap: nowrap;
  font-weight: 800;
}

.contact-btn:hover {
  transform: scale(1.05);
}

/* End Header */
/* Start Home */
section {
  min-height: 100vh;
  padding: 10rem 15%;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15rem;
}

.home .home-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: var(--text-color);

}

.home-content h1 {
  font-size: 8rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1;
  color: var(--text-color);
}

.home-content h3 {
  font-size: 10rem;
  margin: 1rem 0;
}

.home-content p {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 900px;
}

.home-img img {
  width: 32vw;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 1rem;
  background-color: transparent;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 0.5rem;
  transition: .3s ease-in-out;
}

.social-icons a:hover {
  color: var(--text-color);
  background-color: var(--main-color);
  transform: scale(1.2)translateY(-10px);
}

.btn-groups {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  margin: 3rem 0;
  background: var(--main-color);
  color: black;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: .4s ease-in-out;
  font-size: 1.5rem;
  box-shadow: 0 0 15px var(--main-color);
}

.btn:hover {
  box-shadow: 0 0 20px var(--main-color),
    0 0 50px var(--main-color),
    0 0 100px var(--main-color);
}

.btn-groups a:nth-of-type(2) {
  background-color: black;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.btn-groups a:nth-of-type(2):hover {
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
  color: black;
}


/* End Home */
/* Start About  */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  background-color: var(--second-bg-color);
}

.about-img img {
  transition: .4s ease-in-out;
  width: 22vw;

  border-radius: 2%;
  box-shadow: 0 0 15px var(--main-color);
}

.about-content h2 {
  font-size: 9rem;
  text-align: left;
}

.about-content p {
  font-size: 1.8rem;
  line-height: 3.5rem;
  color: #777;
  text-align: left;
  max-width: 100%;
}

.about-content .btn {
  margin: 3rem 0;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

::-webkit-scrollbar-truck {
  background-color: var(--bg-color);
}

/* End About  */
/* Start Services */
.heading {
  font-size: 9rem;
  text-align: center;
  margin: 6rem 0;
  font-weight: 900;

}

.services {
  background-color: var(--bg-color);
  color: black;
}

.services h2 {
  color: var(--text-color);
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  align-items: center;
  gap: 2.5rem;
  margin: 12rem 0;

}

.service-container .service-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--second-bg-color);
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.5s;
  height: 500px;
}

.service-container .service-box:hover {
  box-shadow: 0 0 25px var(--main-color),
    0 0 50px var(--main-color),
    0 0 100px var(--main-color);
  transform: translateY(-10px);
}

.service-box .service-info {
  padding: 2rem;
}

.service-box .service-info i {
  font-size: 12rem;
  margin-bottom: 25px;
}

.service-box .service-info h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.service-box .service-info h3 {
  font-size: 2rem;
  color: var(--text-color);
}

/* End Services */


/* Start Projects */


.projects {
  background-color: var(--second-bg-color);

}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  align-items: center;
  gap: 2.5rem;
  margin: 12rem 0;
}

.project-box {
  text-align: center;
  background-color: var(--bg-color);
  gap: 2rem;
  padding: 3rem 2rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 5px var(--main-color);
  transition: .4s ease;
}

.project-box .project-info {
  padding: 1rem;

}

.project-box .project-info h2 {
  font-size: 5.5rem;
  margin: 3rem 0;
}

.project-box .project-info h4 {
  line-height: 1.9;
  max-width: 550px;
  font-size: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 1.4rem;
}

.project-info .tech {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.project-info .tech span {
  padding: 1rem 3rem;
  border: 1px solid var(--main-color);
  color: var(--text-color);
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 30px;
}

.project-box .view {
  max-width: 600px;
}

.project-box img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.project-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: var(--text-color);
}

.project-btns .btn {
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--text-color);
}

.project-btns .btn:first-of-type {
  border: 1px solid var(--main-color);
  background-color: transparent;
}

/* End Projects */
/* Start Conatct */
.contact {
  background-color: var(--bg-color);
}

.contact form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 5rem 0;
  text-align: center;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 2.5rem;
  color: var(--text-color);
  font-size: 1.8rem;
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
  border-radius: 2rem;
  margin: 1.5em 0;
  resize: none;
}

footer {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: var(--second-bg-color);
}

.footer {

  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer ul {
  display: flex;
  text-decoration: none;
  list-style: none;
}

.footer ul li a {
  margin-left: 1.5rem;
  padding: 1rem 3rem;
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
  color: var(--text-color);
  font-weight: bold;
  border-radius: 1rem;
  transition: .4s ease;
}

.footer ul li:hover a {
  background-color: var(--main-color);
  border: none;
}

.footer ul li a.acti {
  background-color: var(--main-color);
  border: none;
}

.footer .text {
  text-align: center;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 1.5px;
  text-wrap: nowrap;
}

/* End Conatct */