@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&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");

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #fff3ff;
}

::-webkit-scrollbar-thumb {
  background: #0b132b;
  border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #fff3ff;
  color: #2b2d2f;
  overflow-x: hidden;
}

header.hide {
  transform: translateY(-100%);
}

header img {
  cursor: pointer;
}

.hamburger {
  cursor: pointer;
  display: none;
}

.hamburger div {
  width: 30px;
  height: 3px;
  margin: 5px 0;
}

@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  header .navigation {
    position: absolute;
    width: 100%;
    height: calc(100vh - 70px);
    left: -100%;
    top: 70px;
    background: #fff3ff;
    transition: 0.5s;
  }

  header .navigation .menu-list {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* display: block; */
    gap: 5rem;
    transition: 0.5s;
  }

  header #nav_check:checked ~ .navigation {
    left: 0;
  }

  header #nav_check:checked ~ .navigation .menu-list .list-item {
    opacity: 1;
    transform: translateX(0px);
  }

  .navigation .menu-list .list-item:nth-child(1) {
    transition-delay: 0.2s;
  }

  .navigation .menu-list .list-item:nth-child(2) {
    transition-delay: 0.4s;
  }

  .navigation .menu-list .list-item:nth-child(3) {
    transition-delay: 0.6s;
  }

  .navigation .menu-list .list-item:nth-child(4) {
    transition-delay: 0.8s;
  }

  .navigation .menu-list .list-item:nth-child(5) {
    transition-delay: 1s;
  }

  .navigation .menu-list .list-item:nth-child(6) {
    transition-delay: 1.2s;
  }

  .navigation .menu-list .list-item:nth-child(7) {
    transition-delay: 1.4s;
  }

  @keyframes hover {
    50% {
      transform: translateX(20px);
    }
  }

  .navigation .menu-list .list-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .navigation .menu-list .list-item:hover {
    animation: hover 0.5s;
  }
}

@keyframes word {
  0% {
    transform: translateY(100%);
  }

  15% {
    transform: translateY(-10%);
    animation-timing-function: ease-out;
  }

  20% {
    transform: translateY(0);
  }

  40%,
  100% {
    transform: translateY(-110%);
  }
}

.word-container span {
  color: #fff3ff;
  text-shadow: 1px 1px #0b132b;
}

.animate-word {
  animation: word 10s infinite;
}

.animate-word-delay-1 {
  animation: word 10s infinite;
  animation-delay: -2s;
  font-size: 20px !important;
}

@media only screen and (max-width: 768px) {
  .animate-word-delay-1 {
    font-size: 13px !important;
  }
}

.animate-word-delay-2 {
  animation: word 10s infinite;
  animation-delay: -4s;
}

.animate-word-delay-3 {
  animation: word 10s infinite;
  animation-delay: -6s;
}

.animate-word-delay-4 {
  animation: word 10s infinite;
  animation-delay: -8s;
}

.word-container:hover span {
  animation-play-state: paused;
}

.title {
  color: #fff3ff;
  text-shadow: 2px 2px #0b132b;
}

.social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff3ff;
  background-color: #fff3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social:hover {
  font-size: 25px;
  color: #28bdaa;
  background-color: #0b132b;
  box-shadow: 0 0 40px #fff3ff;
  border: 1px solid #0b132b;
}

.social a i {
  color: #0b132b;
  transition: all 0.3s ease-in-out;
}

.social:hover a i {
  color: #28bdaa;
}

@media only screen and (max-width: 768px) {
  .social {
    width: 40px;
    height: 33px;
    font-size: 15px;
  }

  .social:hover {
    font-size: 15px;
  }
}

.experience {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.175) !important;
}

.name:after,
.names:after,
.nameb:after,
.namebc:after {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #2b2d2f;
  margin: auto;
  display: block;
}

.marquee {
  mask-image: linear-gradient(to right, transparent, #000000, transparent);
}

@media screen and (max-width: 768px) {
  .marquee {
    mask-image: linear-gradient(
      to right,
      transparent,
      #000000 10%,
      #000000 90%,
      transparent
    );
  }
}

.topic div span {
  display: inline-flex;
  align-items: center;
}

.topic div span i {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #001522;
  border-radius: 50%;
}

.card:hover img {
  transform: rotate3d(1, 1, 1, 360deg);
  transition: all 0.3s ease-in-out;
}

.card span:after {
  content: "";
  width: 0;
  height: 1px !important;
  background-color: #2b2d2f;
  margin: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

.card:hover span:after {
  width: 100%;
}

.card-para {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0;
}

.card:hover button {
  background-color: #001522;
  transition: all 0.3s ease-in-out;
}

.swiper-wrapper {
  width: 100%;
  height: max-content !important;
  padding-bottom: 64px !important;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.swiper-pagination-bullet {
  background: #4f46e5;
}

.swiper-pagination-bullet-active {
  background: #4f46e5 !important;
}

.quotes {
}
