@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  font-family: "Inter", sans-serif;
}

body {
  background-color: #fff;
  color: #000;
}

.dark body {
  background-color: #1a1a2e;
  color: #fff;
}

.theme-transition {
  transition: all 0.3s ease;
}

#theme-toggle i,
#mobile-theme-toggle i {
  color: #222;
}

.dark #theme-toggle i,
.dark #mobile-theme-toggle i {
  color: #f3f4f6 !important;
}

html.dark #theme-toggle i,
html.dark #mobile-theme-toggle i {
  color: #222;
}

html.dark .text-gray-500, html.dark .text-gray-600 {
  color: #cbd5e1 !important;
}
html.dark .bg-gray-50, html.dark .bg-gray-100 {
  background-color: #23263a !important;
}
html.dark .border-gray-200, html.dark .divide-gray-200 {
  border-color: #373a53 !important;
}

html:not(.dark) #theme-toggle i,
html:not(.dark) #mobile-theme-toggle i {
  color: #222;
}

html.dark header {
  background: rgba(17, 24, 39, 0.9) !important;
}

html.dark .rounded-lg.scroll-animate {
  border: 1.5px solid #475569 !important;
  box-shadow: 0 4px 0 0 rgba(30, 41, 59, 0.25);
}

html.dark #mobile-menu {
  background: #23263a !important;
}

html.dark #mobile-menu .p-6,
html.dark #mobile-menu .bg-gray-50 {
  background: #23263a !important;
}

.animated-bg {
  background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.dark .animated-bg {
  background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
  background-size: 400% 400%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee .marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.card-hover {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.dark .card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
.dark .card-hover {
  background: #23263a;
  border: 1.5px solid #373a53;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.social-icon {
  transition: all 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2) rotate(5deg);
}

.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}
.tooltip:hover::after {
  opacity: 1;
}

.project-card {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  backdrop-filter: blur(10px);
}
.dark .project-card {
  background: #23263a;
  border: 1.5px solid #373a53;
}
@media (max-width: 768px) {
  .project-card {
    width: 100%;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background: #f97316;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(100px);
  z-index: 1000;
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.swiper-pagination-bullet-active {
  background: #f97316 !important;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

.username-rotator {
  animation: slide-up 25s infinite;
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  16% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-1.25rem);
  }
  36% {
    transform: translateY(-1.25rem);
  }
  40% {
    transform: translateY(-2.5rem);
  }
  56% {
    transform: translateY(-2.5rem);
  }
  60% {
    transform: translateY(-3.75rem);
  }
  76% {
    transform: translateY(-3.75rem);
  }
  80% {
    transform: translateY(-5rem);
  }
  96% {
    transform: translateY(-5rem);
  }
  100% {
    transform: translateY(-6.25rem);
  }
}/*# sourceMappingURL=style.css.map */