* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth !important;
}
body {
  font-family: "Inter", sans-serif;
  font-family: "Poppins", sans-serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
  transition: all ease 0.5s;
}
.links a::after,
footer a::after {
  content: "";
  width: 0px;
  height: 2.5px;
  display: block;
  background: rgb(83, 94, 189);
  transition: 0.5s;
}
.links a:hover::after,
footer a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
  background-color: #000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  background-color: #fff;
  top: 0;
  z-index: 30;
}
header {
  padding: 20px;
  height: 100vh;
}
.links,
.nlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.logo img {
  height: 75px;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.col {
  padding: 20px;
  flex: 1;
}
.col > h1 {
  font-size: 64px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}
.col > p {
  font-size: 20px;
  line-height: 1.5;
}
.imagehero {
  width: 100%;
  border-radius: 20px;
}
.col > .gitbtn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: blue;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow ease 0.5s;
}
.col > .gitbtn:hover {
  box-shadow: 0.5px 5px 2px #000;
}
/*  */

#services {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  height: 100vh;
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 20px;
}
#services > h2 {
  text-align: center;
}
#services a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: blue;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow ease 0.5s;
}
#services a:hover {
  box-shadow: 0.5px 5px 2px #000;
}
.card {
  max-width: 300px;
  /* box-shadow: 0.5px 5px 2px black; */
  overflow: hidden;
}
.card img {
  overflow: hidden;
  width: 100%;
  height: 300px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.grid {
  overflow: hidden;
  margin-top: 15px;
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 30px;
  grid-template-columns: auto auto auto;
}
.g-item {
  overflow: hidden;
}
.imgC {
  overflow: hidden;
}
.imgC:hover .imgcimg {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/*  */

#about {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 92, 0.5), rgba(0, 0, 92, 0.5)),
    url("images/abbg.jpeg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 20px;
  padding-right: 20px;
}
.abdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 900px;
}
.abdiv > h3 {
  font-size: 64px;
}
.abdiv p {
  font-size: 24px;
}
.abdiv a {
  color: white;
  background-color: black;
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 10px;
}
.abdiv a:hover {
  box-shadow: 0.5px 5px 15px #fffbfb;
}
/*  */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  background: #000;
  color: white;
  padding: 20px;
}

.navLinks {
  grid-column-start: 1;
  grid-column-end: 4;
}
.item {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer a {
  color: white !important;
}
/*  */
@media (max-width: 1024px) {
  header,
  #services,
  #about {
    height: fit-content;
    text-align: center;
  }
  .abdiv > p {
    text-align: center;
  }
  .hero {
    flex-direction: column-reverse;
  }
  .grid {
    grid-template-columns: auto auto;
  }
  footer {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 806px) {
  .abdiv > h3 {
    font-size: 32px !important;
  }
  .abdiv > p {
    font-size: 16px;
  }
  .col > h1 {
    font-size: 32px !important;
    line-height: 1;
  }
  .col > h2 {
    font-size: 16px !important;
    line-height: 1;
  }
  .grid {
    grid-template-columns: auto;
  }
  .g-item:nth-child(4),
  .g-item:nth-child(5) {
    display: none !important;
  }
  .hamburger {
    display: block;
    z-index: 20;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .links {
    position: fixed;
    z-index: 10;
    left: -100%;
    top: 0px;
    height: 100vh;
    gap: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .links > li {
    margin: 16px 0;
  }
  .links.active {
    left: 0;
  }
}
