/* CSS Variables */
:root {
  --bg: #0a0a0a;
  --card: #111111;
  --accent: #ffffff;
  --muted: #888888;
  --gray-800: #262626;
  --gray-900: #171717;
  --radius: 20px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  --glass: rgba(255, 255, 255, 0.03);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1400px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--accent);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--accent) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
  0% {
    background-position: right bottom;
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    background-position: left bottom;
    opacity: 1;
    transform: scale(1);
  }

  100% {
    background-position: left bottom;
    opacity: 1;
    transform: scale(1);
  }
}

/* Typography */
h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0;
  animation: slideDown 0.5s ease 0.5s forwards;
  transform: translateY(-100%);
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
  z-index: 1002;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  position: relative;
  z-index: 1002;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.3;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.btn-sm {
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  z-index: 1;
}

.floating-element:nth-child(1) {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #fff, #aaa);
  top: 10%;
  left: 5%;
  animation: float-element 15s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #aaa, #fff);
  bottom: 20%;
  right: 10%;
  animation: float-element 20s ease-in-out infinite reverse;
}

@keyframes float-element {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 40px) rotate(240deg);
  }
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 6rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: linear-gradient(135deg, var(--card), #0f0f0f);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--glass), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon::after {
  transform: translateX(100%);
}

.service-quote-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.9rem 2rem;
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.pricing-card {
  background: linear-gradient(145deg, var(--card), #0d0d0d);
  padding: 4rem 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition);
}

.pricing-card.popular {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 120px rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.price {
  font-size: 5rem;
  font-weight: 900;
  margin: 2rem 0;
  color: var(--accent);
  line-height: 1;
}

.price span {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin: 2.5rem 0;
}

.features-list li {
  padding: 1rem 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.9));
  z-index: 1;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.project-image {
  width: 100%;
  height: 60%;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.project-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tags {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.project-tag {
  padding: 0.5rem 1.2rem;
  background: var(--glass);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--card), #0d0d0d);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--accent);
  font-family: inherit;
  font-size: 1.1rem;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

textarea.form-control {
  min-height: 200px;
  resize: vertical;
}

/* Footer */
footer {
  background: #050505;
  padding: 6rem 0 3rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Social */
.footer-social {
  margin-top: 2rem;
}

.linktree-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #39E09B, #1DB954);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: white;
  transition: var(--transition);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(57, 224, 155, 0.2);
}

.linktree-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(57, 224, 155, 0.3);
  background: linear-gradient(135deg, #1DB954, #39E09B);
}

.social-icons-mini {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-icon-mini {
  width: 45px;
  height: 45px;
  background: var(--glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-mini:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== FLOATING MENU - FIXED VERSION ========== */
.floating-menu-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.floating-main-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  color: black;
  border: none;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: auto;
}

.floating-main-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.floating-main-btn.active {
  transform: rotate(45deg);
  background: #fff;
}

.floating-menu-items {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-menu-items.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.floating-menu-item {
  display: flex;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 15px 25px;
  gap: 15px;
  text-decoration: none;
  color: var(--accent);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
  cursor: pointer;
  transform: translateX(30px);
  opacity: 0;
  pointer-events: auto;
}

.floating-menu-items.active .floating-menu-item {
  transform: translateX(0);
  opacity: 1;
}

.floating-menu-items.active .floating-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.floating-menu-items.active .floating-menu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.floating-menu-items.active .floating-menu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.floating-menu-item:hover {
  transform: translateX(-10px) !important;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.floating-menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.floating-menu-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-menu-icon.gmail {
  background: linear-gradient(135deg, #EA4335, #D14836);
}

.floating-menu-icon.call {
  background: linear-gradient(135deg, #007AFF, #0056CC);
}

.floating-menu-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.floating-menu-text small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* CRITICAL FIXES for Floating Menu */
.floating-menu-container:not(.active) {
  pointer-events: none;
}

.floating-menu-container:not(.active) .floating-main-btn {
  pointer-events: auto;
}

.floating-menu-container.active {
  pointer-events: auto;
}

.floating-menu-container.active * {
  pointer-events: auto;
}

.floating-menu-container {
  pointer-events: none !important;
}

.floating-main-btn {
  pointer-events: auto !important;
}

.floating-menu-items {
  pointer-events: none !important;
}

.floating-menu-items.active {
  pointer-events: auto !important;
}

.floating-menu-items.active * {
  pointer-events: auto !important;
}

body {
  pointer-events: auto !important;
}

/* Social Links Section */
.social-links-section {
  text-align: center;
  padding: 6rem 0;
  background: var(--gray-900);
  border-radius: var(--radius);
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.social-links-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.social-link {
  width: 70px;
  height: 70px;
  background: var(--glass);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* Social Headline */
.social-headline {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Visual Enhancements */
.visual-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: 50px 50px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

.visual-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.1;
  z-index: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-delay.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-delay.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-delay.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-delay.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-delay.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-delay.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-delay.visible>*:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-delay.visible>*:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger-delay.visible>*:nth-child(9) {
  transition-delay: 0.45s;
}

.stagger-delay.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.99);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
    right: 0;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.2s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links li:nth-child(1) {
    transition-delay: 0.05s;
  }

  .nav-links li:nth-child(2) {
    transition-delay: 0.1s;
  }

  .nav-links li:nth-child(3) {
    transition-delay: 0.15s;
  }

  .nav-links li:nth-child(4) {
    transition-delay: 0.2s;
  }

  .nav-links li:nth-child(5) {
    transition-delay: 0.25s;
  }

  .nav-links li:nth-child(6) {
    transition-delay: 0.3s;
  }

  .nav-links li:nth-child(7) {
    transition-delay: 0.35s;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    color: var(--muted);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }

  /* Mobile menu button animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Body lock when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 992px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .projects-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-links h4 {
    font-size: 1.1rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-logo {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {

  /* Hero Adjustments */
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }

  /* Footer Adjustments */
  footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .footer-links a:hover {
    padding-left: 0.5rem;
  }

  .footer-links a::before {
    display: none;
  }

  .social-icons-mini {
    justify-content: center;
  }

  .linktree-cta {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Typography Adjustments */
  h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
  }

  .social-headline {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .section {
    padding: 80px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-card {
    height: 450px;
  }

  .project-content {
    padding: 1.5rem;
  }

  .project-tag {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  /* Floating Menu Responsive */
  .floating-menu-container {
    bottom: 20px;
    right: 20px;
  }

  .floating-main-btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .floating-menu-items {
    bottom: 70px;
    gap: 12px;
  }

  .floating-menu-item {
    min-width: 180px;
    padding: 12px 20px;
  }

  .floating-menu-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .floating-menu-text {
    font-size: 15px;
  }

  .floating-menu-text small {
    font-size: 12px;
  }

  /* Form Adjustments */
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .section-header h2::after {
    bottom: -12px;
    width: 60px;
  }

  /* Contact Items */
  .contact-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Social Links */
  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  /* Service Cards */
  .service-card {
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-quote-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Additional Effects */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Form Success Message */
.success-message {
  background: linear-gradient(135deg, #28ca42, #1da134);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1.5rem;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Validation */
.form-control.error {
  border-color: #ff4444;
}

.error-message {
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

/* Additional responsive fixes */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .service-card,
  .pricing-card,
  .project-card {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1.25rem;
  }

  .hero-content {
    padding: 0 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Floating Menu */
  .floating-menu-container {
    right: 16px;
    bottom: 16px;
  }

  .floating-main-btn {
    width: 56px;
    height: 56px;
  }

  .floating-menu-items {
    gap: 10px;
  }

  .floating-menu-item {
    min-width: 160px;
    padding: 12px 16px;
  }

  .floating-menu-icon {
    width: 40px;
    height: 40px;
  }

  .linktree-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .mobile-menu-btn {
    width: 45px;
    height: 45px;
  }

  .nav-links {
    width: 90%;
    padding: 90px 1.5rem 1.5rem;
  }

  .nav-links a {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer */
  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.85rem;
  }

  .social-icon-mini {
    width: 40px;
    height: 40px;
  }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* Prevent horizontal scroll */
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Fix for select dropdowns on mobile */
select:focus {
  font-size: 16px;
}

/* Improve tap targets on mobile */
@media (max-width: 768px) {

  button,
  a,
  .btn,
  .service-card {
    min-height: 44px;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

/* Additional hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.gradient-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 1rem;
}


/* CSS Variables - Pure Black & White */
:root {
  --bg: #000000;
  --card: #0a0a0a;
  --accent: #ffffff;
  --muted: #888888;
  --highlight: #ffffff;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.tech-container {
  max-width: 1600px;
  margin: 0 auto;
}

.tech-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.tech-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.tech-header h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
}

.tech-header p {
  color: var(--muted);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
}

/* Grid Layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

/* Technology Card */
.tech-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 45px 35px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow), var(--glow);
}

.tech-card:hover::before {
  transform: translateX(100%);
}

/* Card Header */
.tech-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}

.tech-card:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.tech-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover .tech-icon::after {
  opacity: 1;
}

.tech-title h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--accent);
  line-height: 1.2;
}

.tech-subtitle {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.5;
}

.tech-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Technology Lists */
.tech-category {
  margin-bottom: 25px;
}

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-category-header i {
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.7;
}

.tech-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-item i {
  font-size: 0.9rem;
  opacity: 0.7;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Professional Add-ons */
.tech-addons {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.addon-title i {
  color: var(--highlight);
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.addon-item i {
  font-size: 0.8rem;
  opacity: 0.5;
}

.addon-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
}

/* GET QUOTE BUTTON - BLACK & WHITE */
.tech-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--accent);
  margin-top: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.tech-quote-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-quote-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.tech-quote-btn:hover::before {
  opacity: 1;
}

.tech-quote-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.tech-quote-btn:hover i {
  transform: translateX(5px);
}

/* Card Footer */
.tech-card-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tech-tags {
  display: flex;
  gap: 10px;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tech-tag i {
  font-size: 0.7rem;
}

.tech-level {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

/* Badge for card number */
.tech-card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.3;
  letter-spacing: 1px;
}

/* Use Case Section */
.tech-usecase {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.usecase-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.usecase-title i {
  color: var(--highlight);
}

.usecase-list {
  list-style: none;
}

.usecase-list li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.usecase-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  }

  .tech-card {
    padding: 35px 30px;
  }
}

@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .tech-header {
    margin-bottom: 60px;
  }

  .tech-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .tech-header h1 {
    font-size: 2.5rem;
  }

  .tech-header p {
    font-size: 1.1rem;
  }

  body {
    padding: 60px 20px;
  }

  .tech-quote-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tech-card {
    padding: 30px 25px;
  }

  .tech-card-header {
    gap: 15px;
  }

  .tech-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .tech-title h3 {
    font-size: 1.5rem;
  }

  .tech-header h1 {
    font-size: 2rem;
  }

  .tech-header p {
    font-size: 1rem;
  }

  .tech-item {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .addon-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .tech-quote-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .tech-card {
    padding: 25px 20px;
  }

  .tech-grid {
    gap: 25px;
  }

  .tech-title h3 {
    font-size: 1.3rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.tech-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tech-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tech-card:nth-child(3) {
  animation-delay: 0.3s;
}

.tech-card:nth-child(4) {
  animation-delay: 0.4s;
}

.tech-card:nth-child(5) {
  animation-delay: 0.5s;
}

.tech-card:nth-child(6) {
  animation-delay: 0.6s;
}

.tech-card:nth-child(7) {
  animation-delay: 0.7s;
}

.tech-card:nth-child(8) {
  animation-delay: 0.8s;
}

.tech-card:nth-child(9) {
  animation-delay: 0.9s;
}

/* Scroll reveal effect */
.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.slider-xi-1-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Slider Title */
.slider-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.slider-title h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.slider-title h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
}

.slider-title p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.slider-xi-1 {
  position: relative;
  height: 700px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.slider-xi-1:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--glow);
}

.slides-xi-1 {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-xi-1 {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-xi-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 100%);
  z-index: 1;
}

.slide-xi-1-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.slide-xi-1:hover .slide-xi-1-img {
  transform: scale(1.08);
  filter: brightness(1);
}

.slide-xi-1-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.slide-xi-1 h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards 0.3s;
}

.slide-xi-1 p {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards 0.5s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-xi-1-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: 2px;
  z-index: 3;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-xi-1-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.slider-xi-1-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.slider-xi-1-dot:hover {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.slider-xi-1-dot.active {
  background: var(--accent);
  transform: scale(1.3);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.slider-xi-1-dot.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.slider-xi-1-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-xi-1-btn {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.slider-xi-1-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-xi-1-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.slider-xi-1-btn:hover::before {
  opacity: 1;
}

.slider-xi-1-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-xi-1-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.8));
  width: 0%;
  transition: width 5s linear;
  border-radius: 0 3px 3px 0;
}

.slide-xi-1-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease, border-color 0.6s ease;
}

.slide-xi-1:hover .slide-xi-1-border {
  opacity: 1;
  border-color: var(--accent);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 200px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

/* Responsive Design - Enhanced */
@media (max-width: 1600px) {
  .slider-xi-1 {
    height: 650px;
  }

  .slide-xi-1-content {
    padding: 60px;
  }
}

@media (max-width: 1200px) {
  .slider-xi-1 {
    height: 600px;
  }

  .slide-xi-1-content {
    padding: 50px;
  }

  .slider-xi-1-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .slider-xi-1 {
    height: 550px;
    border-radius: 15px;
  }

  .slide-xi-1-content {
    padding: 40px;
  }

  .slide-xi-1 h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }

  .slide-xi-1 p {
    font-size: 1.1rem;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-item {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .slider-xi-1 {
    height: 500px;
  }

  .slide-xi-1-content {
    padding: 30px;
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .slide-xi-1::before {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%);
  }

  .slide-xi-1 h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .slide-xi-1 p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .slider-xi-1-controls {
    padding: 0 20px;
  }

  .slider-xi-1-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .slider-xi-1-nav {
    bottom: 20px;
  }

  .slide-xi-1-number {
    top: 20px;
    right: 20px;
    font-size: 1rem;
    padding: 8px 16px;
  }

  .stats-container {
    margin-top: 30px;
  }

  .stat-item {
    min-width: 150px;
    padding: 15px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .slider-title {
    margin-bottom: 30px;
  }

  .slider-title h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .slider-title p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .slider-xi-1 {
    height: 450px;
  }

  .slide-xi-1-content {
    padding: 25px;
    padding-bottom: 70px;
  }

  .slide-xi-1 h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }

  .slide-xi-1 p {
    font-size: 0.95rem;
  }

  .slider-xi-1-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .slider-xi-1-nav {
    gap: 12px;
  }

  .slider-xi-1-dot {
    width: 12px;
    height: 12px;
    border-width: 1px;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-item {
    min-width: calc(50% - 15px);
  }

  body {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .slider-xi-1 {
    height: 400px;
    border-radius: 12px;
  }

  .slide-xi-1-content {
    padding: 20px;
    padding-bottom: 60px;
  }

  .slide-xi-1 h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .slide-xi-1 p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .slider-xi-1-controls {
    padding: 0 15px;
  }

  .slider-xi-1-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-xi-1-nav {
    bottom: 15px;
  }

  .slide-xi-1-number {
    top: 15px;
    right: 15px;
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .stats-container {
    margin-top: 20px;
  }

  .stat-item {
    min-width: 100%;
  }

  .slider-title {
    margin-bottom: 20px;
  }

  .slider-title h1 {
    font-size: 1.8rem;
  }

  .slider-title p {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .slider-xi-1 {
    height: 380px;
  }

  .slide-xi-1-content {
    padding: 15px;
    padding-bottom: 50px;
  }

  .slide-xi-1 h2 {
    font-size: 1.4rem;
  }

  .slide-xi-1 p {
    font-size: 0.85rem;
  }

  .slider-xi-1-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .slider-xi-1-nav {
    gap: 10px;
  }

  .slider-xi-1-dot {
    width: 10px;
    height: 10px;
  }
}

/* Landscape Orientation */
@media (max-height: 700px) and (orientation: landscape) {
  .slider-xi-1 {
    height: 400px;
  }

  .slide-xi-1-content {
    padding: 30px;
  }
}

/* Animation for stats */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  animation: countUp 0.6s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Mobile Touch Improvements */
.slider-xi-1 {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Performance Optimization */
.slide-xi-1-img {
  will-change: transform;
}

.work-container {
  max-width: 1600px;
  margin: 0 auto;
}

.work-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.work-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.work-header h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
}

.work-header p {
  color: var(--muted);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
}

/* Filter Buttons */
.work-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* Portfolio Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Work Item */
.work-item {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  height: 400px;
}

.work-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow), var(--glow);
}

.work-image {
  width: 100%;
  height: 60%;
  background: linear-gradient(135deg, #111111, #0a0a0a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item:hover .work-image img {
  transform: scale(1.05);
}

.work-content {
  padding: 30px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.work-category {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-category i {
  font-size: 0.9rem;
  opacity: 0.7;
}

.work-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Work Hover Overlay */
.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.work-overlay p {
  color: var(--muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.work-link {
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--accent);
}

.work-link:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
}

/* Stats Section */
.work-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 200px;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .work-item {
    height: 380px;
  }

  .work-content {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .work-header {
    margin-bottom: 60px;
  }

  .work-filters {
    gap: 12px;
  }

  .filter-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .work-stats {
    gap: 20px;
  }

  .stat-box {
    min-width: 180px;
    padding: 25px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .work-header h1 {
    font-size: 2.5rem;
  }

  .work-header p {
    font-size: 1.1rem;
  }

  body {
    padding: 60px 20px;
  }

  .work-filters {
    margin-bottom: 40px;
  }

  .work-item {
    height: 350px;
  }

  .work-content {
    padding: 20px;
  }

  .work-title {
    font-size: 1.2rem;
  }

  .work-stats {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .work-item {
    height: 320px;
  }

  .work-header h1 {
    font-size: 2rem;
  }

  .work-header p {
    font-size: 1rem;
  }

  .work-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .work-content {
    padding: 15px;
  }

  .work-title {
    font-size: 1.1rem;
  }

  .work-description {
    font-size: 0.85rem;
  }

  .work-tag {
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .stat-box {
    min-width: 150px;
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .work-item {
    height: 300px;
  }

  .work-grid {
    gap: 20px;
  }

  .work-content {
    padding: 12px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.work-item {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.work-item:nth-child(1) {
  animation-delay: 0.05s;
}

.work-item:nth-child(2) {
  animation-delay: 0.1s;
}

.work-item:nth-child(3) {
  animation-delay: 0.15s;
}

.work-item:nth-child(4) {
  animation-delay: 0.2s;
}

.work-item:nth-child(5) {
  animation-delay: 0.25s;
}

.work-item:nth-child(6) {
  animation-delay: 0.3s;
}

.work-item:nth-child(7) {
  animation-delay: 0.35s;
}

.work-item:nth-child(8) {
  animation-delay: 0.4s;
}

.work-item:nth-child(9) {
  animation-delay: 0.45s;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateX(-5px);
}

.back-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.back-btn:hover i {
  transform: translateX(-5px);
}