* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f172a;
  color: white;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.hero-text h1 {
  font-size: 24px;
}

.hero-text h2 {
  font-size: 40px;
}

.hero-text span {
  background: linear-gradient(45deg, pink, blue);
  -webkit-background-clip: text;
  color: transparent;
}

.hero button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: linear-gradient(45deg, pink, blue);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* HERO IMAGE */
.hero-img img {
  border-radius: 50%;
}

/* ABOUT */
.about {
  display: flex;
  align-items: center;
  padding: 50px;
}

.about img {
  border-radius: 10px;
}

.about-text {
  margin-left: 40px;
}

.about button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: linear-gradient(45deg, pink, blue);
  color: white;
  border-radius: 5px;
}

/* SERVICES */
.services {
  padding: 50px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: #1e293b;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  width: 200px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, pink, blue);
}
.student-section {
  padding: 40px;
  background: #020617;
  color: white;
}

.student-section h2 {
  margin-top: 20px;
  
  /* Gradient heading */
  background: linear-gradient(45deg, pink, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.student-section p,
.student-section li {
  color: #cbd5f5;
  margin: 10px 0;
}

.student-section hr {
  margin: 20px 0;
  border: 0;
  height: 1px;
  background: #1e293b;
}

/* TABLE */
table {
  width: 50%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #1e293b;
  padding: 10px;
  text-align: center;
}

th {
  background: linear-gradient(45deg, pink, blue);
}

/* IMAGE */
img {
  margin-top: 10px;
  border-radius: 10px;
}

/* LINK */
a {
  color: pink;
  text-decoration: none;
}

a:hover {
  color: blue;
}

/* FORM */
input {
  padding: 8px;
  width: 200px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(45deg, pink, blue);
  color: white;
  cursor: pointer;
}




.footer-bottom {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #1e293b;
  background: #020617;
}

.footer-bottom p {
  font-size: 14px;
  letter-spacing: 1px;
  
  /* Gradient text (pink + blue) */
  background: linear-gradient(45deg, pink, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}