body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0F172A, #1E1B4B);
  color: #fff;
}

/* Navigation */
.navigation {
  background-color: rgba(15, 23, 42, 0.9);
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.nav-item {
  margin: 0 25px;
}

.nav-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.nav-item a:hover {
  color: #00ffff;
}

/* Education Section */
.education-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.education-section h2 {
  text-align: center;
  color:  #00BCD4;
  font-size: 36px;
  margin-bottom: 50px;
  border-bottom: 2px solid #00ffff;
  display: inline-block;
  padding-bottom: 10px;
}

/* Education Grid */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Individual Cards */
.edu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.edu-card h3 {
  font-size: 22px;
  color: #00BCD4;
  margin-bottom: 10px;
}

.institution {
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

.duration {
  font-style: italic;
  color: #ccc;
  margin-bottom: 12px;
}

.details {
  font-size: 15px;
  line-height: 1.6;
  color: #eee;
}

/* Responsive */
@media (max-width: 600px) {
  .education-section h2 {
    font-size: 28px;
  }

  .edu-card h3 {
    font-size: 18px;
  }

  .details {
    font-size: 14px;
  }

  .nav-item a {
    font-size: 16px;
  }
}
