/* Advanced Animations and Effects */

/* Keyframe Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes ping {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

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

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

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

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(139, 92, 246, 0.3);
  }
}

/* Outstanding Animations and Effects */
@keyframes neonGlow {
  0%,
  100% {
    box-shadow: 0 0 20px #00c3ff, 0 0 40px #8b5cf6;
  }
  50% {
    box-shadow: 0 0 40px #00c3ff, 0 0 80px #8b5cf6;
  }
}

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

/* About Page Styles */
.about-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  min-height: 100vh;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.skills-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.bio p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease-out;
}

.profile-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

/* Skills Section */
.skills-section {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.skills-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.skill-category {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid var(--accent-cyan);
  border-radius: 10px;
  padding: 1.5rem;
}

.skill-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.skill-category h4 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.4rem 0.8rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--accent-purple);
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--accent-purple);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

/* Projects Page Styles */
.projects-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  min-height: 100vh;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.project-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px #00c3ff55;
}

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

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

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project-btn {
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-project-btn:hover {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.project-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.tech-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
}

/* Contact Page Styles */
.contact-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  min-height: 100vh;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 1px solid var(--border-glow);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.contact-details h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-secondary);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glow);
  border-radius: 25px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  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.1), transparent);
  transition: left 0.5s ease;
}

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

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.social-link.linkedin:hover {
  border-color: #0077b5;
  box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.social-link.github:hover {
  border-color: #333;
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.3);
}

.social-link.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.social-link.email:hover {
  border-color: #ea4335;
  box-shadow: 0 10px 20px rgba(234, 67, 53, 0.3);
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form-container {
  position: relative;
}

.contact-form {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  border-radius: 15px;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: #10b981;
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* Resume Page Styles */
.resume-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  min-height: 100vh;
}

.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.download-actions {
  display: flex;
  gap: 1rem;
}

.download-btn,
.print-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-btn:hover,
.print-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.resume-content {
  max-width: 800px;
  margin: 0 auto;
}

.resume-section-block {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.resume-section-block h2 {
  color: var(--accent-cyan);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-cyan);
  padding-bottom: 0.5rem;
}

.personal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  padding: 1rem;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
}

.experience-item,
.education-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glow);
}

.experience-item:last-child,
.education-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-header h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
}

.job-period,
.education-period {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

.company,
.institution {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
}

.job-responsibilities {
  list-style: none;
  padding: 0;
}

.job-responsibilities li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.job-responsibilities li::before {
  content: "▶";
  color: var(--accent-cyan);
  position: absolute;
  left: 0;
}

/* Services Page Styles */
.services-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  min-height: 100vh;
}

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

.services-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px #00c3ff55;
}

.service-card.featured {
  border: 2px solid var(--accent-cyan);
  background: rgba(0, 255, 255, 0.05);
}

.service-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  color: var(--accent-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-price {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
}

.cta-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 15px;
  padding: 3rem;
  margin-top: 3rem;
}

.cta-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.cta-btn.secondary {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid #25d366;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* WhatsApp Button Styles */
.quantum-btn.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid #25d366;
  color: #25d366;
}

.quantum-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* Navigation Updates */
.nav-links a,
.mobile-menu a {
  position: relative;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.7em 1.2em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}

.nav-links a:focus,
.mobile-menu a:focus {
  outline: 2px solid #00c3ff;
  box-shadow: 0 0 12px #00c3ff;
}

.nav-links a.active,
.mobile-menu a.active {
  background: linear-gradient(90deg, #00c3ff, #8b5cf6);
  color: #ffff1c !important;
  border-bottom: 3px solid #ffff1c;
  box-shadow: 0 2px 12px #00c3ff;
}

.nav-links a:hover,
.mobile-menu a:hover {
  background: linear-gradient(90deg, #8b5cf6, #00c3ff);
  color: #ffff1c !important;
  text-decoration: underline;
}

/* Hamburger tap area */
.mobile-menu-btn {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

/* Mobile menu animation */
.mobile-menu.active {
  animation: slideDownMenu 0.4s ease;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-container {
    width: 300px;
    height: 300px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

  .resume-header {
    flex-direction: column;
    text-align: center;
  }

  .download-actions {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .personal-info {
    grid-template-columns: 1fr;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .about-section,
  .projects-section,
  .contact-section,
  .resume-section,
  .services-section {
    padding: 100px 0 60px;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-container {
    width: 250px;
    height: 250px;
  }

  .skill-category,
  .contact-form,
  .resume-section-block,
  .service-card,
  .cta-section {
    padding: 1.5rem;
  }

  .nav-links a,
  .mobile-menu a {
    width: 100%;
    padding: 0.5em 1em;
    max-width: 250px;dding: 0.5em 1em;
    font-size: 1rem;   max-width: 250px;
    justify-content: center;rem;
  }
}

.download-btn,
.print-btn,
.submit-btn,
.site-footer {
  background: linear-gradient(90deg, #0f2027 60%, #00c3ff 100%);
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}
 .site-footer {
.site-footer { padding: 2.2rem 0 1.2rem 0;
  background: linear-gradient(90deg, #0f2027 60%, #00c3ff 100%);
  color: #fff;
  text-align: center;3ff;
  font-family: 'JetBrains Mono', 'Inter', monospace;2px 16px #00c3ff33;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-top: 4rem;
  border-top: 2px solid #00c3ff;
  box-shadow: 0 -2px 16px #00c3ff33;
  position: relative;
}
em 0 1.2rem 0;
.footer-details a {Brains Mono', 'Inter', monospace;
  color: #ffff1c;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s; {
}  color: inherit;

.footer-details a:hover {
  color: #8b5cf6;
} text-decoration: none;
  color: #ffff1c;




































}  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);  transform: translateY(-2px);.quantum-btn:hover {}  transition: transform 0.3s ease;  text-decoration: none;  background: var(--gradient-primary);  font-weight: 600;  color: white;  border-radius: 25px;  border: none;  padding: 0.8rem 1.5rem;  justify-content: center;  align-items: center;  display: inline-flex;.quantum-btn {}  transform: translateY(-2px);aiesec-link:hover {}  transition: transform 0.3s ease;  text-align: center;  font-weight: 600;  color: white;  border-radius: 25px;  background: var(--gradient-primary);  padding: 0.8rem 1.5rem;  margin-bottom: 2rem;  display: inline-block;.aiesec-link {/* Specific Styles for Additional Pages */  transition: color 0.2s;
  cursor: pointer;
}

.footer-details a:hover {
  color: #8b5cf6;
}

.aiesec-link {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s ease;
}

aiesec-link:hover {
  transform: translateY(-2px);
}

.quantum-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  background: var(--gradient-primary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.quantum-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

a, button {













}  box-shadow: 0 0 12px #00c3ff;  outline: 2px solid #00c3ff;.quantum-btn:focus {.cta-btn:focus,input:focus,button:focus,a:focus,}  outline: none;  text-decoration: none;  color: inherit;  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
