/* Custom CSS Styles */
:root {
  --primary-color: #3b82f6;
  --primary-dark: #1d4ed8;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-secondary: #f9fafb;
}

[data-theme="dark"] {
  --text-color: #f9fafb;
  --text-light: #d1d5db;
  --bg-color: #111827;
  --bg-secondary: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* Navigation Styles */
.nav-link {
  @apply text-gray-600 dark:text-gray-300 hover:text-primary-600 dark:hover:text-primary-400 transition-colors duration-300 font-medium;
}

/* Button Styles */
.btn-primary {
  @apply bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-lg font-medium transition-all duration-300 inline-flex items-center justify-center shadow-lg hover:shadow-xl transform hover:-translate-y-1;
}

.btn-secondary {
  @apply bg-gray-200 dark:bg-gray-700 hover:bg-gray-300 dark:hover:bg-gray-600 text-gray-900 dark:text-white px-6 py-3 rounded-lg font-medium transition-all duration-300 inline-flex items-center justify-center;
}

.btn-sm {
  @apply px-4 py-2 text-sm rounded-lg font-medium transition-all duration-300 inline-flex items-center justify-center;
}

/* Section Styles */
.section-title {
  @apply text-4xl md:text-5xl font-bold text-center mb-4 relative flex items-center justify-center gap-3;
  position: relative;
}
.section-title-icon {
  color: #8b5cf6;
  font-size: 1.3em;
  margin-right: 0.5em;
  vertical-align: middle;
  animation: fadeInUp 1s ease-out;
}
.section-title-accent {
  display: inline-block;
  width: 48px;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: 3px;
  margin-left: 1em;
  margin-bottom: 0.2em;
  animation: gradient-shift 3s linear infinite;
}
.section-title.animate-gradient-text {
  background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 3s ease infinite;
}
.section-subtitle {
  @apply text-xl text-gray-600 dark:text-gray-300 text-center max-w-2xl mx-auto font-semibold mt-2 mb-2;
  letter-spacing: 0.01em;
}

/* Skill Styles */
.skill-bar {
  @apply w-full bg-gray-200 dark:bg-gray-700 rounded-full h-2;
}

.skill-progress {
  @apply bg-primary-500 h-2 rounded-full transition-all duration-1000 ease-out;
}

/* Tech Tag Styles */
.tech-tag {
  @apply bg-primary-100 dark:bg-primary-900 text-primary-800 dark:text-primary-200 px-3 py-1 rounded-full text-sm font-medium;
}

/* Social Link Styles */
.social-link {
  @apply w-12 h-12 bg-gray-100 dark:bg-gray-800 hover:bg-primary-600 dark:hover:bg-primary-600 text-gray-600 dark:text-gray-300 hover:text-white rounded-full flex items-center justify-center transition-all duration-300 transform hover:scale-110;
}

/* Particles Animation */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Enhanced Background Animations */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shapes::before,
.floating-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float-shapes 20s ease-in-out infinite;
}

.floating-shapes::before {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  top: 10%;
  left: 10%;
  animation-delay: -5s;
}

.floating-shapes::after {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.1), rgba(59, 130, 246, 0.1));
  bottom: 20%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes float-shapes {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(20px) rotate(240deg) scale(0.9);
  }
}

.animated-bg {
  background: linear-gradient(-45deg, 
    rgba(59, 130, 246, 0.05), 
    rgba(147, 51, 234, 0.05), 
    rgba(236, 72, 153, 0.05), 
    rgba(59, 130, 246, 0.05)
  );
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

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

/* Section-specific Background Animations */

/* About Section - Geometric Patterns */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.geometric-pattern {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  animation: rotate-pattern 15s linear infinite;
}

.geometric-pattern:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  border-radius: 0;
}

.geometric-pattern:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  border-radius: 50%;
  border-color: rgba(16, 185, 129, 0.1);
}

.geometric-pattern:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
  transform: rotate(45deg);
  border-color: rgba(236, 72, 153, 0.1);
}

@keyframes rotate-pattern {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Enhanced About Section Animations */
.about-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-triangle {
  position: absolute;
  width: 0;
  height: 0;
  animation: float-triangle 12s ease-in-out infinite;
}

.floating-triangle:nth-child(1) {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(59, 130, 246, 0.1);
  top: 20%;
  left: 80%;
  animation-delay: 0s;
}

.floating-triangle:nth-child(2) {
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(16, 185, 129, 0.1);
  top: 70%;
  left: 10%;
  animation-delay: -4s;
}

.floating-triangle:nth-child(3) {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 60px solid rgba(236, 72, 153, 0.1);
  top: 40%;
  right: 20%;
  animation-delay: -8s;
}

@keyframes float-triangle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.6;
  }
}

.morphing-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  animation: morph-blob 10s ease-in-out infinite;
}

.morphing-blob:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.morphing-blob:nth-child(5) {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 15%;
  animation-delay: -3s;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
}

.morphing-blob:nth-child(6) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  animation-delay: -6s;
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.1), rgba(16, 185, 129, 0.1));
}

@keyframes morph-blob {
  0%, 100% {
    border-radius: 50% 50% 50% 50%;
    transform: scale(1) rotate(0deg);
  }
  25% {
    border-radius: 60% 40% 60% 40%;
    transform: scale(1.1) rotate(90deg);
  }
  50% {
    border-radius: 40% 60% 40% 60%;
    transform: scale(0.9) rotate(180deg);
  }
  75% {
    border-radius: 70% 30% 70% 30%;
    transform: scale(1.05) rotate(270deg);
  }
}

.pulsing-ring {
  position: absolute;
  border: 3px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  animation: pulse-ring 8s ease-in-out infinite;
}

.pulsing-ring:nth-child(7) {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 30%;
  animation-delay: 0s;
}

.pulsing-ring:nth-child(8) {
  width: 100px;
  height: 100px;
  bottom: 40%;
  left: 25%;
  animation-delay: -2s;
  border-color: rgba(16, 185, 129, 0.2);
}

.pulsing-ring:nth-child(9) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -4s;
  border-color: rgba(236, 72, 153, 0.2);
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.floating-dots {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  animation: float-dots 6s ease-in-out infinite;
}

.floating-dots:nth-child(10) {
  top: 25%;
  left: 40%;
  animation-delay: 0s;
}

.floating-dots:nth-child(11) {
  top: 45%;
  left: 60%;
  animation-delay: -1s;
  background: rgba(16, 185, 129, 0.4);
}

.floating-dots:nth-child(12) {
  top: 65%;
  left: 45%;
  animation-delay: -2s;
  background: rgba(236, 72, 153, 0.4);
}

.floating-dots:nth-child(13) {
  top: 35%;
  left: 25%;
  animation-delay: -3s;
  background: rgba(147, 51, 234, 0.4);
}

@keyframes float-dots {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.8;
  }
}
/* Skills Section - Floating Orbs */
.skills-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  animation: float-orb 12s ease-in-out infinite;
}

.floating-orb:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-orb:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 15%;
  animation-delay: -4s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
}

.floating-orb:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 20%;
  animation-delay: -8s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent);
}

@keyframes float-orb {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-40px) translateX(20px) scale(1.1);
  }
  66% {
    transform: translateY(20px) translateX(-15px) scale(0.9);
  }
}

/* Projects Section - Code Rain */
.projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.code-rain {
  position: absolute;
  color: rgba(35, 37, 41, 0.1);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  animation: rain-fall 8s linear infinite;
}

.code-rain:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.code-rain:nth-child(2) {
  left: 30%;
  animation-delay: -2s;
}

.code-rain:nth-child(3) {
  left: 50%;
  animation-delay: -4s;
}

.code-rain:nth-child(4) {
  left: 70%;
  animation-delay: -6s;
}

.code-rain:nth-child(5) {
  left: 90%;
  animation-delay: -1s;
}

@keyframes rain-fall {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Internship Section - Network Nodes */
.internship-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: pulse-node 3s ease-in-out infinite;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  animation: flow-line 4s ease-in-out infinite;
}

@keyframes pulse-node {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

@keyframes flow-line {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Achievements Section - Trophy Sparkles */
.achievements-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle:nth-child(even) {
  background: rgba(59, 130, 246, 0.6);
  animation-delay: -1s;
}

.sparkle:nth-child(3n) {
  background: rgba(236, 72, 153, 0.6);
  animation-delay: -0.5s;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Contact Section - Wave Animation */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    transparent, 
    rgba(16, 185, 129, 0.1), 
    transparent
  );
  border-radius: 50%;
  animation: wave-motion 8s ease-in-out infinite;
}

.wave:nth-child(2) {
  animation-delay: -2s;
  opacity: 0.5;
  height: 80px;
}

.wave:nth-child(3) {
  animation-delay: -4s;
  opacity: 0.3;
  height: 60px;
}

@keyframes wave-motion {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
  .geometric-pattern {
    width: 60px;
    height: 60px;
  }
  
  .floating-triangle:nth-child(1) {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(59, 130, 246, 0.1);
  }
  
  .floating-triangle:nth-child(2) {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(16, 185, 129, 0.1);
  }
  
  .floating-triangle:nth-child(3) {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(236, 72, 153, 0.1);
  }
  
  .morphing-blob {
    width: 60px !important;
    height: 60px !important;
  }
  
  .pulsing-ring {
    width: 80px !important;
    height: 80px !important;
  }
  
  .floating-orb {
    width: 80px !important;
    height: 80px !important;
  }
  
  .code-rain {
    font-size: 10px;
  }
  
  .wave {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .geometric-pattern {
    width: 40px;
    height: 40px;
  }
  
  .floating-triangle:nth-child(1) {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(59, 130, 246, 0.1);
  }
  
  .floating-triangle:nth-child(2) {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(16, 185, 129, 0.1);
  }
  
  .floating-triangle:nth-child(3) {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid rgba(236, 72, 153, 0.1);
  }
  
  .morphing-blob {
    width: 40px !important;
    height: 40px !important;
  }
  
  .pulsing-ring {
    width: 60px !important;
    height: 60px !important;
  }
  
  .floating-orb {
    width: 60px !important;
    height: 60px !important;
  }
  
  .wave {
    height: 40px;
  }
}
/* Enhanced Particle Animation */
.particle {
  position: absolute;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
  border-radius: 50%;
  animation: enhanced-float 8s ease-in-out infinite;
}

.particle:nth-child(even) {
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.2), rgba(59, 130, 246, 0.2));
  animation-direction: reverse;
}

.particle:nth-child(3n) {
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
  animation-duration: 10s;
}

@keyframes enhanced-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-60px) translateX(-10px) rotate(180deg) scale(0.8);
  }
  75% {
    transform: translateY(-30px) translateX(-20px) rotate(270deg) scale(1.2);
  }
}

/* Text Animations */
.animate-gradient-text {
  background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 3s ease infinite;
}

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

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typing Animation */
.cursor {
  animation: blink 1.2s infinite;
  color: #3b82f6;
  font-weight: bold;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  @apply bg-gray-100 dark:bg-gray-800;
}

::-webkit-scrollbar-thumb {
  @apply bg-primary-500 rounded-full;
}

::-webkit-scrollbar-thumb:hover {
  @apply bg-primary-600;
}

/* Enhanced Responsive Design */
@media (max-width: 640px) {
  .section-title {
    @apply text-2xl;
  }
  
  .hero-title {
    @apply text-3xl;
  }
  
  .floating-shapes::before {
    width: 150px;
    height: 150px;
  }
  
  .floating-shapes::after {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .section-title {
    @apply text-3xl;
  }

  .hero-title {
    @apply text-4xl;
  }
  
  .floating-shapes::before {
    width: 200px;
    height: 200px;
  }
  
  .floating-shapes::after {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1024px) {
  .floating-shapes::before {
    width: 250px;
    height: 250px;
  }
  
  .floating-shapes::after {
    width: 180px;
    height: 180px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Project Card Hover Effects */
.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-card {
  transition: all 0.3s ease;
}

/* Enhanced Button Animations */
.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Skill Bar Enhanced Animation */
.skill-progress {
  position: relative;
  overflow: hidden;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced Social Link Animation */
.social-link {
  position: relative;
  overflow: hidden;
}

.social-link::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: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

/* Form Styles */
input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  @apply bg-green-100 dark:bg-green-900 text-green-800 dark:text-green-200 p-4 rounded-lg mb-4;
}

.error-message {
  @apply bg-red-100 dark:bg-red-900 text-red-800 dark:text-red-200 p-4 rounded-lg mb-4;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e42, #3b82f6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #3b82f6; /* fallback for unsupported browsers */
  animation: gradient-shift 5s ease-in-out infinite;
  text-shadow: 0 4px 24px rgba(59,130,246,0.15);
}
.hero-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.3em;
  font-weight: 900;
  background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6, #f59e42, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ec4899; /* fallback for unsupported browsers */
  animation: gradient-shift 3s linear infinite;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(236,72,153,0.12);
}
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
  margin-bottom: 0.5em;
}
.section-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s linear infinite;
  margin-bottom: 1.2em;
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1.1rem; }
}
