.course-page {
  width: 100vw;
  /* height: 80vh; */
  display: flex;
  padding: 60px 20px;
}
.course-container {
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  gap: 40px;
}
.card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: justify;
}
.left-cc {
  width: 40%;
}
.right-cc {
  width: 30%;
}
h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #0056b3;
}
h4 {
  margin-bottom: 15px;
  color: #333;
}
.left-cc p {
  font-size: 16px;
  line-height: 30px;
  color: #4c4c4c;
  margin-bottom: 1rem;
}
.left-cc ul {
  margin-top: 15px;
  padding-left: 20px;
}
.left-cc ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.useful-links li a {
  color: #0056b3;
  margin-bottom: 10px;
  transition: 0.3s ease;
}
.btn-box {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.enquiry-btn {
  /* border: 1px solid black; */
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
}
.enquiry-btn a{
    font-weight: bold;
}
.enquiry-box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
 
    background-image: url(../images/headimg.jpg);
    padding: 40px 115px !important;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    margin: auto;
    background-position: bottom !important;
}
 
  /* gap: 20px; */
}
.enquiry-box p{
    color: #000000;
    font-weight: 600;
}
.syllabus-box {
  margin-top: 20px;
}
.download-btn {
  width: 200px;
  background-color: #ffd100;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}
@media (max-width: 720px) {
  .course-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .left-cc,
  .right-cc {
    width: 90%;
  }
}
