/* Root Variables */
:root {
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #f8fafc;
  --color-background: #ffffff;
  --color-foreground: #0f172a;
  --color-muted: #64748b;
  --color-muted-light: #f1f5f9;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-card: #ffffff;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-blue: #2563eb;
  --color-indigo: #4f46e5;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.5;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.text-blue {
  color: var(--color-blue);
  font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 1rem;
    font-size: 15px;
    box-shadow: 0 0 10px #0003;
}

.navbar-collapse {
    align-items: center;
    justify-content: space-between;
}

.contact-link {
    background-color: var(--color-primary);
    color: var(--color-gray-50);
    margin-left: 20px;
    border-radius: 7px;
}

.contact-link:hover {
    color: var(--color-gray-50);
    background-color: var(--color-primary-hover);
}

.dropdown-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-img img {
    width: 30px;
}

@media screen and (max-width: 767px) {
    .navbar-brand {
        display: none;
    }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-gray-50);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  padding: 0.5rem;
  width: auto;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0;
  background: #e695ed;
  background: radial-gradient(circle, rgba(230, 149, 237, 0.36) 0%, rgba(122, 149, 222, 0.3) 56%, rgba(230, 149, 237, 0.27) 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
}


.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, #6366f1 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero-text {
  flex: 1;
  text-align: center;
  max-width: 600px;
  animation: slideInLeft 0.8s ease-out;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeInDown 0.6s ease-out 0.2s both;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Title */
.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title-line {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-title-line {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #4f46e5);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

.hero-subtitle-line {
  display: block;
  font-size: 1.5rem;
  color: var(--color-muted);
  margin: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-subtitle-line {
    font-size: 2.5rem;
  }
}

/* Enhanced Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-subtitle strong {
  color: var(--color-foreground);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 1024px) {
  .trust-indicators {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.trust-badge-yellow {
  background: #fef3c7;
  color: #d97706;
  border-color: #fbbf24;
}

.trust-badge-blue {
  background: #dbeafe;
  color: var(--color-primary);
  border-color: #93c5fd;
}

.trust-badge-green {
  background: #dcfce7;
  color: #16a34a;
  border-color: #86efac;
}

/* Enhanced Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-enhanced {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-enhanced:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-enhanced {
  background: linear-gradient(135deg, var(--color-primary), #4f46e5);
  border: none;
}

.btn-primary.btn-enhanced:hover {
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.btn-outline.btn-enhanced {
  border: 2px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.btn-outline.btn-enhanced:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #1d4ed8;
}

/* Enhanced Social Links */
.social-links-enhanced {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@media (min-width: 1024px) {
  .social-links-enhanced {
    justify-content: flex-start;
  }
}

.social-link-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-enhanced:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 1);
}

/* Enhanced Profile Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@media (min-width: 1024px) {
  .hero-image {
    justify-content: flex-end;
  }
}

.profile-container-enhanced {
  position: relative;
  animation: float-profile 6s ease-in-out infinite;
}

.animated-ring {
  position: absolute;
  inset: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
  animation: rotate-ring 8s linear infinite;
  z-index: 1;
}

@media (min-width: 1024px) {
  .animated-ring {
    width: 24rem;
    height: 24rem;
  }
}

.profile-image {
  position: relative;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-xl);
  margin: 0.25rem;
  z-index: 2;
}

@media (min-width: 1024px) {
  .profile-image {
    width: 24rem;
    height: 24rem;
  }
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Skill Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.floating-badge-1 {
  top: 2rem;
  right: -1rem;
  animation: float-badge-1 3s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 2rem;
  left: -1rem;
  animation: float-badge-2 3s ease-in-out infinite 1.5s;
}

.floating-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

/* Enhanced Decorative Elements */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.bg-decoration-1 {
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  filter: blur(40px);
  animation: float-decoration-1 4s ease-in-out infinite;
}

.bg-decoration-2 {
  bottom: -2rem;
  left: -2rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(59, 130, 246, 0.3));
  filter: blur(40px);
  animation: float-decoration-2 5s ease-in-out infinite 1s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-indicator-container {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: var(--color-primary);
  border-radius: 0.125rem;
  animation: scroll-dot 2s ease-in-out infinite;
}

/* Section Styles */
section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: var(--color-muted-light);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .card {
    padding: 3rem;
  }
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.about-paragraph {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.about-paragraph strong {
  color: var(--color-foreground);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.highlight-icon-blue {
  background-color: #dbeafe;
  color: var(--color-primary);
}

.highlight-icon-red {
  background-color: #fef2f2;
  color: #dc2626;
}

.highlight-icon-green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.highlight-content h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.highlight-content p {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Skills Section */
.skills-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.skills-category-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

.skills-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.skill-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 122px;
}

.skill-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.skill-info h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.skill-description {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  font-size: 1.5rem;
}

.skill-icon img {
  width: 100%;
  height: auto;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-orange {
  background-color: #fed7aa;
  color: #c2410c;
}

.badge-blue {
  background-color: #dbeafe;
  color: var(--color-primary);
}

.badge-yellow {
  background-color: #fef3c7;
  color: #d97706;
}

.badge-purple {
  background-color: #e9d5ff;
  color: #7c3aed;
}

.badge-default {
  background-color: var(--color-foreground);
  color: white;
}

.badge-secondary {
  background-color: var(--color-gray-200);
  color: var(--color-gray-700);
}

.badge-outline {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-foreground);
}

/* Projects Section */
.projects-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--color-muted);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-buttons {
  display: flex;
  gap: 0.5rem;
}

.projects-more {
  text-align: center;
}

/* Contact Section */
.contact {
  background-color: var(--color-muted-light);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 425px) {
  .correo 
  {
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact-grid {
    flex-direction: row;
  }

}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #dbeafe;
  color: var(--color-primary);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

.contact-description {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-icon-blue {
  background-color: #dbeafe;
  color: var(--color-primary);
}

.contact-item-icon-green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.contact-item-icon-purple {
  background-color: #f3f4f6;
  color: #7c3aed;
}

.contact-item-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-weight: 500;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 15px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.contact-form-container {
  width: 100%;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  background-color: var(--color-background);
  transition: border-color 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer Styles */
.footer {
  background-color: var(--color-gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--color-gray-300);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-gray-800);
  border-radius: var(--radius);
  color: white;
  transition: background-color 0.2s ease;
  text-decoration: none;
  font-size: 1rem;
}

.footer-social-link:hover {
  background-color: var(--color-primary);
}

.footer-list {
  list-style: none;
  color: var(--color-gray-300);
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-300);
}

.footer-contact-item .icon {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: 2rem;
  text-align: center;
  color: var(--color-gray-400);
}

/* Icon Styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}

/* Animations */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(20px) scale(0.9); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float-profile {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float-badge-1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-badge-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

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

@keyframes float-decoration-2 {
  0%, 100% { transform: scale(1) rotate(360deg); }
  50% { transform: scale(0.8) rotate(180deg); }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero {
        padding: 1rem 0;
    }
  .hero-title-line {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .profile-image,
  .animated-ring {
    width: 14rem;
    height: 14rem;
  }
  
  .hero-content {
    padding: 2rem 0;
    gap: 1rem;
  }
  
  .floating-badge {
    display: none;
  }
}