body {
  margin: 0;
  font-family: Arial;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center; /* center all items */
  align-items: center;
  gap: 50px; /* spacing between logo, nav, button */
  padding: 15px 50px;
  border-bottom: 1px solid #eee;
}


.logo {
  font-size: 32px;
  font-weight: bold;
  color: #0047ff;
}

.logo span {
  color: orange;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
}

.btn-link {
  border: 1px solid #0047ff;
  color: #0047ff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-link:hover {
  background: #0047ff;
  color: white;
}
.allcourses {
  color: #e6f0ff;
  border: 3px solid #366cf3;
  background: #366cf3;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

.login {
  color: #2f7ef5;
  border: 1px solid #366cf3;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}
/* HERO */
.hero {
  display: flex;
  justify-content: center;
  padding: 60px 50px;
}

.hero-text h1 {
  font-size: 50px;
}

.hero-text ul {
  list-style: none;
  padding: 0;
}

.hero-text li {
  margin: 8px 0;
}

.buttons {
  margin-top: 20px;
}

.primary {
  background: #007bff;
  color: white;
  padding: 12px 18px;
  border: none;
}

.secondary {
  border: 1px solid #007bff;
  padding: 12px 18px;
  background: white;
}

.hero-image img {
  width: 400px;
}


.partners {
  text-align: center;
  padding: 40px 20px;
  background: white;
}

.partners-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* responsive */
}

.partners-logos img {
  height: 50px;   /* adjust logo size */
  object-fit: contain;
}

/* PROGRAM SECTION */
.programs {
  padding: 60px 50px;
  background: #eef5ff;
}

.section-title {
  text-align:left;
  font-size: 46px;
  margin-bottom: 20px;

}

/* layout */
.program-wrapper {
  display: flex;
  gap: 10px;
}

/* sidebar */
.sidebar {
  width: 260px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  height: fit-content;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 20px;
  margin: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.sidebar li:hover {
  background: #e7f0ff;
}

.sidebar .active {
  background: #007bff;
  color: white;
}

/* grid */
.program-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 30px;
}

/* card */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

.card-body button {
  background: #ffffff;
  color: rgb(60, 144, 255);
  border:#000000;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

/* responsive */
@media (max-width: 1000px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .program-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }
}

/* STORIES SECTION */
.stories {
  background: #eafff7;
  padding: 60px 50px;
  text-align: center;
}

.stories-title {
  font-size: 28px;
  margin-bottom: 30px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.stat h3 {
  font-size: 28px;
  color: #000;
}

.stat p {
  font-size: 14px;
  color: #666;
}

/* CARD */
.story-card {
  display: flex;
  max-width: 900px;
  margin: auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

/* IMAGE */
.story-img {
  position: relative;
  width: 40%;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

/* CONTENT */
.story-content {
  padding: 20px;
  width: 60%;
}

.story-content h3 {
  margin-bottom: 10px;
}

.quote {
  font-weight: bold;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* TAGS */
.tags {
  display: flex;
  gap: 10px;
}

.tags span {
  background: #e6f0ff;
  color: #007bff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* DOTS */
.dots {
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: #bbb;
}

.dots .active {
  background: #007bff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .story-card {
    flex-direction: column;
  }

  .story-img,
  .story-content {
    width: 100%;
  }
}

/* TRUST SECTION */
.trust {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.trust-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.trust-title span {
  color: #ff8a00;
}

/* GRID */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ITEM */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* RATING */
.rating {
  font-size: 22px;
  font-weight: bold;
}

/* LOGO CARD */
.logo-box {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-grid {
    gap: 25px;
  }
}


/* WHY SECTION */
.why {
  padding: 70px 50px;
  background: #f8fbff;
  text-align: center;
}

.why-title {
  font-size: 34px;
  margin-bottom: 40px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
  padding-bottom: 20px;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.why-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
  margin: 15px 20px 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  margin: 0 20px;
}

/* divider line like UI */
.why-card p::after {
  content: "";
  display: block;
  height: 1px;
  background: #eee;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ALUMNI SECTION */
.alumni {
  padding: 60px 50px;
  background: #f7f9fc;
  text-align: center;
}

.alumni-title {
  font-size: 28px;
  margin-bottom: 40px;
}

/* BANNER */
.alumni-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: auto;
}

/* LEFT */
.alumni-left {
  text-align: left;
}

.alumni-left h1 {
  font-size: 40px;
}

.alumni-left span {
  color: orange;
}

.badge {
  margin-top: 10px;
  background: #eef4ff;
  padding: 10px 16px;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
}

.tag {
  margin-top: 10px;
  font-size: 12px;
  color: #007bff;
}

/* IMAGE */
.alumni-img {
  position: relative;
}

.alumni-img img {
  width: 260px;
  border-radius: 12px;
}

/* PLAY BUTTON reuse */
.alumni-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MINI CARDS */
.alumni-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.mini-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mini-card img {
  width: 40px;
  border-radius: 50%;
}

.mini-card h4 {
  margin: 10px 0 5px;
}

.role {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .alumni-banner {
    flex-direction: column;
    text-align: center;
  }

  .alumni-left {
    text-align: center;
    margin-bottom: 20px;
  }
}

input[type="text"] {
  width: 250px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
  transition: 0.3s ease;
}

/* on focus effect */
input[type="text"]:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.4);
}