@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Space+Mono:wght@400;700&family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background: #030305;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0, 132, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 122, 229, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  border-radius: 4px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.highlight {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn svg {
  transition: transform 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 132, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.5);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: rgba(0, 132, 255, 0.5);
  background: rgba(0, 132, 255, 0.1);
  color: #47a9ff;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 14px;
}

#preloder {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030305;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloder #pulse-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloder #pulse-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 132, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(0, 122, 229, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
#preloder #pulse-wrapper #pulse {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 132, 255, 0.3);
  z-index: 10;
}
#preloder #pulse-wrapper #pulse svg {
  width: 36px;
  height: 36px;
}
#preloder #pulse-wrapper span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 132, 255, 0.5);
  background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, transparent 70%);
  animation: pulse-ring 4s ease-in-out infinite;
}
#preloder #pulse-wrapper span:nth-child(2) {
  animation-delay: 0s;
}
#preloder #pulse-wrapper span:nth-child(3) {
  animation-delay: 1s;
}
#preloder #pulse-wrapper span:nth-child(4) {
  animation-delay: 2s;
}
#preloder #pulse-wrapper span:nth-child(5) {
  animation-delay: 3s;
}

@keyframes pulse-ring {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 855px;
  width: 100%;
}
@media (max-width: 1024px) {
  .navbar {
    max-width: calc(100% - 40px);
    width: 100%;
  }
}
.navbar.scrolled {
  top: 12px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 10px 20px;
  background: linear-gradient(135deg, rgba(25, 25, 35, 0.85) 0%, rgba(15, 15, 22, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-container:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.logo svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.logo:hover {
  background: rgba(255, 255, 255, 0.05);
}
.logo:hover svg {
  transform: rotate(10deg) scale(1.05);
}
.logo span {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: none;
}
@media (min-width: 1200px) {
  .logo span {
    display: block;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .nav-actions .btn {
    display: none;
  }
}
.nav-actions .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0f;
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.nav-actions .btn-primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay.active .mobile-nav-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 480px) {
  .mobile-nav-overlay.active .mobile-nav-card {
    padding: 10px 10px 20px;
  }
}

.mobile-nav-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(165deg, rgba(40, 40, 50, 0.95) 0%, rgba(25, 25, 32, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.mobile-nav-logo:hover {
  background: rgba(255, 255, 255, 0.05);
}
.mobile-nav-logo svg {
  width: 32px;
  height: 32px;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.mobile-link:last-child {
  border-bottom: none;
}
.mobile-link:hover {
  color: #fff;
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}
.mobile-link.active {
  color: #47a9ff;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-cta span {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  color: #0a0a0f;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.mobile-cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.mobile-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.mobile-social-link svg:last-child {
  opacity: 0.6;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 70% 0%, rgba(0, 132, 255, 0.2) 0%, transparent 50%), radial-gradient(ellipse 80% 80% at 0% 50%, rgba(0, 122, 229, 0.15) 0%, transparent 50%);
}
.hero-bg .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 70%);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float-shape 20s ease-in-out infinite;
}
.floating-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 132, 255, 0.15);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}
.floating-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 122, 229, 0.1);
  bottom: 20%;
  left: 5%;
  animation-delay: -5s;
}
.floating-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(71, 169, 255, 0.1);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 10px) scale(0.95);
  }
  75% {
    transform: translate(-20px, -10px) scale(1.02);
  }
}
.hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 48px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-text {
    gap: 16px;
    max-width: 100%;
    width: 100%;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
.badge .status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}
.badge span:last-child {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .badge span:last-child {
    font-size: 10px;
  }
}

@keyframes status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-title .greeting {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #9ca3af;
}
@media (max-width: 1024px) {
  .hero-title .greeting {
    font-size: 14px;
  }
}
.hero-title .name {
  font-family: "Outfit", sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #47a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1024px) {
  .hero-title .name {
    font-size: clamp(30px, 6vw, 52px);
  }
}

.hero-subtitle .typed-text {
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 44px;
  display: block;
}
@media (max-width: 1024px) {
  .hero-subtitle .typed-text {
    font-size: 20px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .hero-subtitle .typed-text {
    font-size: 16px;
    height: 28px;
  }
}

.hero-description {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .hero-description {
    font-size: 14px;
  }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-tags .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  transition: all 0.3s ease;
}
.hero-tags .tag svg {
  stroke: #0084ff;
}
.hero-tags .tag:hover {
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border-color: rgba(0, 132, 255, 0.3);
  color: #ffffff;
}

.hero-tags-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.hero-tags-track {
  display: flex;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  animation: heroTagsScroll 35s linear infinite;
}
.hero-tags-track:hover {
  animation-play-state: paused;
}
.hero-tags-track .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-tags-track .tag svg {
  stroke: #0084ff;
  flex-shrink: 0;
}
.hero-tags-track .tag:hover {
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border-color: rgba(0, 132, 255, 0.3);
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-tags-track {
    animation-duration: 25s;
  }
  .hero-tags-track .tag {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@keyframes heroTagsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-visual {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .hero-visual {
    max-width: 100%;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
  }
}

.profile-card {
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .profile-card {
    order: 4;
    border-radius: 0 0 14px 14px;
    max-width: 100%;
    width: 100%;
  }
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .profile-card::before {
    content: none;
  }
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  padding: 3px;
}
.profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.profile-info {
  text-align: center;
}
.profile-info h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-info p {
  font-size: 13px;
  color: #9ca3af;
}

.profile-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  justify-content: center;
}
.profile-stats .stat {
  text-align: center;
}
.profile-stats .stat .stat-value {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.profile-stats .stat .stat-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: float-card 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .floating-card {
    padding: 10px 14px;
    position: unset;
    animation: none;
    max-width: 50%;
    width: 100%;
  }
}
.floating-card svg {
  stroke: #0084ff;
}
.floating-card span {
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .floating-card span {
    font-size: 10px;
  }
}
.floating-card.card-1 {
  top: 30px;
  left: 40px;
  animation-delay: 0s;
  z-index: 5;
}
@media (max-width: 1024px) {
  .floating-card.card-1 {
    top: 16px;
    left: -40px;
  }
}
@media (max-width: 768px) {
  .floating-card.card-1 {
    top: 20px;
    order: 2;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}
.floating-card.card-2 {
  top: 120px;
  right: 40px;
  animation-delay: 2s;
  z-index: 5;
}
@media (max-width: 1024px) {
  .floating-card.card-2 {
    top: 80px;
    right: -80px;
  }
}
@media (max-width: 768px) {
  .floating-card.card-2 {
    top: 80px;
    order: 3;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.code-snippet {
  position: absolute;
  bottom: -40px;
  right: 40px;
  background: #0f0f18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 5;
}
@media (max-width: 1024px) {
  .code-snippet {
    bottom: -70px;
    right: 40px;
  }
}
@media (max-width: 768px) {
  .code-snippet {
    max-width: 100%;
    width: 100%;
    position: unset;
    order: 1;
    border-radius: 14px 14px 0 0;
  }
}
.code-snippet .code-header {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
}
.code-snippet .code-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-snippet .code-header .dot.red {
  background: #0084ff;
}
.code-snippet .code-header .dot.yellow {
  background: #f59e0b;
}
.code-snippet .code-header .dot.green {
  background: #22c55e;
}
.code-snippet .code-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.code-snippet .code-body code {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
}
.code-snippet .code-body code .code-purple {
  color: #0084ff;
}
.code-snippet .code-body code .code-blue {
  color: #82aaff;
}
.code-snippet .code-body code .code-green {
  color: #c3e88d;
}
.code-snippet .code-body code .code-orange {
  color: #47a9ff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator span {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse .wheel {
  width: 4px;
  height: 8px;
  background: #0084ff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}
.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 48px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-badge,
.section-header.centered .section-subtitle {
  justify-content: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge svg {
  stroke: #0084ff;
}
.section-badge span, .section-badge {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: #47a9ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: #9ca3af;
  max-width: 600px;
  line-height: 1.7;
}
.centered .section-subtitle {
  margin: 0 auto;
}

.about-reviews {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.about-glow.about-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 132, 255, 0.25);
  top: -150px;
  left: -150px;
}
.about-glow.about-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 122, 229, 0.2);
  bottom: -100px;
  right: -100px;
}

.about-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #47a9ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(0, 132, 255, 0.1);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 20px;
}
.about-badge .badge-pulse {
  width: 8px;
  height: 8px;
  background: #0084ff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}
.about-title span {
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 550px;
  margin: 0 auto;
}
.about-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  .about-stats-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .about-stats-row {
    padding: 16px;
    gap: 25px;
  }
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-stat-item .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-item .stat-text {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
}

.stat-separator {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}
@media (max-width: 768px) {
  .stat-separator {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    display: none;
  }
}

.about-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.contact-pill svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.contact-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.contact-pill:hover svg {
  opacity: 1;
}

.reviews-section {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.reviews-container {
  background: linear-gradient(165deg, rgba(20, 22, 30, 0.95) 0%, rgba(12, 14, 20, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.reviews-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 132, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}
.reviews-container::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reviews-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.reviews-label svg {
  fill: #fbbf24;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.4));
}

.reviews-nav {
  display: flex;
  gap: 10px;
}

.review-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}
.review-arrow:active {
  transform: scale(0.95);
}

.review-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.review-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 4px;
}

.review-content {
  flex: 1;
  position: relative;
}
.review-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(0, 132, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .review-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}
@media (max-width: 480px) {
  .review-author {
    flex-wrap: wrap;
  }
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.author-role {
  font-size: 12px;
  color: #6b7280;
}

.review-date {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  white-space: nowrap;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.review-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-dots .dot.active {
  background: #0084ff;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 132, 255, 0.4);
}
.review-dots .dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: rgba(0, 132, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 132, 255, 0.15);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
}
.service-card:hover .service-icon svg {
  stroke: white;
}
.service-card:hover .service-number {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card .service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card .service-icon svg {
  stroke: #0084ff;
  transition: all 0.3s ease;
}
.service-card .service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.service-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
  flex: 1;
}
.service-card .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card .service-tags span {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.service-card:hover .service-tags span {
  background: rgba(0, 132, 255, 0.1);
  color: #47a9ff;
}

.skills-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.skills-text {
  max-width: 700px;
}
.skills-text p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.7;
}

.skills {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}

.skills-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.skills-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.skills-glow.skills-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 132, 255, 0.3);
  top: -100px;
  right: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}
.skills-glow.skills-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 122, 229, 0.25);
  bottom: -50px;
  left: -50px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 20px) scale(1.1);
  }
}
.skills-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.skills-header {
  max-width: 600px;
}

.skills-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #47a9ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(0, 132, 255, 0.1);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 20px;
}
.skills-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #0084ff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.skills-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}
.skills-title span {
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills-description {
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 500px;
  margin: 0 auto;
}

.skills-showcase {
  display: flex;
  justify-content: center;
  width: 100%;
}

.skills-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .skills-logos {
    gap: 12px;
  }
}

.skill-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skill-logo-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.skill-logo-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, transparent 50%, rgba(0, 132, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.skill-logo-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.skill-logo-icon:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(0, 132, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 132, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.skill-logo-icon:hover::before {
  opacity: 1;
}
.skill-logo-icon:hover img {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .skill-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    padding: 12px;
  }
}

.skill-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.3s ease;
}
.skill-logo-item:hover .skill-label {
  color: #ffffff;
}
@media (max-width: 768px) {
  .skill-label {
    font-size: 11px;
  }
}

.skills-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 48px;
  background: linear-gradient(135deg, rgba(25, 25, 35, 0.6) 0%, rgba(15, 15, 22, 0.7) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .skills-stats {
    gap: 24px;
    padding: 24px 32px;
    flex-wrap: wrap;
  }
}

.skill-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.skill-stat .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.skill-stat .stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}
@media (max-width: 768px) {
  .stat-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    display: none;
  }
}

.tech-marquee-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tech-marquee-section {
    padding: 60px 0;
  }
}

.tech-marquee-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}
.tech-marquee-glow.tech-marquee-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.4) 0%, transparent 70%);
  top: -150px;
  left: 10%;
  animation: floatGlow 12s ease-in-out infinite;
}
.tech-marquee-glow.tech-marquee-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 122, 229, 0.3) 0%, transparent 70%);
  bottom: -100px;
  right: 15%;
  animation: floatGlow 15s ease-in-out infinite reverse;
}

.tech-marquee-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.tech-marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #47a9ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.15) 0%, rgba(0, 122, 229, 0.1) 100%);
  border: 1px solid rgba(0, 132, 255, 0.25);
  border-radius: 50px;
  margin-bottom: 20px;
}
.tech-marquee-badge svg {
  opacity: 0.9;
}

.tech-marquee-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
}
.tech-marquee-title span {
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 50%, #0084ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.tech-marquee-container {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 30, 0.6) 20%, rgba(20, 20, 30, 0.8) 50%, rgba(20, 20, 30, 0.6) 80%, transparent 100%);
}
.tech-marquee-container::before, .tech-marquee-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 132, 255, 0.3) 20%, rgba(0, 132, 255, 0.5) 50%, rgba(0, 132, 255, 0.3) 80%, transparent 100%);
}
.tech-marquee-container::before {
  top: 0;
}
.tech-marquee-container::after {
  bottom: 0;
}

.tech-marquee-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tech-marquee-track {
  display: flex;
  gap: 56px;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  padding: 20px 0;
}
.tech-marquee-track:hover {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .tech-marquee-track {
    gap: 40px;
    animation-duration: 30s;
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333333333%);
  }
}
.tech-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-marquee-item:hover .tech-logo-wrapper .tech-logo {
  border-color: rgba(0, 132, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 132, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.tech-marquee-item:hover .tech-logo-wrapper .tech-logo-glow {
  opacity: 1;
  transform: scale(1.2);
}
.tech-marquee-item:hover .tech-name {
  color: #47a9ff;
  text-shadow: 0 0 20px rgba(0, 132, 255, 0.4);
}

.tech-logo-wrapper {
  position: relative;
}

.tech-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(35, 35, 50, 0.9) 0%, rgba(25, 25, 35, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.tech-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .tech-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    padding: 10px;
  }
}

.tech-logo-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.3) 0%, transparent 70%);
  border-radius: 24px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
  filter: blur(8px);
}

.tech-name {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .tech-name {
    font-size: 10px;
  }
}

.tech-marquee-fade {
  display: none;
}

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0084ff 0%, rgba(0, 132, 255, 0.1) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -37px;
  top: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #030305, 0 0 20px rgba(0, 132, 255, 0.5);
}

.timeline-content {
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  border-color: rgba(0, 132, 255, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.15);
}

.timeline-header {
  margin-bottom: 8px;
}
.timeline-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-header .timeline-company {
  font-size: 14px;
  color: #47a9ff;
  font-weight: 600;
}

.timeline-date {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border-color: rgba(0, 132, 255, 0.3);
  color: #47a9ff;
}
.filter-btn.active {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  border-color: transparent;
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #0084ff 0%, #47a9ff 25%, #007ae5 50%, #0084ff 75%, #47a9ff 100%);
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientShift 4s ease infinite;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 0 rgba(0, 132, 255, 0), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 10;
}
.project-card.hidden-project {
  display: none;
}
.project-card.visible {
  display: block;
}
.project-card .project-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.project-card .project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 5, 0) 0%, rgba(3, 3, 5, 0.2) 50%, rgba(3, 3, 5, 0.8) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.project-card .project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 28px;
  z-index: 5;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 10px;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card .project-overlay::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 0;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.15) 0%, rgba(0, 122, 229, 0.25) 50%, rgba(0, 132, 255, 0.1) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 132, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
@media (max-width: 768px) {
  .project-card .project-overlay::before {
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: auto;
    height: auto;
    min-height: 0;
    border: none;
  }
}
@media (max-width: 480px) {
  .project-card .project-overlay::before {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 0;
    border-radius: 14px;
    border: none;
  }
}
@media (max-width: 768px) {
  .project-card .project-overlay {
    padding: 20px;
    padding-top: 0;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .project-card .project-overlay {
    padding: 16px 16px 20px;
  }
}
.project-card .project-actions {
  display: none;
}
@media (max-width: 768px) {
  .project-card .project-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    margin-bottom: 5px;
  }
  .project-card .project-actions .project-category,
  .project-card .project-actions .project-link {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .project-card .desktop-only {
    display: none !important;
  }
}
.project-card .project-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-weight: 600;
  color: #47a9ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(0, 132, 255, 0.15);
  border: 1px solid rgba(0, 132, 255, 0.3);
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
  padding: 5px 15px;
  font-size: 13px;
  line-height: normal;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .project-card .project-category {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .project-card .project-category {
    font-size: 10px;
    padding: 6px 12px;
  }
}
.project-card .project-category::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0084ff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.project-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.15s;
  width: 100%;
}
@media (max-width: 768px) {
  .project-card h3 {
    margin-bottom: 16px;
    opacity: 1;
    transform: none;
    font-size: 20px;
    margin-bottom: 12px;
    order: -1;
  }
}
@media (max-width: 480px) {
  .project-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.project-card .project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  padding: 5px 15px;
  line-height: normal;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Space Mono", monospace;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
  transform: translateY(20px) scale(0.9);
}
.project-card .project-link svg {
  transition: transform 0.3s ease;
}
.project-card .project-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .project-card .project-link {
    opacity: 1;
    transform: none;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .project-card .project-link {
    font-size: 10px;
    padding: 6px 12px;
  }
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
}
.project-card:hover::before {
  opacity: 1;
}
.project-card:hover::after {
  box-shadow: 0 0 30px rgba(0, 132, 255, 0.3), 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}
.project-card:hover .project-image::after {
  opacity: 0.9;
}
.project-card:hover .project-overlay::before {
  height: 85%;
  bottom: 16px;
}
@media (max-width: 768px) {
  .project-card:hover .project-overlay::before {
    border: 1px solid rgba(0, 132, 255, 0.2);
    height: 100px;
  }
}
.project-card:hover .project-overlay {
  transform: translateY(0);
}
.project-card:hover .project-category {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.project-card:hover h3 {
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}
.project-card:active {
  transform: translateY(-4px) scale(0.98);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(0, 132, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.15);
}
.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
}
.contact-card:hover .contact-icon svg {
  stroke: white;
}
.contact-card .contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.1) 0%, rgba(0, 122, 229, 0.05) 100%);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.contact-card .contact-icon svg {
  stroke: #0084ff;
  transition: all 0.3s ease;
}
.contact-card .contact-icon.linkedin {
  background: rgba(0, 119, 181, 0.1);
}
.contact-card .contact-icon.linkedin svg {
  stroke: #0077b5;
}
.contact-card .contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
}
.contact-card .contact-icon.whatsapp svg {
  fill: #25d366;
  stroke: none;
}
.contact-card .contact-details .contact-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-card .contact-details .contact-value {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.contact-form-wrapper {
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}
.contact-form-wrapper h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  color: #9ca3af;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #0a0a0f;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #6b7280;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #6b7280;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #0084ff;
  box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.1);
}
.contact-form .form-group textarea {
  resize: none;
  min-height: 120px;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-form .form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-form .form-status:empty {
  display: none;
}
.contact-form .form-status.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.contact-form .form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer-brand p {
  color: #9ca3af;
  font-size: 15px;
  max-width: 300px;
}

.footer-links h4 {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links nav a {
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-links nav a:hover {
  color: #47a9ff;
  transform: translateX(4px);
}

.footer-social h4 {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social .social-links {
  display: flex;
  gap: 12px;
}
.footer-social .social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #9ca3af;
  transition: all 0.3s ease;
}
.footer-social .social-links a:hover {
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-4px);
}
.footer-social .social-links a:hover svg {
  fill: white;
  stroke: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.footer-bottom p {
  color: #6b7280;
  font-size: 14px;
}
.footer-bottom .back-to-top {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0084ff 0%, #007ae5 100%);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
}
.footer-bottom .back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.4);
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}
.animate-slide-up.delay-1 {
  animation-delay: 0.1s;
}
.animate-slide-up.delay-2 {
  animation-delay: 0.2s;
}
.animate-slide-up.delay-3 {
  animation-delay: 0.3s;
}
.animate-slide-up.delay-4 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */