body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  background: #f9fafc;
  color: #222;
}

h1, h2, h3 {
  color: #004aad;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #004aad, #00a2ff);
  color: white;
}

.hero .trial {
  margin-top: 10px;
  font-size: 1.1em;
  color: #fff7cc;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: #ffb703;
  color: black;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background: #ffd166;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #004aad;
  color: white;
}


iframe {
  border: none;
  width: 100%;
  max-width: 800px;
  height: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.notice-bar {
  background-color: #d32f2f;  /* deep red */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.notice-bar p {
  margin: 0;
}

.notice-bar {
  animation: fadeIn 1.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mentor-photo {
  text-align: center;
  margin: 20px 0;
}

.mentor-photo img {
  width: 180px;           /* adjust size */
  height: 180px;          /* keep square shape */
  object-fit: cover;
  border-radius: 50%;     /* makes it circular */
  border: 4px solid #0077cc; /* blue border to match theme */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
