* {

  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #ffff;
  color: #000;

}

a {

  text-decoration: underline;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
}

.main-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  min-width: 300px;
}

.left-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-btn {
  background-color: white;
  color: #18006b;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 30px;
}

.features {
  display: flex;
  gap: 20px;
}

.feature-box {
  background-color: #0e004e;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  color: #ffff;
}

.right-form {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  color: #18006b;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.course-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, orange, yellow);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: #000;
}

.right-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

form input,
form select,
form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  /* border: 1px solid #ccc; */
  border-radius: 5px;
}

form textarea {
  height: 100px;
  resize: vertical;
}

.enroll-btn {
  width: 100%;
  background-color: #18006b;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}


/* module */
    .fcontainer {
      max-width: 700px;
      width: 90%;
      background-color: #fff;
      padding: 30px 20px;
      margin: 40px auto;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      
    }

    .module {
      display: flex;
      align-items: center;
      background-color: #f8fbff;
      padding: 15px 20px;
      border-radius: 10px;
      margin-bottom: 15px;
      transition: background-color 0.3s;
    }

    .module:hover {
      background-color: #e9f3ff;
    }

    .circle {
      width: 20px;
      height: 20px;
      background-color: #cdeaff;
      border-radius: 50%;
      margin-right: 15px;
    }

    .module-title {
      font-weight: 600;
      font-size: 16px;
      color: #333;
    }

     .subtopics {
      margin-left: 35px;
      margin-top: -10px;
      margin-bottom: 10px;
    }

    .subtopics ul {
      padding-left: 20px;
      margin: 5px 0;
    }

    .subtopics li {
      font-size: 14px;
      color: #333;
      padding: 4px 0;
    }