/* Base Styles */
:root {
  --primary-color: #7b2cbf;
  --secondary-color: #00bbf9;
  --accent-color: #ac48e6;
  --dark-color: #0d0a1a;
  --darker-color: #070513;
  --light-color: #f8f9fa;
  --gray-color: #a1a1aa;
  --glass-bg: rgba(180, 172, 172, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --max-width: 1200px;
}

/* Reset & Base Styles */
* {
  cursor: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  cursor: none;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--darker-color), var(--dark-color));
  color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

::selection {
  background: var(--primary-color);
  color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--light-color), var(--gray-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--gray-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 0 auto;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--light-color);
}

.btn-secondary:hover {
  background: var(--glass-highlight);
  transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--glass-highlight);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13, 10, 26, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
}

.logo-dot {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray-color);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--light-color);
}

.nav-indicator {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 1px;
  transition: var(--transition);
  width: 0;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-color);
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: rgba(13, 10, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-menu:hover {
  color: var(--light-color);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-color);
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--light-color);
}

.mobile-nav-link:hover::before, .mobile-nav-link.active::before {
  width: 100%;
}

.mobile-socials {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}

.mobile-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: var(--light-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.mobile-socials a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: var(--light-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.image-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-content i {
  color: var(--primary-color);
}

/* Typing Animation */
.typing-container {
  position: relative;
  display: inline-block;
}

.typing-animation {
  color: var(--primary-color);
  font-weight: 600;
}

.typing-animation::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: var(--border-radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(123, 44, 191, 0.10);
  transition: var(--transition), box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: serviceFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes serviceFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 40px rgba(123, 44, 191, 0.18);
  border-color: var(--accent-color);
  background: var(--glass-highlight);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 60%, var(--accent-color) 100%);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 44, 191, 0.15);
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-8deg);
}

.service-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  position: relative;
}

.service-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  margin: 0.5rem auto 1.2rem auto;
}

.service-description {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-tech span {
  font-size: 0.85rem;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(123, 44, 191, 0.08);
  letter-spacing: 0.2px;
  border: none;
  transition: background 0.3s;
}

.service-tech span:hover {
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* /* Project Card Improvements */
.work-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(123, 44, 191, 0.12);
  transition: var(--transition), border-color 0.3s;
  height: 100%;
  position: relative;
}

.work-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 16px 40px rgba(123, 44, 191, 0.18);
  border-color: var(--accent-color);
}

.work-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 12px rgba(123, 44, 191, 0.08);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-image img {
  transform: scale(1.07);
}

.work-content {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
}

.work-title {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.work-description {
  color: var(--gray-color);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.work-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.work-tech span {
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(123, 44, 191, 0.08);
  letter-spacing: 0.2px;
  border: none;
} Section */
.work-slider {
  position: relative;
  padding: 1rem;
}

.work-swiper {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.work-slide {
  padding: 1rem;
}

.work-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  height: 100%;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.work-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 10, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card:hover .work-link {
  transform: translateY(0);
}

.work-content {
  padding: 1.5rem;
}

.work-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.work-description {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.work-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.work-tech span {
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  background: rgba(123, 44, 191, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--light-color);
  transition: var(--transition);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--gray-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 44, 191, 0.1);
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-text {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.contact-form {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  color: var(--light-color);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(123, 44, 191, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background: rgba(13, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 4rem 0 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 300px;
}

.footer-text {
  color: var(--gray-color);
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: var(--light-color);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--gray-color);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--light-color);
  transform: translateX(5px);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  color: var(--light-color);
  font-family: inherit;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 1.2rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-color);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-color);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--light-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Cursor Effect */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transition: transform 0.1s;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(123, 44, 191, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s, width 0.3s, height 0.3s;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader-inner {
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(123, 44, 191, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  background: var(--glass-highlight);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-socials {
    justify-content: center;
  }

  .image-wrapper {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}