@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --themeClrOne: #cd1200;
  --themeClrTwo: #366b26;
  --themeClrThree: #f1fcfa;
}
section {
  padding: 60px 0px;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.wrap {
  flex-wrap: wrap;
}
.container {
  max-width: 1220px;
  margin: auto;
  width: 100%;
}
ul li {
  list-style: none;
}
.heading {
  margin-bottom: 35px;
}
.heading h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #0f0f0f;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
}
.heading p {
  color: #fff;
}
.glbl-btn {
  background: var(--themeClrOne);
  padding: 13px 25px;
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
  border-radius: 25px;
}
.topheader {
  overflow: hidden;
  background: var(--themeClrOne);
  color: #fff;
  padding: 10px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px; /* spacing between messages */
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* header  */
header {
  background-image: linear-gradient(to right, rgb(10 24 33), rgba(0, 0, 0, 0.5)),
    url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}
header h1 {
  color: #fff;
  font-size: 75px;
  text-shadow: 3px 3px #131313;
}
header h1 span {
  color: #fff000;
}
header .left {
  width: 100%;
  text-align: center;
}
header .left p {
  color: #fff;
  margin: 12px 0px;
  font-size: 20px;
}

/* master  */
.master {
  background: #f8f9fa;
}
.master .container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;

  padding: 35px;
}
.master h2 {
  font-size: 40px;
  margin-bottom: 25px;
  text-align: center;
}
.master h2 span {
  color: rgb(0 147 242);
}
.master .master-body .price h3 {
  font-size: 50px;
  color: #d81a00;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.master .master-body .price img {
  margin-right: 5px;
  width: 30px;
}
.master .master-body span {
  font-size: 30px;
  text-decoration: line-through;
  color: #474747;
  font-weight: 500;
}

.master .master-body .middle ul li {
  list-style: none;
  border: 1px solid #000;
  margin: 10px 0px;
  padding: 10px 15px;
  border-radius: 5px;
  width: 48%;
}
.master .left {
  width: 23%;
}
.master .left .glbl-btn {
  width: 100%;
  text-align: center;
}
.master .right {
  width: 30%;
}
.master .middle {
  width: 42%;
}

.master .right img {
  width: 100%;
}

/* classroom */
.classroom {
  background: #f8f9fa;
}
.classroom .classbox {
  width: 32%;
  background-color: #fff;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  margin-bottom: 25px;
}
.classroom .classbox iframe {
  border-radius: 3px;
  width: 100%;
  display: block;
}

.classroom .classbox h5 {
  font-size: 20px;
  margin: 8px;
  text-align: center;
}
.classroom .classbox a {
  background: #167ac6;
  padding: 10px 20px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 10px 0;
  color: #fff;
  text-decoration: unset;
  font-size: 17px;
}

.classroom .glbl-btn {
  margin: auto;
  display: block;
  width: 325px;
  text-align: center;
}

/* Curriculum Section */
.curriculum {
  padding: 70px 0;
}

.curriculum h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.curriculum .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

/* Accordion */
.curriculum .faq-section {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  background: var(--themeClrOne);
  padding: 15px 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin: 10px 0px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer ul li {
  margin: 8px 10px;
  background-image: url(../img/right-arrow.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 25px;
  font-weight: 500;
}

.faq-question.active .faq-answer {
  margin-top: 10px;
}

.curriculum .glbl-btn {
  margin: auto;
  display: block;
  width: 325px;
  text-align: center;
}

.curriculum .glbl-btn {
  background-color: #167ac6;
}
/* footer  */
footer {
  padding: 50px 0 0;
  background-color: rgba(27, 127, 204, 0.8);
  position: relative;
}

footer .footer-body {
  text-align: center;
}
footer ul li {
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}
footer ul li a {
  color: #fff;
}
footer h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
footer .social-links li {
  height: 40px;
  width: 40px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100%;
  margin: 0px 5px;
}
footer .social-links li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social-links li img {
  width: 55%;
}
.copyright {
  text-align: center;
  padding: 10px 0px;
  border-top: 1px solid #fff;
  margin-top: 20px;
}
.copyright p {
  color: #fff;
}
