@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

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

body {
  overflow-x: hidden !important;
}

html {
  overflow-x: hidden !important;
}


:root {
  --bgOrange: #e84949;
}

#wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.logo {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: baseline;
}

.lgtxt {
  margin-left: -1.2rem;
  font-size: 28px;
  font-weight: 900;
}

.container div a {
  text-decoration: none;
  color: black;
}

.lg {
  width: 50px;
  position: relative;
  z-index: -1;
  right: 7%;
}

.links div {
  font-size: 20px;
  font-weight: 500;
}

.links {
  display: flex;
  gap: 2rem;
  padding: 0 4em;
}

.links div:hover {
  transition: 0.8s;
  font-weight: bold;
}

.hero {
  position: relative;
  display: block;
  margin: 0 auto;
  justify-content: center;
  align-items: center;

  gap: 5rem;
  margin: 4rem auto;
  padding: 0 1rem;
  padding-bottom: 8rem;
}

.heroleft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.hero_heading {
  text-shadow: #1f1f1f 0px 0px 2px ;
  font-size: 35px;
  color: #343d68;
  font-weight: 500;
}

.sub_heading {
  text-shadow: #1f1f1f 0px 0px 1px ;
  font-size: 45px;
  line-height: 45px;
}

.role {
  color: #4e45d5;
  font-weight: 800;
}

.btn-pink {
  background-color: var(--bgOrange);
  width: fit-content;
  color: white;
  padding: 0.8rem 2.3rem;
  box-shadow: 5px 5px 7px 0px #0000003f;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 500;
  border: solid 3px transparent;
  position: relative;
  z-index: 1;
}

.btn-pink::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.8s;
}

.btn-pink:hover::before {
  transform: scaleX(1);
}

.btn-pink:hover {
  border: solid 3px var(-bgOrange-);
  color: black;
}

.faded-text {
  text-shadow: #1f1f1f 0px 1px 0px ;
  position: absolute;
  user-select: none;
  font-size: 7em;
  color: rgb(231, 231, 231);

  bottom: -16%;
  left: -1%;
  font-weight: bold;
  transition: all 3s;
}

.hero_right {
  position: relative;
}

.absolute {
  position: absolute;
}

.user-image {
  padding: 2.5rem;
  z-index: -1;
  animation: user;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transition-timing-function: linear;
  animation-direction: alternate;
}

@keyframes user {
  0% {
    transform: scale(1.0);
  }


  100% {
    transform: scale(1.1);
    filter: grayscale(1);
    box-shadow: 3px 3px 10px black;
  }
}

.icon-dots {
  z-index: 9;
  bottom: -1rem;
  right: 0;
  animation-name: dots;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 3s;
}


@keyframes dots {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-18px);

  }
}

.icon-cube {
  z-index: 9;
  top: -0.8em;
  right: 1em;
  animation-name: cube;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
}

@keyframes cube {
  0% {}

  100% {
    transform: rotateY(180deg) translateY(-12px);
  }

}

.icon-circle {
  z-index: -1;
  right: 0;
  bottom: 0;
  animation-name: circle;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-direction: alternate;
}

@keyframes circle {
  100% {
    left: 5%;
    bottom: 10%;
  }
}

.icon-zigzag {
  z-index: -1;
  top: 50.5em;
  right: -0.3em;
  animation-name: zig;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes zig {
  100% {
    transform: translateX(50%);
  }
}

.icon-plus {
  z-index: 9;
  top: -0.8rem;
  left: 50%;
  animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus {
  50% {
    top: 3%;
    left: 48%
  }
}

.project-section {
  background-color: rgb(231, 231, 231);
  margin-top: 4rem;
}

.page-header {
  color: var(--bgOrange);
  font-size: 90px;
  text-align: center;
  padding-top: 30px;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-card {
  width: 90%;
  height: 550px;
  background-size: cover;
  position: relative;
  box-shadow: 0px 0px 40px #1f1f1f;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f1f1f9a;
  z-index: 0;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.4s;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(45deg, #343d68, #343d68be, #343d687c);
  z-index: 1;
}

.project-card:hover::before {
  transform: scaleX(1);
}

#project1 {
  background-image: url(./images/projects/Project1.png);
}

#project2 {
  margin-left: 120px;
  background-image: url(./images/projects/Project2.png);
}

#project3 {
  background-image: url(./images/projects/Project3.png);
}

#project4 {
  margin-left: 120px;
  background-image: url(./images/projects/Project4.png);
}

.project-number {
  position: absolute;
  font-size: 200px;
  font-weight: 600;
  color: white;
  z-index: 10;
  /* display:none; */
  opacity: 1;
}

.project-card:hover .project-number {
  /* display:block; */
  opacity: 0;
}

.project-number-right {
  right: -40px;
  top: -45px;
}

.project-number-left {
  left: -40px;
  top: -45px;
}

.project-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 2em;
  bottom: 20%;
  z-index: 5;
  gap: 1em;
  transition: all 0.4s;
}

.project-content-left {
  left: 10%;
}

.project-content-right {
  right: 10%;
}

.project-skills-container {
  width: 60%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

}

.project-skill {
  width: 40px;
}

.project-heading {
  font-size: 50px;
  font-weight: bold;
  line-height: 3rem;
}

.project-subHeading {
  width: 70%;
  font-size: 16px;
  font-style: italic;
}


.btn-grp {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.btn-project:hover {
  border: none;
}

.icon {
  cursor: pointer;
  color: white;
  font-size: 35px;
  transition: all 0.4s;
}

.icon:hover {
  color: var(--bgOrange);
}

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

@media (max-width:1300px) {
  .page-header {
    padding-top: 30px;
    color: var(--bgOrange);
    text-align: center;
    font-size: 40px;
  }

  .project-container {
    padding: 5px;
    margin: 10px;
    gap: 60px;
  }

  .project-card {
    width: 100%;
    height: 300px;
  }

  .project-card {
    background-size: cover;
    background-position: center;
  }

  .project-content {
    scale: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  .project-content-left {
    left: 0;
  }

  .project-heading {
    font-size: 40px;
    width: 100%;
  }

  .project-sub-heading {
    width: 100%;
  }

  #project2 {
    margin-left: 0;
  }

  #project4 {
    margin-left: 0;
  }

  .project-skill-container {
    width: 100%;
  }

  .project-skill {
    width: 35px;
  }

  .project-card:hover .project-number {
    display: none;
  }

  .project-card:hover .project-content {
    scale: 0.55;
  }
}

.skill-container {
  position: relative;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem;
  margin: 10rem auto;
  gap: 30px;
}

.skills-logo {
  width: 90px;
  transition: all 0.5s;
}

.skills-logo:hover {
  transform: scale(1.2);
}

.txt {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.skill-icon {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  position: relative;
  gap: 2rem;
  justify-content: center;
}

.blob-style {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -5;
  transform: translate(-50%, -50%);
  animation: blobAnimate 3s linear infinite;
}

@keyframes blobAnimate {
  50% {
    top: 54%;
    left: 46%;
  }
}

.heading {
  text-shadow: #1f1f1f 0px 0px 3px ;
  font-size: 50px;
  margin-bottom: 30px;
  font-style: bold;
  color: var(--bgOrange);
  line-height: 50px;
}

.subhead {
  margin-top: 1rem;
  width: 85%;
  text-align: justify;
}

.subhead p {
  margin: 15px 0;
}

.caps {
  font-size: 90px;
}

.sk-txt {
  height: 30px;
  z-index: 0;
  position: relative;
  font-size: 100px;
  font-style: bold;
  font-weight: 700;
  text-shadow: #1f1f1f 0px 0px 10px ;
  color: rgb(231, 231, 231);
  top: -46%;
  right: -35%;
  user-select: none;
}




/* feature section */
#features {
  padding: 50px 50px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.feature-icon {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.feature-description {
  text-align: center;
}

#testimonials {
  background-color: #f9f9f9;
  padding: 50px 50px;
}

.testimonial {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.testimonial-content {
  margin-left: 20px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: bold;
}




/* footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  display: inline;
}

.footer-links ul li:not(:last-child) {
  margin-right: 20px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  margin: 5px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-social ul li:not(:last-child) {
  margin-right: 10px;
}

.footer-social ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  font-size: 14px;
}


/* end section */
#cta {
  background-color: #f5f5f5;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 30px;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:last-child {
  margin-right: 0;
}

.cta-button:hover {
  background-color: #555;
}

.cta-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Add custom animation styles for the cta-animation element */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

ul li {
  margin-right: 20px;
  position: relative;
}

ul li a {
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  font-weight: bold;
}

ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform: scaleX(0);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

ul li a:hover {
  color: #555;
}

ul li a:hover::after {
  transform: scaleX(1);
  background-color: #555;
}





/* media queries */
/* Mobile devices */
@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    max-width: 250px;
  }

  .logo {
    margin-bottom: 20px;
  }

  .container {
    max-width: 100vw;
  }

  .sub_heading {
    height: 170px;
  }

  .cta {
    padding: 20px
  }


  @media (max-width: 767px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }

    .footer-info {
      margin-top: 20px;
    }

    .footer-links {
      margin-bottom: 20px;
    }

    .footer-social {
      text-align: center;
    }

    .footer-legal {
      text-align: center;
    }
  }

}



/* stats */
.stats {
  background-color: #d02b2b;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.section-title {
  text-shadow: #1f1f1f 0px 0px 10px ;
  font-size: 50px;
  margin-top: 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.stat {
  margin: 0 30px;
}

.stat-value {
  text-shadow: #b4b4b4 0px 0px 1px ;
  font-size: 40px;
  font-weight: bold;
  color: #333;
}

.stat-label {
  text-shadow: #1f1f1f 0px 0px 2px ;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 767px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 30px;
  }
  .sk-txt{
    top: -59%;
    font-size: 40px;
  }
  .faded-text{
    font-size: 80px;
  }
  
  .stat {
    margin-bottom: 20px;
  }
}
