:root {
  --bg: #1a1024;
  --accent: #c777f2;
  --accent2: #7856d0;
  --medical-blue: #4a90e2;
  --trust-green: #27ae60;
  --alert-orange: #f39c12;
  --warning-red: #e74c3c;
  --text: #eae6f2;
  --muted: #bbb;
  --white: #fff;
  --shadow: 0 6px 32px rgba(70,34,124,0.15);
  --glow: 0 0 20px rgba(199,119,242,0.3);
  --medical-shadow: 0 8px 25px rgba(74,144,226,0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg) url('https://images.unsplash.com/photo-1603415526960-f0b8fda6a01e?auto=format&fit=crop&w=1200&q=80') no-repeat center top/65vmin;
  min-height: 100vh;
  scroll-behavior: smooth;
  font-weight: 400;
  line-height: 1.6;
}

/* NAVIGATION */
.main-nav {
  background: rgba(20,10,29,0.95);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  transition: all 0.3s ease;
  font-family: 'Montserrat', 'Inter', sans-serif;
}
.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(var(--glow));
}
.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--accent2);
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}
.nav-logo:hover .nav-logo-img {
  border-color: var(--accent);
  transform: rotate(5deg);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  padding: 8px 15px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}
.nav-links a:hover,
.nav-links .dropbtn:focus {
  background: #251a34;
  color: var(--accent);
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: var(--white)!important;
  border-radius: 24px;
  padding: 12px 28px;
  margin-left: 10px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(199,119,242,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover { 
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(199,119,242,0.35);
}
.nav-cta::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;
}
.nav-cta:hover::before {
  left: 100%;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #2b1942;
  min-width: 180px;
  z-index: 10;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(60,24,100,0.14);
  top: 45px;
  left: 0;
  transition: all 0.3s ease;
}
.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 500;
}
.dropdown-content a:hover {
  background: #3f2457;
  color: var(--accent);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Prevent hover issues on touch devices */
@media (hover: none) and (pointer: coarse) {
  .dropdown:hover .dropdown-content {
    display: none !important;
  }
  
  .dropdown-content {
    display: none !important;
  }
  
  .dropdown.mobile-open .dropdown-content {
    display: block !important;
    max-height: 200px !important;
    padding: 10px 0 !important;
  }
}
.nav-toggle {
  display: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c1b3d 0%, #3a2250 40%, #c777f2 100%);
  opacity: 0.95;
  z-index: 1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(199,119,242,0.1) 0%, transparent 50%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 0;
}
.hero-content h1 {
  font-size: 2.9rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', 'Inter', sans-serif;
  line-height: 1.1;
}
.hero-content p {
  font-size: 1.25rem;
  color: #e7deff;
  margin-bottom: 34px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.cta-btn, .cta-secondary {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 32px;
  margin: 0 10px 18px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  padding: 16px 38px;
  font-size: 1.18rem;
  box-shadow: 0 8px 30px rgba(199,119,242,0.2);
}
.cta-btn:hover { 
  background: linear-gradient(135deg, var(--accent), var(--medical-blue));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(199,119,242,0.35);
}
.cta-btn::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;
}
.cta-btn:hover::before {
  left: 100%;
}
.cta-secondary {
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--accent2);
  color: #fff;
  padding: 14px 30px;
  font-size: 1.02rem;
  margin-right: 0;
  backdrop-filter: blur(10px);
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199,119,242,0.2);
}
.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  opacity: 0.83;
  flex-wrap: wrap;
}
.trusted-logos img {
  height: 36px;
  filter: grayscale(1) brightness(1.1);
}

/* SECTION TITLES */
.section-title {
  font-size: 2.3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent2), var(--accent), var(--medical-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 0;
  position: relative;
  font-family: 'Montserrat', 'Inter', sans-serif;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 2px;
}

/* FEATURES */
.features-section {
  background: linear-gradient(135deg, #221637 0%, #2a1c42 50%, #1e1330 100%);
  padding: 60px 0 44px;
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(199,119,242,0.05) 0%, transparent 50%);
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  justify-content: center;
}
.feature-card {
  background: linear-gradient(135deg, #2e1d49 0%, #3a2659 100%);
  color: #fff;
  border-radius: 22px;
  padding: 36px 28px 28px;
  width: 250px;
  min-height: 240px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(199,119,242,0.1);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--medical-blue), var(--trust-green), var(--alert-orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(199,119,242,0.25);
  border-color: var(--accent);
}
.feature-icon {
  font-size: 2.3rem;
  background: var(--accent2);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 6px 20px rgba(199,119,242,0.25);
  transition: all 0.3s ease;
  position: relative;
}
.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--medical-blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover .feature-icon::before {
  opacity: 1;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 30px rgba(199,119,242,0.4);
}

/* Medical-themed color coding for different features */
.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, var(--medical-blue), #5ba3f5);
}
.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, var(--alert-orange), #f5b942);
}
.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, var(--trust-green), #2ecc71);
}
.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}
.feature-card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  margin-top: 0;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.feature-card:hover h3 {
  color: #fff;
}
.feature-card p {
  font-family: 'Inter', sans-serif;
  color: #d8caff;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
  font-weight: 400;
}
.feature-card:hover p {
  color: #eae6f2;
}

/* TEAM */
.team-section {
  background: linear-gradient(135deg, #261b3d 0%, #2f1f47 50%, #7856d0 100%);
  padding: 64px 0 42px;
  position: relative;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120,86,208,0.1) 0%, transparent 50%);
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 32px;
  margin-bottom: 22px;
}
.team-card {
  background: linear-gradient(135deg, #fff 0%, #f8f6ff 100%);
  color: #3a2250;
  border-radius: 22px;
  box-shadow: var(--shadow);
  width: 210px;
  min-height: 280px;
  padding: 55px 20px 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  overflow: visible;
  margin-top: 50px;
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(45deg, var(--accent), var(--medical-blue), var(--trust-green));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover::before {
  opacity: 0.1;
}
.team-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(120,86,208,0.25);
  border-color: var(--accent);
}
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 4px solid var(--accent2);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6f2ff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(120,86,208,0.2);
}
.team-card:hover img {
  border-color: var(--accent);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 35px rgba(120,86,208,0.35);
}
.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--accent2);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.team-role {
  color: #9675ff;
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.team-desc {
  font-size: 0.95rem;
  color: #654e8a;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.meet-more {
  text-align: center;
  margin-top: 18px;
}
.meet-btn {
  background: var(--accent2);
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(120,86,208,0.12);
  transition: background 0.2s;
}
.meet-btn:hover { background: var(--accent); }

/* TESTIMONIALS */
.testimonials-section {
  background: #251a34;
  padding: 64px 0 48px;
}
.testimonial-slider {
  max-width: 480px;
  margin: 0 auto 16px auto;
  position: relative;
}
.testimonial {
  display: none;
  background: #2e1d49;
  color: #fff;
  border-radius: 22px;
  padding: 32px 30px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 1.08rem;
  min-height: 160px;
  transition: opacity 0.3s;
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
}
.testimonial.active {
  display: block;
  position: static;
  opacity: 1;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(.95);}
  100% { opacity: 1; transform: scale(1);}
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 18px;
  font-size: 1rem;
  color: #b0a4e7;
}
.testimonial-meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent2);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.testimonial-controls button {
  background: var(--accent2);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background .17s;
}
.testimonial-controls button:hover { background: var(--accent); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2e1d49 0%, #3d2759 50%, #c777f2 100%);
  text-align: center;
  padding: 56px 0 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(199,119,242,0.1) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.cta-section p {
  color: #eae6f2;
  font-size: 1.15rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.cta-btn.big {
  padding: 22px 55px;
  font-size: 1.35rem;
  margin-right: 20px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--trust-green), var(--medical-blue));
  box-shadow: 0 10px 35px rgba(39,174,96,0.25);
}
.cta-btn.big:hover {
  background: linear-gradient(135deg, var(--medical-blue), var(--accent));
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(39,174,96,0.4);
}

/* FOOTER */
footer {
  background: #170d23;
  color: var(--muted);
  padding: 34px 0 20px 0;
  text-align: center;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 13px;
  font-size: 1.03rem;
  transition: color .18s;
}
.footer-links a:hover { color: var(--accent);}
.footer-social {
  margin-bottom: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 7px;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #fff;
  font-size: 1.23rem;
  transition: color .18s, border-color .18s, background .16s;
}
.footer-social a:hover {
  color: var(--accent2);
  border-color: var(--accent2);
  background: #2b1942;
}
.footer-copy { font-size: 0.98rem; color: #7b6c9e; margin-top: 14px;}

/* RESPONSIVE */
@media (max-width: 950px) {
  .features, .team-cards { 
    flex-direction: column; 
    gap: 25px; 
    align-items: center;
  }
  .feature-card, .team-card { 
    width: 98%; 
    max-width: 340px; 
    margin: 0 auto;
  }
  .testimonial-slider { max-width: 98%; }
  
  /* Better team card spacing on tablets */
  .team-section {
    padding: 50px 20px 35px;
  }
  
  .team-cards {
    gap: 60px !important;
  }
  
  .team-card {
    margin-top: 50px;
    padding: 50px 20px 25px;
  }
  
  .team-card img {
    width: 85px;
    height: 85px;
    top: -42px;
  }
}
@media (max-width: 700px) {
  .hero-content h1 { 
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .section-title { 
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  /* Better mobile spacing */
  .features-section,
  .team-section,
  .cta-section {
    padding: 40px 15px 30px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 300px;
    padding: 30px 20px 25px;
  }
  
  .team-card {
    width: 100%;
    max-width: 290px;
    margin-top: 50px !important;
    padding: 45px 20px 25px !important;
    min-height: 260px !important;
  }
  
  .team-card img {
    width: 75px !important;
    height: 75px !important;
    top: -37px !important;
    border-width: 3px !important;
  }
}
@media (max-width: 600px) {
  .nav-container { padding: 0 15px; }
  
  /* Ensure team images work on all mobile devices */
  .team-card {
    margin-top: 50px !important;
    padding: 45px 20px 25px !important;
  }
  
  .team-card img {
    width: 75px !important;
    height: 75px !important;
    top: -37px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  .team-card:hover img {
    transform: translateX(-50%) scale(1.05) !important;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    background: rgba(26,16,36,0.98);
    backdrop-filter: blur(10px);
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
    border-top: 1px solid rgba(199,119,242,0.2);
  }
  
  .nav-links li { 
    width: 100%; 
    text-align: center;
    padding: 0 20px;
  }
  
  .nav-links a {
    display: block;
    padding: 15px 20px;
    width: 100%;
    border-radius: 8px;
    margin: 5px 0;
  }
  
  .nav-links.show { 
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    position: static !important;
    display: block !important;
    min-width: 100%;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(60,24,100,0.2);
    top: auto !important;
    left: auto !important;
    background: rgba(43,25,66,0.8);
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    max-height: 200px;
    padding: 10px 0;
  }
  
  .dropdown-content a {
    padding: 12px 25px !important;
    margin: 2px 0 !important;
  }
  
  .nav-toggle { 
    display: block;
    font-size: 1.8rem;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle:hover {
    background: rgba(199,119,242,0.1);
  }
  
  .nav-cta {
    margin: 10px 20px !important;
    text-align: center;
    padding: 12px 25px !important;
  }
  
  /* Fix hero section on mobile */
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .cta-btn, .cta-secondary {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 10px auto !important;
    text-align: center;
  }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
  .team-section {
    padding: 35px 10px 25px !important;
  }
  
  .team-cards {
    gap: 60px !important;
  }
  
  .team-card {
    max-width: 260px !important;
    margin-top: 45px !important;
    padding: 40px 15px 20px !important;
    min-height: 240px !important;
  }
  
  .team-card img {
    width: 70px !important;
    height: 70px !important;
    top: -35px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  .team-card:hover img {
    transform: translateX(-50%) scale(1.05) !important;
  }
  
  .team-card h4 {
    font-size: 1.1rem !important;
    margin-bottom: 3px !important;
    margin-top: 5px !important;
  }
  
  .team-role {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }
  
  .team-desc {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }
}

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

/* SCROLLBAR STYLE (optional, for a premium feel) */
::-webkit-scrollbar { width: 12px; background: #211531;}
::-webkit-scrollbar-thumb { 
  background: linear-gradient(135deg, #3a2250, var(--accent2)); 
  border-radius: 6px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(199,119,242,0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(199,119,242,0.6);
  }
}

/* Apply animations */
.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.nav-logo-img {
  animation: glow 3s ease-in-out infinite;
}
