*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --mainColor: #00acee;
  --secoundColor: #0a0a0a;
}
body {
  background-color: #212529;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
/* start nav style */
.hoverNav {
  transition: all 0.3s ease;
}
.hoverNav:hover {
  text-shadow: 0 0 5px var(--mainColor);
}
/* end nav style */

/* start hero style */
#Home {
  background-color: var(--secoundColor);
}
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.imgHero {
  max-width: 350px;
  max-height: 350px;
  transition: all 0.3s ease;
}
.imgHero img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.imgHero img:hover {
  filter: drop-shadow(0px 0px 12px var(--mainColor));
}
.imgHero:hover {
  transform: scale(1.1);
}

.captionHero h1 {
  font-weight: 700;
  font-size: 3rem;
  padding-right: 80px;
  line-height: 1.5;
}

.captionHero h1 span {
  color: var(--mainColor);
}
.captionHero p {
  font-size: 1.5rem;
}
/* end hero style */
/* Start About style */

.sectionTitle {
  color: var(--mainColor);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.sectionTitle:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 12px var(--mainColor));
  color: #fff;
}
#About p {
  font-size: 1.2rem;
}
/* end About style */
.cardd,
.projects,
.edu {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}

.cardd.loaded,
.projects.loaded,
.edu.loaded {
  opacity: 1;
  transform: translateY(0);
}

.cardd {
  height: 200px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #0d1117, #1a1f25);
}
.cardd:hover {
  box-shadow: 0px 0px 12px var(--mainColor);
  transform: translateY(0) scale(1.1);
  position: relative; 
  z-index: 1;
}
.cardd:hover svg,
.cardd:hover div {
  color: var(--mainColor);
  fill: var(--mainColor);
}
.cardd svg,
.cardd div {
  transition: all 0.3s ease;
  font-size: 4rem;
  width: 4rem;
  fill: #ffffff;
  color: #ffffff;
  padding: 35px 0 25px 0;
}
/* start Skills style */
#Skills {
  background-color: var(--secoundColor);
}

/* eduction style */
.edu {
  height: 250px !important;
}

/* Projects */
#Projects {
  background-color: var(--secoundColor);
}
#Projects p {
  font-size: 1.5rem;
}
#Projects .projects {
  height: 350px;
  padding: 20px;
  height: 100%;
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(145deg, #0d1117, #1a1f25);
  transition: all 0.3s ease;
}
#Projects a {
  color: #fff;
  padding: 2rem;
}
#Projects a svg {
  transition: all 0.3s ease;
}

#Projects a:hover svg {
  color: var(--mainColor);
}
#Projects .projects:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--mainColor);
}

#Projects h5 {
  font-weight: bolder;
  padding: 10px 0;
}
/* cv */
#CV iframe {
  min-width: 90%;
  min-height: 90vh;
}
#CV a {
  background-color: var(--mainColor);
  transition: all 0.3s ease;
  margin: 10px 0;
  color: #fff;
}
#CV a:hover {
  box-shadow: 0 0 20px var(--mainColor);
}
#contact {
  background-color: var(--secoundColor);
}
/********/
