body {
  background: linear-gradient(120deg, #e0eafc, #cfdef3);
  min-height: 100vh;
}
.hero-section {
  background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
  color: #222;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.disease-card {
  border: none;
  border-radius: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.disease-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.card-title {
  font-weight: 600;
}
.btn {
  border-radius: 2rem;
  font-weight: 500;
}
#predictModal .modal-content {
  border-radius: 1.5rem;
}
#fileView table {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
#uploadResult {
  border-radius: 1rem;
}

/* Modern Footer Styles */
.footer-modern {
  position: relative;
  background: linear-gradient(135deg, #1fa2ff 0%, #12d8fa 50%, #a6ffcb 100%);
  color: #111;
  margin-top: 5rem;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('Image/footer-wave.svg') no-repeat bottom center;
  background-size: cover;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.footer-section {
  padding: 0 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 rgba(31,162,255,0.08);
  transition: box-shadow 0.3s;
}
.footer-section:hover {
  box-shadow: 0 8px 32px 0 rgba(31,162,255,0.18);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 25px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.health-icon {
  height: 22px;
  width: auto;
  border-radius: 50%;
  margin-left: 10px;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.health-icon:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo-text {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #222;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #111;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: 1px;
}
.footer-title::after {
  content: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-weight: 500;
}
.footer-links a:hover {
  color: #ff6b6b;
  transform: translateX(5px) scale(1.08);
  text-shadow: 0 2px 8px #ff6b6b22;
}
.footer-links a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ff6b6b;
}
.footer-links a:hover::before {
  opacity: 1;
  left: -20px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12d8fa 0%, #a6ffcb 100%);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px #12d8fa33;
}
.social-link:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #f9d423 100%);
  color: #fff;
  box-shadow: 0 4px 16px #ff6b6b55;
  transform: translateY(-3px) scale(1.1);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.email:hover {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.social-link.linkedin:hover {
  background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-link.twitter:hover {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #222;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #ff6b6b;
  transform: translateX(5px);
}

.contact-item i {
  width: 20px;
  color: #ffa500;
  font-size: 1.1rem;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.copyright {
  color: #222;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-section {
    border-radius: 0 0 1rem 1rem;
    padding: 2rem 1rem;
  }
  .disease-card {
    margin-bottom: 1.5rem;
  }
  
  .footer-content {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-waves {
    height: 100px;
  }
}

@media (max-width: 575px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
} 