/* ===== GLOBAL ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  padding-top: 80px;
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

/* ===== NAVBAR ===== */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.6) !important;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.85) !important;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/carousel/artificialintelligence1.jpg') center/cover no-repeat;
  padding: 120px 0;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ===== CARDS ===== */
.card {
  border-radius: 16px;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.card img { border-top-left-radius: 16px; border-top-right-radius: 16px; max-height: 200px; object-fit: cover; }

/* ===== BUTTONS ===== */
.btn-modern {
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.btn-modern:hover {
  background-color: #0d6efd;
  color: #fff;
}
