@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: black !important;
}
.sticky {
  background-color: black !important;
}
.sticky-logo a {
  color: #fff !important;
  transition: 0.3s;
}
.sticky-logo a:hover {
  color: #00abf0 !important;
}
nav {
  background-color: #081b29 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  height: 80px;
  background-color: #081b29 !important;
  transition: 0.3s;
}

.sticky-button {
  background-color: #fff !important;
}
nav button {
  background-color: #00abf0 !important;
  border-color: #00abf0 !important;
}
.logo a {
  text-decoration: none;
  color: #00abf0;
  font-weight: 700;
  font-size: 23px;
}

nav ul li {
  padding-left: 20px;
  font-weight: 530;
  font-size: 1.1em;
  
}

nav ul .active,
nav ul li:hover a {
  color: #00abf0 !important;
  
}
nav ul li a {
  color: #fff !important;
  font-weight: bold;
}
@media (max-width: 991px) {
  nav ul li {
    background-color: #00abf0;
    margin: 5px 0;
  }
  nav ul .active {
    color: #fff !important;
  }
  nav ul li:hover a {
    color: #000 !important;
  }
}
section {
  margin: 50px 0;
}
.main {
  padding-top: 120px;
}
.main > div {
  padding-top: 80px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 575px) {
  .main > div {
    flex-direction: column;
  }
}

.main h2 {
  font-size: 1.8rem;
  color: #fff;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white !important;
}
.main .social-icons {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.main .social-icons a {
  background-color: transparent;
  transition: 0.3s;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #00abf0;
  cursor: pointer;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.social-icons a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #00abf0;
  transition: 0.3s;
  z-index: -1;
}
.social-icons a:hover::after {
  width: 100%;
}
.social-icons a i {
  color: #00abf0 !important;
  font-size: 1.3rem;
  transition: 0.3s;
  z-index: 1;
}
.social-icons a:hover i {
  color: #fff !important;
}
.title {
  color: white;
  display: flex;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  position: relative;
  width: fit-content;
  margin: 100px auto;
}
/* .title::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #00abf0;
  width: 100%;
  top: 100%;
} */
@media (max-width: 767px) {
  .title {
    font-size: 30px;
  }
  .main h2,
  .main h3 {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
.about div {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 767px) {
  .about div {
    flex-direction: column;
    margin: 0 auto;
  }
}
.about img,
.main img {
  border-radius: 10px;
}
.about h3 {
  font-size: 1.1rem;
  line-height: 1.7rem;
  font-weight: normal;
  color: #fff !important;
  margin-left: 30px;

}
.about div {
  margin-top: 80px;
}

.mycv {
  display: inline-block; 
  width: auto; 
  padding: 8px 16px; 
  font-size: 20px; 
  text-decoration: none; 
  color: white; 
  /* background-color: #3a6cf4;  */
  border: 2px solid #3a6cf4; 
  border-radius: 8px; 
  text-align: center;
  font-weight: bold;
  transition: 0.3s; 
  margin-bottom: 15px;
}

.mycv:hover {
  background-color: white; 
  color: white; 
}
.skills .skill {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 12%;
  margin: 20px 30px;
}
.skills .skill h4 {
  color: #fff;
}
.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card {
  background-color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 15px;
  min-height: 14em;
  margin: 13px;
  transition: 0.3s;
  overflow: hidden;
}

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

.project-image img {
  width: 100%;
}

.project-card a {
  text-decoration: none;
}
.project-card a i {
  color: #00abf0;
}

.project-title {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 700;
}

.project-title span {
  display: inline-block;
  margin: 5px;
}

.project-card a {
  color: #3a6cf4;
  margin: 5px;
}

.contact-card {
  background-color: #fff;
  width: 18em;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
  padding: 25px;
  margin: 25px;
  transition: 0.5s;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.contact-card::after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #00abf0;
  border-radius: 10px;
  transition: 0.3s;
  z-index: -1;
}
.contact-card:hover::after {
  width: 100%;
}
.content .contact-card .contact-icon {
  color: #00abf0;
  font-size: 4em;
  text-align: center;
}
.content .contact-card:hover .contact-icon,
.content .contact-card:hover h3 {
  color: #fff !important;
}

.contact-card h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1.2em;
}

.contact-card .project-info {
  text-align: center;
  font-weight: 550;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000016;
  color: #fff;
  padding: 1.5em;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .social-icons a i {
  font-size: 1.5rem;
}

.footer .social-icons a:hover {
  color: #00abf0;
}

@media (max-width: 575px) {
  .footer-title {
    font-size: 0.9rem;
  }
  .footer .social-icons a i {
    font-size: 1.1rem;
  }
  .main,
  .about,
  .skill,
  .project-card {
    height: auto;
  }
}

@media (max-width: 767px) {
  .skills .skill {
    width: 17%;
  }
}
