html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Poppins";
  src: url("/public/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  background: rgba(11, 11, 11);
}

.text-red {
  color: red;
}
.text-blue {
  color: #38bdf8;
}
.text-lime {
  color: #6aff00;
}

/* Header */

header {
  width: 100%;
  margin-top: 1%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11);
  transition: padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease, background-color 0.35s ease;
}

header.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.08);
}

.header-divider {
  width: 90%;
  margin-left: 10%;
  display: flex;
  justify-content: space-between;
}

.header-name {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-name-img-src {
  height: 50px;
}

.header-name-text {
  color: white;
  margin-left: 10px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

.header-menus {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 10%;
}

.header-menu {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  transition: color 0.4s ease, font-size 0.4s ease;
}

.header-menu:hover {
  color: #eddd53;
  font-size: 30px;
}

.header-language-menu {
  position: relative;
  font-size: 14px;
}

.header-language-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.header-language-selected img {
  width: 20px;
  border-radius: 3px;
}

.header-language-selected span {
  color: white;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.header-language-selected span:hover {
  color: #eddd53;
}

.header-language-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  min-width: 150px;
  padding: 6px;
  z-index: 100;
}

.header-language-menu.open .header-language-dropdown {
  display: block;
}

.header-language-choose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.header-language-choose img {
  width: 20px;
  border-radius: 3px;
}

.header-language-choose span {
  font-family: "Poppins", sans-serif;
  color: black;
  font-size: 18px;
}

.header-language-choose:hover {
  background-color: #f2f2f2;
}

.header-language-choose.active {
  background-color: #eaeaea;
  font-weight: 600;
}

/* Header */

/* Main Top */

.main-name-text {
  margin-top: 100px;
  color: #38bdf8;
  font-size: 80px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.main-name-text::before {
  content: "< ";
  color: #94a3b8;
}

.main-name-text::after {
  content: " />";
  color: #94a3b8;
}

.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s infinite;
  color: white;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.main-name-sections {
  width: 80%;
  margin: auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}
.main-name-section {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  transition: color 0.4s ease, font-size 0.4s ease;
}
.main-name-section:hover {
  color: red;
  font-size: 30px;
}

.main-top-about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 100px;
}

.main-top-about-me-img img {
  width: 300px;
}

.main-top-about-me-stroke-vertical {
  margin-left: 50px;
  background-color: white;
  height: 300px;
  width: 5px;
}

.main-top-about-me-text-with-button {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
}

.main-top-about-me-text {
  color: white;
  font-size: 18px;
  width: 400px;
  font-family: "Poppins", sans-serif;
  white-space: wrap;
}

.main-top-about-me-button {
  color: black;
  border-radius: 24px;
  font-size: 24px;
  margin-top: 50px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background-color: #eddd53;
  width: fit-content;
  padding: 10px;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease;
}

.main-top-about-me-button:hover {
  color: white;
  background-color: red;
}

.main-top-download-resume-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.main-top-download-resume {
  color: black;
  border-radius: 24px;
  font-size: 24px;
  margin-top: 50px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background-color: #53bfed;
  width: fit-content;
  padding: 10px;
  text-decoration: none;
  transition: font-size 0.4s ease, background-color 0.4s ease;
}

.main-top-download-resume:hover {
  font-size: 32px;
  background-color: rgb(44, 212, 224);
}

/* Main Top */

/* Reviews */

.reviews {
  background-color: #1b1a1a;
  margin-top: 100px;
  overflow: hidden;
  padding: 60px 0;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
}

@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review {
  width: 300px;
  height: 230px;
  margin-right: 40px;
  padding: 25px;
  background: #252424;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
}

.review-text {
  font-family: "Poppins", sans-serif;
  color: #dbd8d8;
  font-size: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-writer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 14px;
}

.review-writer .fi {
  width: 18px;
  height: 14px;
  border-radius: 3px;
}

.fa-star.checked {
  color: orange;
}

/* Reviews */

/* About Me */

.main-about-me-experience-and-education {
  padding-top: 100px;
  display: flex;
  justify-content: space-around;
}

.main-about-me-experience {
  display: flex;
  flex-direction: column;
}

.main-about-me-experience-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #38bdf8;
  font-size: 36px;
}

.main-about-me-experience-box {
  margin-top: 30px;
  width: 400px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(72, 65, 65, 0.2);

  transition: all 0.35s ease;
}

.main-about-me-experience-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(19, 117, 255, 0.4);
  border-color: rgba(19, 117, 255, 0.6);
}

.main-about-me-experience-box-title {
  color: white;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

.main-about-me-experience-box-description {
  margin-top: 10px;
  color: rgb(179, 158, 158);
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.main-about-me-experience-box-date-and-place {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-about-me-experience-box-place,
.main-about-me-experience-box-date {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.4s ease, font-size 0.4s ease;
}

.main-about-me-experience-box-place:hover {
  font-size: 18px;
  color: red;
}

.main-about-me-detail-parent {
  display: flex;
  flex-direction: column;
}
.main-about-me-details {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.main-about-me-detail {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(19, 117, 255, 0.25);
  transition: all 0.3s ease;
}

.main-about-me-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(19, 117, 255, 0.45);
}

.main-about-me-detail span {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 18px;
}

/* About Me */

/* Contact */

.main-widget-gecis {
  margin-top: 130px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-widget-gecis-div {
  width: 30%;
  padding: 20px 30px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  border-top: 3px solid #1375ff;
  border-right: 3px solid #1375ff;
  box-shadow: 0 -6px 20px rgba(19, 117, 255, 0.5),
    6px 0 20px rgba(19, 117, 255, 0.5), 0 6px 20px rgba(255, 255, 255, 0.25),
    -6px 0 20px rgba(255, 255, 255, 0.25);
}

.main-widget-gecis-div-text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  width: 50%;
  display: flex;
  justify-content: space-between;
  color: white;
  letter-spacing: 2px;
}

.main-widget-gecis-div-text::before {
  content: "<";
  color: #1375ff;
  margin-right: 20px;
}

.main-widget-gecis-div-text::after {
  content: "/>";
  color: #1375ff;
  margin-left: 20px;
}

.main-contact-parent {
  width: 80%;
  margin: auto;
  padding: 40px 60px;
  border-radius: 50px;
  margin-top: 20px;
  background: rgba(15, 15, 15);
}

.main-contact-flex-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-contact-elements {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.main-contact-elements-element {
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  transition: border-bottom 0.4s ease;
}

.main-contact-elements-element-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgb(123, 123, 123);
  transition: all 0.4s ease;
}

.main-contact-elements-element-title-text {
  margin-left: 10px;
}

.main-contact-elements-element-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.main-contact-elements-element-description a {
  text-decoration: none;
  color: white;
  transition: color 0.4s ease, font-size 0.4s ease;
}

.main-contact-elements-element-description a:hover {
  font-size: 24px;
  color: #1375ff;
}

.main-contact-elements-element:has(a:hover) {
  border-bottom: 2px solid #1375ff;
}

.main-contact-elements-element:has(a:hover)
  .main-contact-elements-element-title {
  color: #1375ff;
  font-size: 24px;
}

.main-contact-send-email {
  width: 40%;
  background: rgba(25, 25, 25, 0.8);
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-contact-send-email-title {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.main-contact-send-email-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1375ff;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

#emailText {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  resize: none;
  height: 180px;
  margin-top: 20px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#emailText:focus {
  outline: none;
  border: 1px solid #1375ff;
  box-shadow: 0 0 15px rgba(19, 117, 255, 0.3);
}

.main-contact-send-email-button {
  margin-top: 20px;
  padding: 14px;
  border-radius: 20px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #1375ff, #0a4bcc);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-contact-send-email-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(19, 117, 255, 0.4);
}

.main-contact-send-email-button:active {
  transform: scale(0.98);
}

/* Contact */

/* Footer */

.main-footer {
  background: #0f0f0f;
  padding: 60px 0 25px 0;
  margin-top: 80px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #1375ff,
    #00c6ff,
    #1375ff,
    transparent
  );
}

.footer-glow-line {
  width: 150px;
  height: 3px;
  background: #1375ff;
  margin: 0 auto 40px auto;
  border-radius: 20px;
  box-shadow: 0 0 20px #1375ff;
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px #1375ff;
  }
  100% {
    opacity: 0.6;
  }
}

.footer-content {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #1375ff;
}

.footer-description {
  font-size: 14px;
  color: rgb(150, 150, 150);
}

.footer-sitemap {
  display: flex;
  flex-direction: column;
}

.footer-sitemap h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}

.footer-sitemap a {
  text-decoration: none;
  color: rgb(150, 150, 150);
  margin-bottom: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-sitemap a:hover {
  color: #1375ff;
  transform: translateX(5px);
}

.footer-socials a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #1375ff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  font-size: 13px;
  color: rgb(110, 110, 110);
}

.fade-footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #1375ff, #0a4bcc);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(19, 117, 255, 0.4);
}

/* Footer */
