body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Playfair", serif; */
  font-size: 18px;
  /* font-family: 'Inter', sans-serif;  */
}

/* Eixed Whatsapp Button Css Start */
@keyframes rotate360 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.wave-button-wrapper {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.wave-button {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  animation: rotate360 10s linear infinite;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite ease-in-out;
  z-index: 1;
}

.wave:nth-child(1) {
  animation-delay: 0s;
}

.wave:nth-child(2) {
  animation-delay: 0.5s;
}

.wave:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Eixed Whatsapp Button Css End */

/* Header Section Css Start */
@keyframes animatedLogo {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
}

.headTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2d5bfa;
  color: #fff;
  padding: 10px 30px;
  font-weight: bold;
}

.headTop i {
  padding-left: 10px;
  font-weight: bold;
}

.headTop .start {
  margin-left: 18px;
}

.headTop .center a {
  color: #fff;
  text-decoration: none;
}

.headTop .end {
  margin-right: 50px;
}

nav {
  width: 100%;
  height: 100%;
  background-color: #ebf5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0px;
  padding-bottom: 10px;
  background: rgba(235, 245, 251, 0.4); /* matching #ebf5fb with 40% opacity */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

nav .logo {
  flex-basis: 18%;
}

.logo img {
  width: 170px;
  animation-name: animatedLogo;
  animation-duration: 2s;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
}

nav ul {
  list-style-type: none;
  flex-basis: 58%;
  font-size: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  padding: 0px 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 15px;
}

.star i {
  color: #2d5bfa;
}

nav .contact {
  flex-basis: 18%;
  animation-name: animatedLogo;
  animation-duration: 2s;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
}

.contact a {
  display: inline-block;
  background-color: #2d5bfa;
  border-radius: 5px;
  padding: 5px 0px;
  color: #fff;
  margin-bottom: 10px;
  width: 80%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-family: "Courier New", Courier, monospace;
  text-decoration: none;
}

.contact .bottom {
  display: inline-block;
  display: flex;
}

.fa-xmark {
  display: none;
}

.fa-bars {
  display: none;
}

@media only screen and (max-width: 600px) and (min-width: 200px) {
  .fa-xmark {
    display: block;
    color: white;
    cursor: pointer;
  }

  .fa-bars {
    display: block;
    cursor: pointer;
  }

  nav {
    height: 6vh;
    justify-content: space-evenly;
    align-items: center;
    padding: 2px 0px;
    padding-bottom: 0px;
    position: relative;
  }

  nav .logo {
    width: 60%;
  }

  nav .logo img {
    width: 115px;
  }

  nav .contact {
    width: 40%;
  }

  nav ul {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    height: min-content;
    width: 50%;
    flex-direction: column;
    background-color: #2d5bfa;
    padding: 20px;
    border-radius: 5px;
    background: rgba(0, 0, 255, 0.8);
    background: rgba(45, 91, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }

  nav ul li {
    padding: 15px 0px;
  }

  nav ul li a {
    color: #fff;
  }

  .logo img {
    width: 80px;
  }

  .contact a {
    padding: 3px;
    width: 100px;
    font-size: 10px;
    font-family: "Courier New", Courier, monospace;
    text-decoration: none;
  }

  .headTop {
    display: none;
    align-items: center;
  }

  .menu i {
    color: #2d5bfa;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 600px) {
  .fa-xmark {
    display: block;
    color: white;
    cursor: pointer;
  }

  .fa-bars {
    display: block;
    cursor: pointer;
  }

  nav {
    height: 8vh;
    justify-content: space-around;
    align-items: center;
    padding: 2px 0px;
    padding-bottom: 0px;
  }

  nav ul {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 70%;
    height: 70vh;
    flex-direction: column;
    background-color: #2d5bfa;
    padding: 20px;
    border-radius: 5px;
  }

  nav ul li {
    padding: 15px 0px;
  }

  nav ul li a {
    color: #fff;
  }

  .logo img {
    width: 100px;
  }

  .contact a {
    padding: 5px;
    width: 150px;
    font-size: 12px;
    font-family: "Courier New", Courier, monospace;
    text-decoration: none;
  }

  .headTop {
    display: none;
  }

  .menu i {
    color: #2d5bfa;
  }
}

/* Header Section Css End */

/* Course Section Css start */
#course {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px auto;
}

#course h1 {
  font-size: 30px;
  font-weight: bold;
}

.cards {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0px;
}

.card {
  width: 29.7%;
  border-radius: 5px;
  padding: 20px;
  background-color: #ebf5fb;
  margin: 20px;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.card button {
  border: none;
  width: 40%;
  margin-left: 20px;
  background-color: #2d5bfa;
  padding: 8px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  box-shadow: 2px 2px 3px 2px gray;
  margin: 10px auto;
}

.card button:hover {
  box-shadow: 2px 2px 3px 1px #ebf5fb;
  transition: all 1s ease-in-out;
}

.card:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
  background-color: #ebf5fb;
  box-shadow: 2px 2px 1px 2px #ebf5fb;
}

.card a {
  text-decoration: none;
  color: #fff;
}

.star {
  color: #2d5bfa;
}

.hidden {
  display: none;
}

#showMoreBtn {
  padding: 10px 8px;
  border: none;
  outline: none;
  color: #fff;
  background-color: #2d5bfa;
  border-radius: 5px;
  margin: 30px auto 0px;
  font-weight: bold;
  border: 1px solid #2d5bfa;
  transition: all 1s ease;
}

#showMoreBtn:hover {
  border: 1px solid #2d5bfa;
  color: #2d5bfa;
  background-color: #fff;
}

.typewriter-text {
  font-size: 28px;
  border-right: 2px solid #2d5bfa;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.75s step-end infinite;
  color: #2d5bfa;
  font-weight: bold;
  font-style: italic;
  height: 40px;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media only screen and (max-width: 700px) and (min-width: 200px) {
  #course {
    width: 90%;
    margin: 5px auto;
  }

  #course h1 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .cards {
    width: 100%;
    margin: 0px 0px;
  }

  .card {
    width: 100%;
    height: min-content;
  }
  .card button {
    width: 100%;
    padding: 4px;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 701px) {
  #course {
    width: 80%;
    margin: 5px auto;
  }

  .cards {
    width: 100%;
    margin: 10px 0px;
  }

  .card {
    width: 100%;
    height: min-content;
  }
}

/* Course Section Css End */

/* Programm Highlights Section Css Start*/
#programm {
  width: 80%;
  text-align: center;
  margin: 20px auto;
}

.programm-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.programm-card {
  width: 25%;
  border-radius: 5px;
  padding: 20px;
  background-color: #ebf5fb;
  margin: 20px;
}
.programm-card:hover {
  box-shadow: 1px 1px 5px 0px #aad9f7;
  transition: all 1s ease-in-out;
}
.programm-card:hover img {
  transform: scale(1.2);
  transition: all 0.5s ease;
}
.programm-card h3 {
  font-size: 18px;
}

.programm-card p {
  font-size: 13px;
}
.card-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) and (min-width: 200px) {
  #programm {
    width: 80%;
    margin: 10px auto;
  }

  .programm-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .programm-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 600px) {
  #programm {
    width: 80%;
    margin: 10px auto;
  }

  .programm-cards {
    display: flex;
    flex-direction: column;
  }

  .programm-card {
    width: 100%;
  }
}

/* Programm Highlights Section css End */

/* Certification Section Css Start */
#certificate {
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.certificate {
  width: 50%;
}

.certificate img {
  width: 100%;
}

@media only screen and (max-width: 600px) and (min-width: 200px) {
  #certificate {
    width: 80%;
  }

  .certificate {
    width: 100%;
  }
}

/* Certification Section Css End */

/* Learning Section Css Start */
#learning {
  width: 80%;
  text-align: center;
  margin: 20px auto;
}

.learning img {
  width: 100%;
}

@media only screen and (max-width: 600px) and (min-width: 200px) {
  #learning {
    width: 80%;
  }
}

/* Learning Section Css End */

/* Review Section Css Start */
#review {
  width: 80%;
  margin: 10px auto;
  text-align: center;
}

.review-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  width: 300px;
  margin: 20px;
  height: 300px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 2px 2px black;
}

.review-card video {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) and(min-width:200px) {
  #review {
    width: 80%;
    margin: 10px auto;
    text-align: center;
  }

  .review-card {
    width: 500px;
    height: 500px;
    margin: 5px;
  }

  .review-card video {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) and(min-width:600px) {
  #review {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }

  .review-card {
    width: 100%;
    height: 500px;
    margin: 5px;
  }

  .review-card video {
    width: 100%;
  }
}

/* Review Section Css End */

/* Alumini Section Css Start */
#alumini {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.carousel-container {
  width: 80%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  padding: 0px 40px;
}

.carousel-image {
  min-width: 200px;
  margin-right: 10px;
  border-radius: 8px;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.btn.prev {
  left: 10px;
  padding: 10px;
}

.btn.next {
  right: 10px;
}

/* Alumini Section Css End */
#company {
  width: 100%;
  text-align: center;
  margin: 40px auto;
}
.carousel-container {
  width: 90%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
  margin: 40px auto;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
  animation-direction: alternate-reverse;
}

.carousel-track img {
  height: 60px;
  margin: 0 40px;
  object-fit: contain;
  transition: transform 0.3s;
}

.carousel-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 600px) and (min-width: 200px) {
  .carousel-container {
    width: 100%;
  }
}
/* Footer Section Css Start */
footer {
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0px;
  background-color: #131a22;
}

.footer-bottom {
  background-color: #ebf5fb;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: black;
  padding-right: 70px;
}

.footer-bottom a {
  color: black;
  font-size: 12px;
}

.fbe {
  padding-right: 100px;
}

.fbe a {
  text-decoration: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  /* padding: 15px; */
  /* font-size: 12px; */
  gap: 20px;
  padding: 20px 10px;
}

.footer-top-one {
  display: flex;
  flex-direction: column;
  padding: 10px;
  text-align: left;
  flex-basis: 20%;
}

.fto {
  padding: 10px 0px;
  font-size: 22px;
  font-weight: normal;
}

.ftt {
  padding: 10px 0px;
  font-size: 13px;
  font-weight: normal;
}

.ftth {
  padding: 10px 0px;
  font-size: 13px;
  font-weight: normal;
}
.ftth a {
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
}
.ftth a,
i {
  margin: 0px 1px;
}

.footer-top-two {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 20%;
}

.footer-top-two h3 {
  font-size: 22px;
}
.footer-top-two a {
  padding: 10px 0px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
}

.footer-top-three {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 20%;
}
.footer-top-three h3 {
  font-size: 20px;
}
.footer-top-three a {
  text-decoration: none;
  color: #fff;
  padding: 5px 0px;
  font-size: 13px;
  font-weight: normal;
}

.footer-top-four {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 20%;
  margin-right: 20px;
}

.footer-top-four h3 {
  font-size: 22px;
}

.footer-top-four address {
  font-size: 14px;
  font-weight: normal;
}
.footer-top-four a,
i {
  margin: 5px 2px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
}
.footer-top-four .footer-center {
  text-align: left;
  padding: 0px 30px;
}
/* .footer-top-o h3 {
  font-size: 22px;
  text-align: left;
} */
.footer-center {
  text-align: left;
}
.footer-center h3 {
  font-size: 24px;
}
.footer-center p {
  font-size: 15px;
  font-weight: normal;
}
.fbs {
  font-size: 18px;
}
.fbe a {
  font-size: 18px;
}
@media only screen and (max-width: 600px) and (min-width: 200px) {
  .footer-top {
    flex-direction: column;
    font-size: 13px;
    padding: 0px 20px;
  }

  .footer-top-one {
    margin: 5px 0px;
    font-size: 18px;
  }

  .fto {
    padding: 2px 0px;
  }

  .ftt {
    padding: 2px 0px;
    font-size: 12px;
  }

  .ftth {
    padding: 2px 0px;
  }

  .ftth i {
    margin: 0px 5px;
  }

  .footer-top-two {
    margin: 5px 5px;
    font-size: 18px;
  }

  .footer-top a {
    padding: 2px 0px;
    font-size: 12px;
  }

  .footer-top-three {
    margin: 5px 5px;
    font-size: 18px;
  }

  .footer-top-four {
    margin: 5px 5px;
    font-size: 18px;
  }

  .footer-top-four address {
    font-size: 12px;
  }
  .fbs {
    margin-bottom: 10px;
  }

  .footer-center p {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 10px 30px;
    font-size: 12px;
    padding-right: 50px;
    flex-direction: column;
    text-align: left;
  }
  .fbs {
    font-size: 12px;
  }
  .fbe a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 601px) {
  .footer-top {
    flex-direction: column;
    font-size: 13px;
    padding: 0px 20px;
  }

  .footer-top-one {
    margin: 5px 0px;
  }

  .footer-top-one .fto {
    padding: 2px 0px;
  }

  .ftt {
    padding: 2px 0px;
  }

  .ftth {
    padding: 2px 0px;
  }

  .ftth a i {
    margin: 0px 5px;
  }

  .footer-top-two {
    margin: 5px 5px;
  }

  .footer-top a {
    padding: 2px 0px;
  }

  .footer-top-three {
    margin: 5px 5px;
  }

  .footer-top-four {
    margin: 5px 5px;
  }

  .fbs {
    margin-bottom: 10px;
  }

  .footer-center p {
    font-size: 15px;
    font-weight: 100;
    opacity: 0;
  }

  .footer-bottom {
    padding: 10px 30px;
    font-size: 16px;
    padding-right: 50px;
    flex-direction: column;
    text-align: left;
  }
}
.footer-author {
  text-align: center;
  background-color: #ebf5fb;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
}
@media only screen and (max-width: 600px) and (min-width: 200px) {
  .footer-author {
    font-size: 10px;
  }
}
/* Footer Section Css End */
