.course-info {
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-button {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background-color: blue;
  color: #fff;
  font-weight: bold;
  margin: 10px 0px;
  border-radius: 5px;
  border: 1px solid blue;
}
.download-button:hover {
  background-color: #fff;
  color: green;
  transition: all 1s ease;
}

.course-info-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.course-start {
  background-color: darkblue;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  flex-basis: 50%;
  margin: 0px 10px;
}
.course-start h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
}
.course-start h2 {
  font-size: 22px;
}
.course-start h3 {
  font-size: 20px;
}
.course-start h4 {
  font-size: 17px;
}
.course-end {
  flex-basis: 50%;
  box-shadow: 1px 1px 1px 1px black;
  padding: 20px;
  border-radius: 10px;
}
.course-info-bottom {
  display: flex;
  width: 100%;
}
.data {
  box-shadow: 1px 1px 1px 1px black;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  flex-basis: 60%;
  height: min-content;
}
.data ul {
  list-style: disc;
}
.data h3 {
  font-size: 20px;
}
.course-fees-parent {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
  height: min-content;
}
.course-fees-one,
.course-fees-two {
  box-shadow: 1px 1px 1px 1px black;
  padding: 20px;
  margin-left: 20px;
  border-radius: 10px;
  margin-top: 20px;
  flex-basis: 100%;
  height: min-content;
}
.course-fees-two ul li {
  padding: 5px 0px;
}
.course-fees-one h4 {
  text-align: left;
  margin: 20px 0px;
  font-weight: bold;
}
.course-fees-one ul {
  text-align: left;
}
.course-fees-one ul li {
  padding: 10px 0px;
}
.enroll-btn {
  background-color: blue;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 5px;
  margin: 10px auto;
  color: #fff;
  font-weight: bold;
  border: 1px solid blue;
}
.enroll-btn:hover {
  border: 1px solid blue;
  background-color: #fff;
  color: blue;
  transition: all 1s ease-in-out;
}
.fees-certificate {
  margin: 20px 0px;
}
.price {
  font-size: 30px;
  margin: 20px 0px;
  text-align: center;
}
.original-fees {
  text-align: center;
}
.course-fees button {
  width: 50%;
  margin: 20px 0px;
  background-color: #2d5bfa;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  padding: 10px;
  border: 1px solid #2d5bfa;
}
.course-fees button:hover {
  background-color: #fff;
  border: 1px solid #2d5bfa;
  color: #2d5bfa;
  transition: all 1s ease;
}

form h3 {
  font-size: 20px;
  text-align: center;
}
.form-contrl {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
}
.form-contrl label {
  text-align: left;
  font-weight: bold;
}
.form-contrl input {
  width: 100%;
  outline: none;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #2d5bfa;
}
select {
  padding: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #2d5bfa;
}
input[type="submit"] {
  width: 100%;
  background-color: #2d5bfa;
  border: none;
  outline: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #2d5bfa;
}
input[type="submit"]:hover {
  background-color: #fff;
  border: 1px solid #2d5bfa;
  color: #2d5bfa;
  transition: all 1s ease;
}

.discount {
  background-color: blue;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  margin-top: 20px;
  display: block;
  width: 40%;
  font-size: 20px;
  margin: 10px auto;
}
.faq {
  width: 80%;
  margin: 50px auto;
  text-align: center;
}
@media only screen and (max-width: 600px) and (min-width: 200px) {
  .course-info-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .course-start {
    margin-bottom: 20px;
    flex-basis: 100%;
  }
  .course-end {
    margin-bottom: 20px;
  }
  .course-info-bottom {
    flex-direction: column;
  }
  .data {
    padding: 15px;
  }
  .course-fees-one,
  .course-fees-two {
    margin-left: 0px;
    width: 90vw;
  }
}
@media only screen and (max-width: 900px) and (min-width: 601px) {
  .course-start {
    margin-bottom: 20px;
    flex-basis: 100%;
  }
  .course-fees-parent {
    width: 100%;
  }
  .course-fees-one,
  .course-fees-two {
    margin-left: 0px;
    width: 83vw;
  }
}

/* Accordion Section Css Start */
.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 45%;
}

.accordion-item {
  background: white;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}

.accordion-header {
  padding: 15px 20px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: #cfe2ff;
  color: #000;
}

.accordion-body {
  padding: 15px 20px;
  display: none;
  border-top: 1px solid #ddd;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion-item.active .accordion-body {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Accordion Section Css End */

/* Modal Section Css Start */
.open-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Modal background */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  position: relative;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 255, 0.2) 20%,
      rgba(0, 0, 255, 0.4) 80%
    ),
    url("./images/registration.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Close button */
.close {
  color: #aaa;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

@media only screen and (max-width: 600px) and (min-width: 200px) {
  /* Modal content */
  .modal-content {
    width: 330px;
  }
}

/* Modal Section Css End */
