@charset "UTF-8";
.navbar-custom {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 15px;
}
.navbar-custom .nav-container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .navbar-custom .nav-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .navbar-custom .nav-container {
    max-width: 1320px;
  }
}
.navbar-custom .nav-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}
.navbar-custom .nav-container.scrolled {
  padding: 8px 20px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.8);
}
.navbar-custom .nav-logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #1a1a1a;
  white-space: nowrap;
}
.navbar-custom .nav-logo span {
  color: #4770ff;
}
.navbar-custom .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
@media (max-width: 991px) {
  .navbar-custom .nav-menu {
    display: none;
  }
  .navbar-custom .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 15px;
    right: 15px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
  }
}
.navbar-custom .nav-menu .nav-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.navbar-custom .nav-menu .nav-link i {
  font-size: 18px;
  color: #4770ff;
  opacity: 0.7;
}
.navbar-custom .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #4770ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.navbar-custom .nav-menu .nav-link:hover, .navbar-custom .nav-menu .nav-link.active {
  color: #1a1a1a;
}
.navbar-custom .nav-menu .nav-link:hover i, .navbar-custom .nav-menu .nav-link.active i {
  opacity: 1;
}
.navbar-custom .nav-menu .nav-link:hover::after, .navbar-custom .nav-menu .nav-link.active::after {
  width: 20px;
}
.navbar-custom .nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar-custom .btn-talk {
  background: #1a1a1a;
  color: white;
  padding: 10px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-custom .btn-talk:hover {
  background: #4770ff;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .navbar-custom .btn-talk {
    display: none;
  }
}
.navbar-custom .mobile-toggle {
  display: none;
  background: rgba(71, 112, 255, 0.1);
  border: none;
  color: #4770ff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 22px;
}
@media (max-width: 991px) {
  .navbar-custom .mobile-toggle {
    display: block;
  }
}

.footer-custom {
  padding: 0 15px 30px 15px;
  width: 100%;
}
.footer-custom .footer-container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .footer-custom .footer-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .footer-custom .footer-container {
    max-width: 1320px;
  }
}
.footer-custom .footer-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-custom .footer-container:hover {
  border-color: rgba(71, 112, 255, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
  .footer-custom .footer-container {
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    text-align: center;
  }
}
.footer-custom .footer-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .footer-custom .footer-section {
    flex-direction: column;
  }
}
.footer-custom .footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 8px 20px;
  gap: 30px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-custom .footer-menu .footer-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.footer-custom .footer-menu .footer-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4770ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-custom .footer-menu .footer-link:hover {
  color: #1a1a1a;
}
.footer-custom .footer-menu .footer-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .footer-custom .footer-menu {
    gap: 15px;
    padding: 10px;
    background: transparent;
    border: none;
  }
}
.footer-custom .footer-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-custom .footer-actions .social-group {
  display: flex;
  gap: 12px;
}
.footer-custom .footer-actions .social-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-custom .footer-actions .social-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.footer-custom .footer-actions .social-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.footer-custom .footer-actions .social-btn:hover i {
  transform: scale(1.1);
}
.footer-custom .footer-actions .social-btn:active {
  transform: translateY(-2px);
}
.footer-custom .footer-actions .copyright {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .footer-custom {
    flex-direction: column-reverse;
    gap: 15px;
  }
}

.nav-logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: #1a1a1a;
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.nav-logo span {
  background: linear-gradient(135deg, #4770ff, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  margin-left: 3px;
}
.nav-logo:hover {
  transform: scale(1.05);
}

.status-pill {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.status-pill .pulse-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.status-pill .pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
.status-pill span {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(3);
    opacity: 0;
  }
}
.profile-main {
  position: sticky;
  top: 120px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.profile-main .img-wrapper {
  border-radius: 20px;
  background: #f1f3f5;
  overflow: hidden;
}
.profile-main .img-wrapper .profile-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}
.profile-main .img-wrapper .profile-img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.profile-main .profile-info h2 {
  letter-spacing: -0.5px;
}
.profile-main .profile-info p b {
  color: #4770ff;
}
.profile-main .shadow-blue {
  background: #4770ff;
  border: none;
  box-shadow: 0 10px 20px rgba(71, 112, 255, 0.2);
}
.profile-main .shadow-blue:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
.profile-main .social-links {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.profile-main .social-links .social-icon {
  width: 70px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}
.profile-main .social-links .social-icon i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.profile-main .social-links .social-icon:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.profile-main .social-links .social-icon:hover i {
  transform: scale(1.1);
}
.profile-main .social-links .social-icon:active {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .profile-main .social-links {
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .profile-main {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
  overflow-x: hidden;
  padding-top: 120px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  body {
    padding-top: 100px;
  }
}

main.container {
  max-width: 1320px;
  margin-bottom: 50px;
}

.background-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.background-decor .shape {
  position: absolute;
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
}
.background-decor .shape-1 {
  width: 400px;
  height: 400px;
  background: #4770ff;
  top: -100px;
  right: -100px;
}
.background-decor .shape-2 {
  width: 300px;
  height: 300px;
  background: #00d2ff;
  bottom: 5%;
  left: -80px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 1.75rem;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(71, 112, 255, 0.2);
}
.bento-card h5 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bento-card h5::after {
  content: "•";
  color: #4770ff;
}

.skillsSwiper {
  width: 100%;
  padding-bottom: 45px !important;
}
@media (min-width: 992px) {
  .skillsSwiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    transform: none !important;
  }
}

.skill-pill {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}
.skill-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4770ff;
  border-radius: 50%;
}
.skill-pill:hover {
  background: white;
  transform: scale(1.03);
  color: #4770ff;
}

.project-wrapper {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.project-wrapper .project-img-container {
  aspect-ratio: 16/10;
  background: #f8f9fa;
}
.project-wrapper .project-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.project-wrapper:hover .project-img-container img {
  transform: scale(1.1);
}

.exp-timeline .exp-item {
  border-left: 2px solid rgba(71, 112, 255, 0.1);
  padding-left: 20px;
  padding-bottom: 25px;
  position: relative;
}
.exp-timeline .exp-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #4770ff;
  border-radius: 50%;
}
.exp-timeline .exp-item:last-child {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .bento-card {
    padding: 1.25rem;
  }
  .skillsSwiper .swiper-slide {
    width: 135px;
  }
}

/*# sourceMappingURL=style.css.map */
