* {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #3b1a4f;
  --secondary: #8a57a2;
  --color3: #8042a8;
}

.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-color3 {
  background-color: var(--color3);
}

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-color3 {
  color: var(--color3);
}
/* ____________________FONTS_________________________ */

.font-bg {
  font-family: "Bricolage Grotesque", sans-serif;
}
.font-ag {
  font-family: "Anek Gujarati", sans-serif;
}
.font-asap {
    font-family: "Asap", sans-serif;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding-inline: 50px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media (max-width: 639.98px) {
  .container {
    max-width: 100%;
    padding-inline: 16px;
  }
}

@media(min-width: 1860px) {
   .container {
    max-width: 1400px;
   }
}

@font-face {
  font-family: 'Obviously-Black',sans-serif !important;
  src: url('/assets/fonts/fonnts.com-Obviously_Blck.otf') format('otf');
  font-style: normal;
}

.font-banner {
    font-family: 'Obviously-Black',sans-serif !important;
    font-weight: 900 !important;
}



/* _________________BUTTON_______________________ */

.btn-fill {
  border-radius: 6px;
  padding: 4px 14px;
  background-color: #7e5e96;
  font-weight: 600;
  font-family: "Anek Gujarati", sans-serif;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-outline {
  border-radius: 6px;
  padding: 4px 14px;
  font-weight: 500;
  font-family: "Anek Gujarati", sans-serif;
  font-size: 16px;
  transition: 0.3s;
  border: 1px solid;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}
.btn-outline::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 4px;
  border-radius: 2px;
  top: calc(50% - 16px);
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.btn-fill:hover {
  filter: brightness(120%);
}
.header-main-nav ul li a {
  transition: 0.3s;
}
.header-main-nav ul li a:hover {
  color: #b076cb;
}
.yellow-circle {
  animation: circle-anim 2.4s linear infinite;
}

@keyframes circle-anim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: rotate(360 deg);
  }
}
.join-now-label {
  animation: join-anim 5s ease-in-out infinite;
}
@keyframes join-anim {
  0% {
    transform: rotate(-4deg) scale(1);
  }
  50% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: rotate(-4deg) scale(1);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placement-slider .swiper-wrapper {
  height: auto;
}
.placement-slider .swiper-pagination,
.review-slider .swiper-pagination {
  display: none;
}

@media (max-width: 640px) {
  .placement-slider .swiper-pagination,
  .review-slider .swiper-pagination {
    display: flex !important;
    justify-content: center;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}
.swiper-nav-outside {
  width: calc(100% + 130px);
  left: -65px;
}
.placement-slider .swiper-nav-outside {
  width: calc(100% + 80px);
  left: -40px;
}

@media (max-width: 1279.98px) {
  .placement-slider .swiper-nav-outside {
    width: calc(100% + 20px);
    left: -10px;
  }
}

@media (max-width: 1023.98px) {
  .swiper-nav-outside {
    width: calc(100% + 130px);
    left: -65px;
  }
}
.swiper-button-prev,
.swiper-button-next {
  color: #ababab;
  background: #f0f0f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.placement-slider .swiper-button-prev,
.placement-slider .swiper-button-next {
  color: white;
  background: #9e70b8;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #3b1a4f;
}

.faq-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.faq-item {
  border: 1px solid #c0a3d3;
}

.faq-question {
  width: 100%;
  padding: 16px 24px;
  padding-left: 40px;
  background: #f9f0ff;
  border: none;
  text-align: left;
  color: #5f3d71;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ede0ff;
}

.faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("/assets/icons/down.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #f9f0ff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 18px;
  line-height: 1.6;
  padding-left: 40px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 20px 24px;
  padding-top: 4px;
  padding-left: 40px;
}

@media (max-width: 1023.98px) {
  .faq-answer {
    font-size: 16px;
    padding-left: 24px;
  }
  .faq-answer.open {
    padding-left: 24px;
  }
  .faq-question {
    padding-left: 24px;
  }
}

@media (max-width: 639.98px) {
  .faq-answer {
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .faq-answer.open {
    padding-left: 16px;
    padding-right: 16px;
  }
  .faq-question {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

body:has(#sidebar.translate-x-0) {
  overflow: hidden;
}

.video-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000002e;
  left: 0;
  top: 0;
}
.video-wrapper.playing::after {
  content: "";
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #00000000;
}
.video-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  font-size: 40px;
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
  padding-left: 8px;
}

/* Hide button when playing */
.video-wrapper.playing .video-btn {
  opacity: 0;
  pointer-events: none;
  padding-left: 0;
}

/* AOS */
[data-aos="fade-up"] {
  transform: translateY(15px);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}
[data-aos] {
  transition-duration: 0.6s;
}
[data-aos="zoom-in"] {
  transform: scale(0.94);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="zoom-in-down"] {
  transform: scale(0.94) translateY(-15px);
  opacity: 0;
}

[data-aos="zoom-in-down"].aos-animate {
  transform: scale(1) translateY(0);
  opacity: 1;
}

input,
textarea {
  outline: none;
  transition: 0.3s;
}
input:focus,
textarea:focus {
  outline: 1px solid #a318ff;
}
input::placeholder {
  color: #9e70b8 !important;
}
textarea::placeholder {
  color: #9e70b8 !important;
}

.custom-select {
  width: 100%;
  position: relative;
}
.custom-select .select-box {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-box::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("/assets/icons/down.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.custom-select .options {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  margin-top: 5px;
  display: none;
  max-height: 180px;
  overflow-y: auto;
  z-index: 10;
  overflow: hidden;
  border: 1px solid #c0a3d3;
}
.custom-select .option {
  padding: 10px 14px;
  cursor: pointer;
}
.custom-select .option:hover {
  background: #f0f0f0;
}
.custom-select .option.active {
  background: #efd8ff;
  font-weight: bold;
  color: var(--secondary);
}
.custom-select.open .select-box::after {
  transform: rotate(180deg);
}




/* About page */

.about-circle {
    animation: zoom-circle 3s linear infinite;
}
@keyframes zoom-circle{
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(0.9);
    }
}


/* Courses Page */
.course-banner-btn .btn-outline::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 5px;
    border-radius: 2px;
    top: calc(50% - 20px);
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.course-card-shadow {
    box-shadow: 0 -10px 10px #0000004e;
}


@media(max-width: 767.98px) {
    .course-card {
        zoom: 0.5;
    }
}


@media(min-width: 1860px) {
    .home-banner-section .container .grid {
        margin-top: 110px;
    }
    .home-banner-image {
        zoom: 1.45;
    }
    .home-banner-content {
        zoom: 1.35;
    }
    .review-slider-container {
        max-width: 940px;
    }
    .google-img-cut {
        zoom: 1.3;
    }
    .about-banner-section h1 {
        zoom: 1.4;
    }
    .about-circle {
        zoom: 1.1;
    }
    .course-banner-section .container {
        zoom: 1.4;
       padding-bottom: 40px;
    }
}
