@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:ital,wght@0,700;0,800;0,900;1,700&family=Space+Grotesk:wght@500;700&display=swap');

/* Design System Variables */
:root {
  --bg-dark: #0f0f0f;
  --bg-card: rgba(15, 15, 15, 0.55);
  --bg-card-hover: rgba(25, 25, 25, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.18);
  --color-white: #ffffff;
  --color-text-muted: #a0a0a0;
  
  /* Palette Colors */
  --neon-pink: #FF3CAC;
  --neon-red: #FF3D57;
  --neon-yellow: #FFD54A;
  
  /* Gradient */
  --primary-gradient: linear-gradient(135deg, var(--neon-pink), var(--neon-red), var(--neon-yellow));
  --text-gradient: linear-gradient(135deg, var(--neon-pink), var(--neon-red), var(--neon-yellow));
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-content: 'Inter', sans-serif;
  --font-button: 'Space Grotesk', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Global & Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-aos] {
  transition-property: opacity, transform !important;
}

html {
  scroll-behavior: initial; /* Handled by Lenis smooth scroll */
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-white);
  font-family: var(--font-content);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-gradient-radial {
  position: fixed;
  width: 60vw;
  height: 60vw;
  top: -10vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.15) 0%, rgba(255, 61, 87, 0.05) 50%, rgba(15, 15, 15, 0) 100%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  animation: float-slow 20s infinite alternate;
}

.bg-gradient-radial-bottom {
  position: fixed;
  width: 60vw;
  height: 60vw;
  bottom: -10vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(255, 213, 74, 0.08) 0%, rgba(255, 61, 87, 0.03) 60%, rgba(15, 15, 15, 0) 100%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  animation: float-slow-reverse 25s infinite alternate;
}

/* Custom Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  box-shadow: 0 0 10px var(--neon-pink);
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-muted-custom {
  color: var(--color-text-muted);
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 60, 172, 0.05);
}

/* Custom Cursor Glow */
.cursor-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 61, 87, 0.12) 0%, rgba(255, 213, 74, 0.03) 50%, rgba(0,0,0,0) 70%);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  transition: width 0.3s ease, height 0.3s ease;
  filter: blur(20px);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gradient);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-red);
}

/* Header & Navigation */
.navbar-custom {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

.nav-link-custom {
  font-family: var(--font-button);
  color: var(--color-white) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
  position: relative;
  opacity: 0.8;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  opacity: 1;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-tagline {
  font-family: var(--font-button);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.typing-container {
  height: 40px;
  margin-top: 10px;
}

.typing-text {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: 0 0 30px rgba(255, 60, 172, 0.1);
}

/* Image Showcase Layout */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}

.blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(10px);
  opacity: 0.75;
  animation: morph-blob 12s ease-in-out infinite alternate;
  z-index: -1;
  box-shadow: 0 0 50px rgba(255, 61, 87, 0.4), 0 0 100px rgba(255, 213, 74, 0.2);
}

.gradient-circle {
  position: absolute;
  width: 92%;
  height: 92%;
  top: 4%;
  left: 4%;
  background: var(--bg-dark);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph-blob 12s ease-in-out infinite alternate;
  z-index: 1;
}

.avatar-img {
  position: absolute;
  width: 84%;
  height: 84%;
  top: 8%;
  left: 8%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph-blob 12s ease-in-out infinite alternate;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Floating Tech Icons */
.floating-tech-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.floating-tech-icon:hover {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(255, 60, 172, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* Floating positions */
.icon-wp { top: 0%; left: 0%; animation: float-around 6s ease-in-out infinite; color: #21759b; }
.icon-shopify { top: -5%; right: 10%; animation: float-around 7s ease-in-out infinite 1s; color: #96bf48; }
.icon-html { top: 35%; left: -15%; animation: float-around 5s ease-in-out infinite 2s; color: #e34f26; }
.icon-css { top: 40%; right: -15%; animation: float-around 8s ease-in-out infinite 0.5s; color: #1572b6; }
.icon-js { bottom: 10%; left: -5%; animation: float-around 6s ease-in-out infinite 1.5s; color: #f7df1e; }
.icon-bootstrap { bottom: 15%; right: -5%; animation: float-around 7s ease-in-out infinite 2.5s; color: #7952b3; }
.icon-elementor { bottom: -5%; left: 35%; animation: float-around 6.5s ease-in-out infinite 0.8s; color: #92003B; }
.icon-woo { bottom: -5%; right: 25%; animation: float-around 5.5s ease-in-out infinite 1.8s; color: #96588a; }

/* Buttons & Links */
.btn-custom {
  font-family: var(--font-button);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: var(--bg-dark);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 60, 172, 0.4), 0 0 15px rgba(255, 213, 74, 0.2);
  color: var(--bg-dark);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.btn-outline-custom:hover {
  border-color: transparent;
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.btn-outline-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-custom:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Button Ripple effect */
.btn-ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Section Header */
.section-padding {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.section-tagline {
  font-family: var(--font-button);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

/* About Me & Experience Cards */
.experience-counter-card {
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.counter-label {
  font-family: var(--font-button);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 5px;
}

/* Services section */
.service-card {
  padding: 50px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-icon-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(255, 61, 87, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: var(--neon-pink);
  border: 1.5px solid rgba(255, 60, 172, 0.25);
  box-shadow: 0 0 20px rgba(255, 60, 172, 0.1);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-gradient);
  filter: blur(12px);
  opacity: 0.15;
  z-index: -1;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--primary-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 25px rgba(255, 61, 87, 0.4);
}

.service-card:hover .service-icon-wrapper::before {
  opacity: 0.5;
  filter: blur(16px);
}

.service-icon-wrapper i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper i {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--bg-dark);
  color: var(--bg-dark);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.service-card:hover h3 {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Technical Skills */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.skill-badge {
  padding: 12px 25px;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  cursor: default;
}

.skill-badge i {
  font-size: 1.2rem;
}

.skill-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 61, 87, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 61, 87, 0.15), 0 0 10px rgba(255, 60, 172, 0.1);
}

/* Development Process (Flow timeline) */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.process-step {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  border: 2px solid var(--border-glass);
  background: var(--bg-card);
  padding: 10px;
}

.process-step:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: transparent;
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(255, 60, 172, 0.2);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  padding: 2px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
  animation: move-gradient 4s linear infinite;
}

.process-step:hover::after {
  opacity: 1;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-step-title {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-connector {
  font-size: 1.5rem;
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-connector i {
  display: inline-block;
  animation: pulse-arrow 1.5s infinite alternate;
}

/* Swiper Slider Containers */
.portfolio-slider-container,
.testimonials-slider-container {
  overflow: hidden;
  padding: 30px 10px 80px 10px;
}

.project-card {
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.project-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #181818;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.project-tag {
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-badge {
  font-family: var(--font-button);
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.project-link-btn {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.project-link-btn:hover {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper-pagination-bullet-active {
  background: var(--primary-gradient) !important;
  width: 24px !important;
  border-radius: 10px !important;
}

.swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

/* Why Hire Me list items */
.hire-grid-card {
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
}

.hire-check-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 60, 172, 0.1);
  border: 1px solid rgba(255, 60, 172, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-pink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hire-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hire-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Testimonials */
.testimonial-card {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-stars {
  color: var(--neon-yellow);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.test-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.test-author-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.test-author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-gradient);
  padding: 1px;
}

.test-author-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
}

.test-author-name {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1rem;
}

.test-author-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Contact Section & Form */
.contact-info-card {
  padding: 40px;
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 61, 87, 0.15);
  border: 1px solid rgba(255, 61, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--neon-red);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon-box {
  transform: scale(1.1);
  background: var(--primary-gradient);
  color: var(--bg-dark);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Footer Section */
.footer-section {
  background: #070707;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 5;
}

.footer-logo {
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--primary-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(255, 60, 172, 0.2);
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Custom Gradient Borders Animations */
.gradient-border-box {
    position: relative;
    border-radius: 20px;
    padding: 1px;
    background: var(--border-glass);
    transition: var(--transition-smooth);
    padding: 30px;
}

.gradient-border-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-red), var(--neon-yellow), var(--neon-pink));
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
  animation: move-gradient 4s linear infinite;
}

.gradient-border-box:hover::before {
  opacity: 1;
}

/* CSS Animations Keyframes */
@keyframes morph-blob {
  0% {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  }
  33% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  66% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  }
}

@keyframes float-slow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-5%) scale(1.1); }
}

@keyframes float-slow-reverse {
  0% { transform: translateY(0) scale(1.1); }
  100% { transform: translateY(5%) scale(1); }
}

@keyframes float-around {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-arrow {
  0% { transform: translateX(0px); opacity: 0.5; }
  100% { transform: translateX(8px); opacity: 1; }
}

@keyframes move-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsiveness overrides */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 140px;
    text-align: center;
  }
  .hero-image-wrapper {
    margin-top: 50px;
  }
  .process-flow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 25px;
  }
  .process-step {
    width: 125px;
    height: 125px;
  }
  .process-connector {
    display: none !important;
  }
}

@keyframes pulse-arrow-down {
  0% { transform: translateY(0px) rotate(90deg); opacity: 0.5; }
  100% { transform: translateY(8px) rotate(90deg); opacity: 1; }
}

/* GPU Hardware Acceleration for Smooth Scrolling & Transitions */
.project-card,
.project-img,
.avatar-img,
.glass-panel,
.service-card,
.floating-tech-icon {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Pricing Section Styles */
.pricing-card {
  padding: 50px 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.price-symbol {
  font-size: 1.8rem;
  vertical-align: super;
  margin-right: 5px;
}

.price-suffix {
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-features-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.pricing-features-list i {
  flex-shrink: 0;
}

.featured-pricing-card {
  box-shadow: 0 15px 35px rgba(255, 60, 172, 0.15), 0 0 20px rgba(255, 61, 87, 0.05);
}

.fs-7 {
  font-size: 0.85rem !important;
}

.fs-8 {
  font-size: 0.75rem !important;
}
