*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}
:root {
  color-scheme: light dark;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: light-dark(#ecf0f3, #212429);
  min-width: 320px;
  overflow-x: hidden;
}
.navbar {
  position: sticky;
  top: 20px;
  right: 0;
  left: 0;
  height: 70px;
  background-color: light-dark(#ecf0f3a1, #212429a0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 20px;
  gap: 15px;
  z-index: 100;
  backdrop-filter: blur(14px);
  border-radius: 20px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar .logo h2 {
  font-weight: 500;
  color: light-dark(#1a1a1a, white);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.navbar .logo span {
  color: #ff014f;
}
.navbar .logo img {
  height: clamp(35px, 6vw, 50px);
}
.navbar .links ul {
  display: flex;
  list-style: none;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}

.navbar .links ul li a {
  text-decoration: none;
  color: light-dark(#1a1a1a, white);
  font-size: clamp(12px, 1.5vw, 14px);
}
.navbar .links ul li {
  position: relative;
}
.navbar .links ul li::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  width: 0;
  height: 2px;
  background-color: #ff014f;

  transition: 0.3s;
}

.navbar .links ul li:hover::before {
  width: 100%;
}
.navbar .links ul li.active::before {
  width: 100%;
}
.navbar .links ul li.active a {
  color: #ff014f;
}

.navbar .button a {
  padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
  background-color: #ff014f;
  box-shadow: 0 10px 20px #ff014d79;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: clamp(12px, 1.5vw, 14px);
  white-space: nowrap;
}
.bars {
  display: none;
}
.bars svg {
  cursor: pointer;
  height: 35px;
  width: 35px;
  transition: 0.3s;
  color: #ff014f;
}
.main-contianer {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 20px;
  width: 100%;
}
.hero {
  margin-top: 20px;
  background-color: transparent;
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  gap: 40px;
}

.hero-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.hero-content .welcome {
  color: #666;
  font-size: clamp(12px, 1.5vw, 14px);
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: light-dark(#1a1a1a, white);
  line-height: clamp(2rem, 4vw, 3.5rem);
}

.hero-content h1 span {
  color: #ff014f;
}

.hero-content p {
  color: light-dark(#4a4a4a, #adb5bd);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}
.hero-content .profession {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: light-dark(#1a1a1a, white);
  margin-top: 0;
  line-height: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero-content .links {
  display: flex;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  font-size: clamp(22px, 1.5vw, 24px);
}

.social-links-div {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.social-link {
  padding: 10px;
  height: 50px;
  width: 50px;
  background-color: light-dark(#f5f5f5, #2a2e33);
  border-radius: 10px;
  box-shadow: 0 0px 10px
    light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: light-dark(#1a1a1a, white);
}
.social-link:hover {
  transform: translateY(-3px);
}

.skills-div {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.skill {
  height: 50px;
  width: 50px;
  background-color: light-dark(#f5f5f5, #2a2e33);
  box-shadow: 0 0px 10px
    light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  transition: transform 0.3s;
}
.skill:hover {
  transform: translateY(-3px);
}

.hero-image {
  width: 40%;
  min-width: 300px;
  margin-top: 30px;
}
.hero-image .img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  height: 450px;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .img img {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.whoiam {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 100px 0;
}
.whoiam .image {
  width: 50%;
  max-width: 500px;
}
.whoiam .image div {
  width: 100%;
  height: 600px;
  background: light-dark(#f5f5f5, #2a2e33);
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  position: relative;
}
.whoiam .content {
  width: 50%;
}
.question {
  font-weight: 400;
  padding-bottom: 30px;
  color: light-dark(#1a1a1a, white);
}

.whoiam .content p {
  color: light-dark(#4a4a4a, #adb5bd);
  padding-bottom: 30px;
  line-height: 1.6;
}
.download {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #ff014f;
  box-shadow: 0 10px 20px #ff014d79;
  color: white;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  transition: transform 0.3s;
}
.download:hover {
  transform: translateY(-3px);
}
.whoiam .image div img {
  width: 70%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.whatido {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  border-bottom: 2px solid light-dark(#ddd, #333);
  border-top: 2px solid light-dark(#ddd, #333);
}
.whatido .title {
  font-size: 1.3rem;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  color: light-dark(#1a1a1a, white);
}
.whatido .title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff014f;
  border-radius: 20px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.whatido .paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.whatido .cards {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.whatido .cards .card {
  width: 100%;
  max-width: 350px;
  background: light-dark(
    linear-gradient(130deg, #ecf0f3, #ddd),
    linear-gradient(130deg, #13161d, #4b4e51)
  );
  min-height: 400px;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05));
  transition: transform 0.3s;
}
.whatido .cards .card:hover {
  transform: translateY(-10px);
}
.whatido .cards .card .card-logo {
  color: #1a1a1a;
  height: 70px;
  width: 70px;
  font-size: 2rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.whatido .cards .card .card-logo::before {
  content: "";
  height: 2px;
  width: 60px;
  position: absolute;
  bottom: -20px;
  background-color: #ff014d97;
}
.whatido .cards .card .card-title {
  font-size: 1.4rem;
  padding-bottom: 10px;
  font-weight: 400;
  color: light-dark(#1a1a1a, white);
}
.whatido .cards .card p {
  padding-top: 20px;
  font-size: 1.02rem;
  color: light-dark(#4a4a4a, #adb5bd);
  line-height: 1.5rem;
}
.experience {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 2px solid light-dark(#ddd, #333);
  border-top: 2px solid light-dark(#ddd, #333);
}
.experience .card {
  width: 100%;
  max-width: 400px;
  min-height: 100px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: light-dark(#f5f5f5, #2a2e33);
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.07), rgba(255, 255, 255, 0.07));

  text-align: center;
}
.experience .card .icon {
  font-size: 2rem;
  color: light-dark(#1a1a1a, white);
}
.experience .card .content {
  font-size: 1.2rem;
  font-weight: 400;
  color: light-dark(#1a1a1a, white);
  font-weight: 500;
}
.experience .card .amount {
  color: #ff014f;
}

.my-portfolio {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  border-bottom: 2px solid light-dark(#ddd, #333);
  border-top: 2px solid light-dark(#ddd, #333);
}
.my-portfolio .title {
  font-size: 1.3rem;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  color: light-dark(#1a1a1a, white);
}
.my-portfolio .title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff014f;
  border-radius: 20px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.my-portfolio .paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.my-portfolio .cards {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.my-portfolio .cards .card {
  width: 320px;
  background: light-dark(
    linear-gradient(130deg, #ecf0f3, #ddd),
    linear-gradient(130deg, #13161d, #4b4e51)
  );
  min-height: 400px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05));
}
.my-portfolio .cards .card .portfolio-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.my-portfolio .cards .card .portfolio-img .overflow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0000005b;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}
.my-portfolio .cards .card .portfolio-img .overflow button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.my-portfolio .cards .card .portfolio-img:hover .overflow {
  opacity: 1;
}
.my-portfolio .cards .card .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-portfolio .cards .card .info {
  width: 100%;
  text-align: left;
  padding: 15px 0;
  height: 100%;
}
.my-portfolio .cards .card .info .action-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-portfolio .cards .card .info .action-buttons p {
  color: light-dark(#1a1a1a, white);
  text-decoration: none;
  transition: 0.3s;
  padding: 8px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #ff014f;
  color: white;
}
.my-portfolio .cards .card .info .action-buttons a {
  text-decoration: none;
  color: light-dark(#1a1a1a, white);
}

.my-portfolio .cards .card .info h3 {
  font-size: 1.4rem;
  padding-bottom: 10px;
  font-weight: 400;
  color: light-dark(#1a1a1a, white);
  text-align: left;
  padding-top: 10px;
  text-transform: capitalize;
}

.testimonials {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
.testimonials .title {
  font-size: 1.3rem;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  color: light-dark(#1a1a1a, white);
}
.testimonials .title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff014f;
  border-radius: 20px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials .paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.testimonials .cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.testimonials .cards .card {
  width: 320px;
  background: light-dark(
    linear-gradient(130deg, #ecf0f3, #ddd),
    linear-gradient(130deg, #13161d, #4b4e51)
  );
  min-height: 400px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px
    light-dark(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05));
}

.testimonials .cards .card .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .cards .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .cards .card .name {
  font-size: 1.4rem;
  padding-bottom: 10px;
  font-weight: 400;
  color: light-dark(#1a1a1a, white);
  padding-top: 20px;
  padding-bottom: 10px;
}
.testimonials .cards .card .paragraph {
  font-size: 1rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
  padding-bottom: 20px;
  line-height: 1.5rem;
}
.contact {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
.contact .title {
  font-size: 1.3rem;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  color: light-dark(#1a1a1a, white);
}
.contact .title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff014f;
  border-radius: 20px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.contact .paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.contact form {
  margin-bottom: 10px;
  width: 100%;
  margin-top: 20px;
}

.user-info {
  display: flex;
  width: 100%;
  gap: 20px;
}
.input-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-input {
  color: light-dark(#1a1a1a, #fff);
  font-size: 1rem;
  font-weight: 400;
  padding: 13px 20px;
  border: 1px solid gray;
  width: 100%;
  border-radius: 14px;
  outline: none;
  transition: 0.2s;
  background-color: transparent;
  box-shadow: 0 4px 20px
      light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1)),
    0 2px 10px light-dark(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05));
}
.textarea {
  width: 50%;
}

.input-box textarea {
  width: 100%;
  height: 270px;
  height: 100%;
}
.form-input::placeholder {
  font-weight: 500;
}

.form-input:focus,
.form-input:valid {
  border-color: gray;
}

.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label {
  padding: 0 10px;
  transform: translateX(10px) translateY(-10px);
  background: light-dark(#ecf0f3, #212429);
  font-size: 14px;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.input-box {
  position: relative;
}

.form-label {
  color: #747474;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px 20px;
  pointer-events: none;
  transition: 0.2s;
}

textarea.form-input {
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer {
  display: none;
}

.form-input:focus:invalid,
.form-input:focus:invalid ~ .form-label {
  border-color: #ff014f;
}

.form-btn {
  background-color: transparent;

  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  gap: 10px;
  border: 2px solid #ff014f;
  margin: 20px 0;
  color: #ff014f;
  font-size: 1.1rem;
  transition: 0.3s;
  font-weight: 500;
}

.form-btn svg {
  font-size: 1.3rem;
  color: #ff014f;
  margin-right: 10px;
  transition: 0.3s;
}
.form-btn:hover {
  background-color: #ff014f;
  color: white;
}

.form-btn:hover svg {
  color: white;
}
.my-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  padding: 50px 0;
  border-bottom: 2px solid light-dark(#ddd, #333);
  border-top: 2px solid light-dark(#ddd, #333);
}
.my-info .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.my-info .card svg {
  font-size: 2rem;
  color: #ff014f;
}
.my-info .card .content {
  font-size: 1.2rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.my-info .card .paragraph {
  font-size: 1rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}
.footer {
  width: 100%;
  text-align: center;
  padding: 0 0 50px 0;
}
.footer .paragraph {
  font-size: 1rem;
  font-weight: 400;
  color: light-dark(#4a4a4a, #adb5bd);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reflectLight {
  0% {
    left: -120%;
  }
  50% {
    left: 130%;
  }
  100% {
    left: 150%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 40px;
  }

  .hero-content {
    width: 100%;
    align-items: center;
  }

  .hero-content .links {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 500px;
    margin: 80px auto;
  }

  .whoiam {
    padding: 50px 0;
    gap: 30px;
    flex-direction: column;
  }

  .whoiam .image {
    display: none;
  }

  .whoiam .content {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    background-color: light-dark(
      rgba(236, 240, 243, 0.642),
      rgba(33, 36, 41, 0.676)
    );
    width: calc(100% - 20px);
    padding: 10px;
  }

  .navbar .links {
    width: 100%;
  }

  .navbar .links ul {
    width: 90%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: light-dark(#ecf0f3, #212429bf);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    z-index: 100;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    gap: 15px;
    box-shadow: 0 10px 30px light-dark(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  }

  .navbar .links ul li {
    width: 90%;
    text-align: center;
    background-color: light-dark(#f5f5f5, #2a2e33);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .navbar .links ul li:hover {
    background-color: #ff014f;
    transform: translateY(-3px);
  }

  .navbar .links ul li:hover a {
    color: white;
  }

  .navbar .links ul.active {
    height: auto;
    min-height: 350px;
    padding: 20px;
  }

  .navbar .button a {
    display: none;
  }

  .bars {
    display: block;
  }

  .bars.active svg {
    transform: rotate(180deg);
    color: #ff014f;
  }

  .experience {
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 20px;
  }

  .experience .card {
    padding: 15px;
    max-width: 100%;
  }

  .whatido .cards {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 10px;
  }

  .whatido .cards .card {
    width: 100%;
  }
  .user-info {
    flex-direction: column;
  }
  .input-wrapper {
    width: 100%;
  }
  .textarea {
    width: 100%;
    height: 200px;
  }
  .my-info {
    flex-direction: column;
    gap: 50px;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .experience .card {
    flex-direction: column;
    gap: 10px;
  }
}
