/**************************************
                General
**************************************/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

html::-webkit-scrollbar {
  width: 6px;
  background-color: #141414;
}

html::-webkit-scrollbar-thumb {
  background-color: #831874;
  border-radius: 50rem;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body {
  font-size: 14px;
  font-family: "RedHatDisplay Regular";
  font-weight: 400;
  color: #000;
}

a,
a:hover,
a:focus {
  color: #831874;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "RedHatDisplay Bold";
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

main {
  overflow: clip;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  width: 100%;
}
.whatsapp{
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 8;
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: zooninout 4s ease-in-out infinite;
}
@keyframes zooninout {
  0%,100%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.2);
  }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateX(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* Animations */
[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
  animation-name: slideInUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInLeft;
}

.slideInRight {
  animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
  animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
  animation-name: zoomIn;
}

.zoomReverseIn {
  animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
  animation-name: flipInY;
}

.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}


/**************************************
                Helper Class
**************************************/
.sec-gap {
  padding: 60px 0;
}

.section-title{
  color: #000;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 108.696%;
margin-bottom: 10px;
span{
  color: #831874;
  font-style: italic;
}
  }
.dec{
  color: #000;
  font-family: "RedHatDisplay Medium";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 131.818%;
}
  p{
    color: #000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }

.primary-btn {
  padding: 20px 35px;
  border-radius: 18px;
  background: #831874;
  border: 0;
  border-bottom: 4px solid #601255;
  color: #FFF;
  font-family: "RedHatDisplay Bold";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 11px;
  transition: all 0.5s;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  overflow: clip;
  z-index: 1;
}

.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  background: #601255;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}

.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}

.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background-color: #601255;
}

.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}

.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}

.primary-btn:hover {
  color: #fff;
}

.primary-btn:focus {
  color: #fff;
}

.secondary-btn {
  background: #FFF;
  border-color: #fff;
  color: #060606;
}

.secondary-btn::before,
.secondary-btn::after {
  background-color: #601255;
}

.secondary-btn:hover {
  color: #fff;
  border-color: #601255;
}

.container-fluid {
  padding-inline: 35px;
}

.form-card {
  box-shadow: 0px 80.6px 105.701px rgba(51, 51, 51, 0.1);
  background-color: rgb(63, 44, 102);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px 40px;
}

.text-center {
  text-align: center;
  position: relative;
}

.form-btn {
  background-color: rgb(252, 185, 89);
  color: #fff;
  border: 0;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
}

.form-btn:hover {
  color: #fff;
  background-color: rgb(9, 9, 9);
}

label {
  color: #000;
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 22px;
  display: block;
  margin-bottom: 5px;
}
.form-group {
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  border-radius: 7px;
  border: 1px solid #DFDFDF;
  background-color: rgb(255 255 255 / 0%);
  padding: 14px 15px;
  font-size: 17px;
  color: rgb(0, 0, 0);
  outline: none;
  &::placeholder{
    color: #969696;
    font-style: italic;
  }
}

.form-control:focus {
  border-color: #831874;
}

.form-card h4 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
/**************************************
      Menu
**************************************/
header {
  position: fixed;
  z-index: 999;
  right: 0;
  left: 0;
}

.flex-box {
  display: flex;
    align-items: center;
    gap: 90px;
    height: 100%;
}

header.sticky {
  background: linear-gradient(270deg, #FBEDD5 0%, #FAE8FF 51%, #FAE8ED 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }

  to {
      transform: translateY(0);
  }
}

nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  z-index: 999;
  transition: ease-in-out .4s;
}
.logo{
  width: auto;
  text-align: center;
  height: 100%;
  padding-block: 10px;
}
nav ul li{
  display: inline-block;
  padding: 6px 10px;
}
nav ul li a{
  color: #060606;
  font-family: "RedHatDisplay Bold";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 11px;
  position: relative;
}
nav ul li.active a,nav ul li a:hover{
  color: #831874;
}

#menu ul{
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.mobile-menu{
  display: none;
}
.hb {
  cursor: pointer;
  stroke: #831874;
  stroke-width: 0.6;
  fill: none;
  stroke-linecap: round;
  width: 100px;
  height: 100px;
  transition: all 0.2s ease;
}

.hb .line {
  transition: all 0.2s ease;
}

.hb.active .line-1 {
  transform: rotate(45deg) translate(2px, -3px);
}

.hb.active .line-2 {
  opacity: 0;
}

.hb.active .line-3 {
  transform: rotate(-45deg) translate(-5px, 0px);
}
@media (max-width: 991.9px) {
  #menu ul{
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      background: rgb(19, 19, 19);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: all 1s;
      visibility: hidden;
  }
  #menu ul.show{
      opacity: 1;
      z-index: 8;
      visibility: visible;
  }
  .mobile-menu {
      display: block;
      position: absolute;
      right: 15px;
      z-index: 9;
  }
  .btn {
      position: absolute;
      right: 120px;
  }
  nav ul li a {
      font-size: 45px;
      line-height: 65px;
  }
  nav ul li.active a::after {
      left: 50%;
      transform: translate(-50%);
      bottom: -4px;
      width: 50%;
  }
  nav ul li a {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 4px;
}

.mobile-menu {
  display: block;
  position: absolute;
  right: 5px;
  z-index: 9;
}
.hb {
  width: 55px;
  height: 55px;
}
.btn {
  position: absolute;
  right: 63px;
}
.container-fluid {
  padding-inline: 10px;
}
}

.btn{
  display: flex;
  align-items: center;
  gap: 15px;
  .call{
    color: #000;
    font-family: "RedHatDisplay Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
}
/* Popup */
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.753);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.popup.show {
  opacity: 1;
  transform: translateY(0px);
  z-index: 999999;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
  width: 35%;
  padding: 0px;
  border-radius: 23px;
  background: #000000;
  color: black;
  box-shadow: 0 0px 14px 0px #ffffffb5;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: clip;
  z-index: 99999;
  .primary-btn{
    width: 100%;
    border: 0;
    &:hover{
      background: #009DFE;
    }
  }
  .form-control{
    border-radius: 6px;
border: 1px solid #4E4760;
&:focus{
  border: 1px solid #009DFE;
}
  }
}
.small-line{
  width: 81px;
  height: 3px;
  background: #009DFE;
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 10px;
}
.popup .popup__content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50% 10px 50% 50%;
  flex-direction: column;
  gap: 5px;
  background-color: rgb(32, 172, 205);
  transition: all .5s;
  z-index: 9;
}

.popup .popup__content .close:hover {
  background-color: #ffffff;
}

.popup .popup__content .close:hover span {
  background-color: #15222B;
}

.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}

.left {
  padding: 16px;
  .img-box {
    border-radius: 23px;
    background: #ffffff0f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: clip;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.popup {
  .title {
    color: #FFF;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
  }
}

.right {
  padding: 30px;
  text-align: left;
  ::placeholder{
    color: #fff;
  }
  select option{
    color: #000;
  }
  .form-control{
    color: #fff;
  }
}

img {
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
/*************************************
                Home Page
**************************************/
.hero {
  z-index: 1;
  overflow: clip;
  padding-top: 146px;
  padding-bottom: 150px;
  background: linear-gradient(270deg, #FBEDD5 0%, #FAE8FF 51%, #FAE8ED 100%);
  position: relative;
  h1{
    color: #000;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 101.389%;
    span{
      color: #831874;
      font-style: italic;
    }
  }
  p{
    color: #000;
    font-family: "RedHatDisplay Medium";
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: normal;
  }
  .col-lg-5{
    position: relative;
    .form-arrow{
      position: absolute;
      top: 0px;
      left: -58px;
      z-index: -1;
      width: 44%;
      animation: upDown 8s ease-in-out infinite;
    }
  }
  .banner-arrow {
    position: absolute;
    bottom: -80px;
    left: 0;
    animation: upDown 6s linear infinite;
  ;
}
}
.banner-form {
  border-radius: 40px;
  background: #FFF;
  padding: 18px;
  .head{
    text-align: center;
    margin-bottom: 8px;
    h3{
      color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 124%;
    }
    p{
      color: #000;
      font-family: "RedHatDisplay Medium";
      font-size: 17px;
      font-style: normal;
      font-weight: 500;
      line-height: 22px;
    }
  }
  .primary-btn{
    width: 100%;
    background: #009DFE;
    border-color: #1D91D9;
    margin-top: 15px;
    &:hover{
      background: #601255;
      border-color: #601255;
    }
  }
}
.banner-img{
  position: absolute;
    left: 27%;
    bottom: 0;
    z-index: -1;
  .banner-img {
    position: absolute;
    left: 27%;
    bottom: 0;
    width: 38%;
}
.banner-logo {
  left: -44px;
  z-index: -1;
  bottom: 26%;
  animation: upDown 10s ease-in-out infinite;
}
.trust-icon {
  left: 22px;
  bottom: 40px;
  animation: upDown 8s ease-in-out infinite;
}
.star-icon {
  left: 26px;
  bottom: 70%;
  animation: spin 5s linear infinite;
}
.book-icon {
  left: 36%;
  top: -20px;
  animation: upDown 7s ease-in-out infinite;
}
.fanel-icon {
  position: absolute;
  left: 57%;
  top: 26%;
  animation: upDown 5s ease-in-out infinite;
}
.book-icon,.fanel-icon,.star-icon,.trust-icon,.banner-logo{
  position: absolute;
}
}

@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.usp{
  background: url(../img/usp-bg.webp) #831874;
  background-position: center;
.usp-box{
  text-align: center;
  padding-inline: 40px;
}
.icon-box{
  height: 80px;
  margin-bottom: 10px;
}
.section-title,p{
  color: #fff;
}
}
.title{
  color: #1B1B1B;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: 34px;
margin-bottom: 12px;
}

.mb-90{
  margin-bottom: 90px;
}
.title-md{
  color: #FFF;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 24px;
margin-bottom: 15px;
}
.mx-auto{
  margin-inline: auto;
}
.mb-30{
  margin-bottom: 30px;
}
.text-center {
  text-align: center;
}
.w-call{
	font-size: 44px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 700;
    background: #42c452;
    display: inline-flex;
    border-radius: 10px;
    padding: 5px 10px;
    margin-top: 20px;
}
/* Courses Section Styling */
.courses {
  padding-block: 80px;
  position: relative;
  .service-arrow{
    position: absolute;
    left: 120px;
    bottom: -120px;
    animation: upDown 5s ease-in-out infinite;
  }
}

.course-box {
  border-radius: 30px;
  background: #FCF1FF;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.course-box:hover {
  transform: translateY(-5px);
}

.courses-head {
  position: relative;
  margin-bottom: 20px;
  height: 72px;
  display: flex
;
  flex-direction: column;
  justify-content: center;
}

.courses-head h3 {
  color: #831874;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 73.333%;
margin-bottom: 10px;
}

.courses-head p {
  color: #711A86;
  font-family: "RedHatDisplay Bold";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  margin: 0;
}

.courses-icom {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8DDFF;
  border-radius: 50%;
}


.body-content ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.body-content ul li {
  color: #831874;
  font-family: "RedHatDisplay SemiBold";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 27px;
list-style-type: disc;
}
.courses-slider{
  .slick-list{
    margin: 0 -15px;
  }
  .slick-slide{
    margin: 0 15px;
  }
}
.course-box.blue{
  background: #E5F5FF;
  h3,p,li{
    color: #009DFE;
  }
  .courses-icom{
    background: #B9E4FF;
  }
  .primary-btn{
    background: #009DFE;
    border-color: #1479B7;
    color: #fff;
  }
}
.course-box.pink{
  background: #FFECF6;
  h3,p,li{
    color: #EE77B3;
  }
  .courses-icom{
    background: #FFDBEE;
  }
  .primary-btn{
    background: #FF9ACD;
    border-color: #E06EA8;
    color: #fff;
  }
}
.slick-dots li {
  width: 10px;
  height: 10px;
  cursor: pointer;
  background: #D9D9D9;
  border-radius: 50%;
}
.slick-dots li button{
  display: none;
}
.slick-dots li.slick-active {
  background: #8C2CA3;
}
.slick-dots {
  bottom: -42px;
}

/* Slider Navigation */
.courses-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  &:before{
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid;
    border-left: 1px solid;
    color: #000;
    display: inline-block;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    margin-left: 8px;
  }
  &.slick-next::before{
    transform: rotate(135deg); 
    margin-right: 8px;
    margin-left: 0;
  }
}

.courses-slider .slick-prev {
  left: -20px;
}

.courses-slider .slick-next {
  right: -20px;
}

.courses-slider .slick-arrow:hover {
  background: #FF4D8D;
  &::before{
    color: #fff;
  }
}
.online-service{
  padding-top: 0;
  position: relative;
  .container{
    position: relative;
  }
  .back-arrow{
    position: absolute;
        right: -105px;
        top: -78px;
        z-index: -1;
        animation: upDown 7s ease-in-out infinite;
  }
}
.service-line{
  position: absolute;
    top: -18%;
    z-index: -1;
    left: 0px;
    right: 0;
}
.service-box{
  border-radius: 46px;
  overflow: hidden;
  position: relative;
  img{
    width: 100%;
  }
.service-content{
  background: linear-gradient(0deg, rgba(0, 157, 254, 0.79) 0%, rgba(102, 102, 102, 0.00) 100%);
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 24px;
  padding-block: 40px;
  p{
    color: #fff;
  }
  .title-md{
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 4px;
  }
}
&.box-style2{
  .service-content{
    background: linear-gradient(0deg, #8C2CA3 0%, rgba(102, 102, 102, 0.00) 100%);
    .btn-group{
      .primary-btn:first-child{
        background: #009DFE;
        border-color: #1477B5;
        color: #fff;
        }
    }
  }
}
}
.btn-group{
  display: flex;
  gap: 12px;
}
.counter{
  h3{
    color: #000;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 73px;
    span:last-child{
      color: #831874;
    }
  }
  p{
    color: #831874;
    font-family: "RedHatDisplay Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
}
.counter-box{
  width: 439px;
  height: 439px;
  border-radius: 439px;
  border: 1px solid #FFE5F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30%;
  transition: all .5s;
  &:hover{
    background: #FFE5F2;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);;
  }
}
.counter .row{
  .col-lg-4:nth-child(2){
    h3{
      span:last-child{
        color: #FF7ABD;
      }
    }
    p{
      color: #FF7ABD;
    }
  }
  .col-lg-4:nth-child(3){
    h3{
      span:last-child{
        color: #009DFE;
      }
    }
    p{
      color: #009DFE;
    }
  }
}
.teacher{
  position: relative;
  padding-top: 150px;
  .container{
    position: relative;
    padding-bottom: 50px;
  }
  .content-box {
    width: 868px;
    height: 868px;
    border-radius: 868px;
    background: #831874;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 11%;
    margin-left: -150px;
    .section-title,p{
      color: #fff;
    }
    .primary-btn {
      background: #009DFE;
      border-color: #1477B5;
      color: #fff;
  }
}
.teacher-img {
  position: absolute;
  bottom: 0;
  right: -135px;
  z-index: 1;
}
.teacher-logo{
  position: absolute;
  right: 0;
  bottom: 0;
}
.back-arrow {
  position: absolute;
  z-index: -1;
  left: 30%;
  top: -146px;
  animation: upDown 5s ease-in-out infinite;
}
.star {
  position: absolute;
  top: -89px;
  left: 178px;
  animation: spin 5s linear infinite;
}
.circle {
  position: absolute;
  top: -125px;
  left: -75px;
  animation: upDown 5s ease-in-out infinite;
}
.left-arrow {
  position: absolute;
  bottom: -70px;
  width: 14%;
  animation: upDown 5s ease-in-out infinite;
  /* left: -136px; */
}
}
.learn-box{
  position: relative;
  margin-top: 90px;
}
.video-thumbnail{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  .thumbnail{
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  &:hover{
    .play-icon{
      img{
        animation: upDown 1s ease-in-out infinite;
      }
    }
  }
}
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-logo {
  position: absolute;
  top: -105px;
  left: 50%;
  transform: translateX(-50%);
}
#learn{
  background-image: url(../img/watch-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  .slick-arrow{
    display: none !important;
  }
}

/* Why Choose Us Section */
.why-choose {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 20px;
  .star {
    position: absolute;
    top: 118px;
    left: 166px;
    animation: spin 5s linear infinite;
}
.choose-circle2 {
  position: absolute;
  left: 70px;
  bottom: 100px;
  width: 55px;
  animation: spin 5s linear infinite;
}
.choose-circle {
  position: absolute;
  top: 130px;
  right: 120px;
  animation: spin 5s linear infinite;
}
}
.content-box {
  border-radius: 61px;
  background: linear-gradient(0deg, rgba(255, 244, 250, 0.00) 0%, #FFF0F8 100%);
  padding-inline: 100px;
  padding-top: 50px;
  padding-bottom: 80px;
}
.choose-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
  height:100%;
  .content {
    width: 80%;
}
}

.choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #831874;
  .content{
    h3, p {
      color: #fff;
    }
  }
}

.choose-box .icon {
  width: 65px;
  height: 65px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFEEF7;
  border-radius: 50%;
}

.choose-box .icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.choose-box .content h3 {
  color: #111;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 22px;
margin-bottom: 6px;
transition: all 0.5s;
}

.choose-box .content p {
  color: #111;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 27px;
margin: 0;
transition: all 0.5s;
}
.mb-60{
  margin-bottom: 60px;
}
.choose-arrow {
  position: absolute;
  right: -110px;
  bottom: -56%;
  animation: upDown 5s ease-in-out infinite;
}
/* Action Bar Section */
.action-bar {
  padding: 30px 0;
  background-image: url(../img/action-bar.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.action-content {
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.action-bar .icon {
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.205);
}

.action-bar .section-title {
  color: #fff;
  span{
    color: #ffffff;
  }
}

.action-bar h2 span {
  display: block;
}

/* Location Section */
.location {
  position: relative;
  .col-lg-3{
    position: relative;
  }
  .location-arrow{
    position: absolute;
    right: -200px;
    bottom: -89px;
    animation: upDown 8s ease-in-out infinite;
  }
}

.location-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 60px;
  border: 1px solid #009DFE;
  padding: 20.5px 48px;
  border-radius: 50rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  &:hover{
    background: #009DFE;
    span{
      color: #fff;
    }
    img{
      background: #831874;
    }
  }
}

.location-box:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-box span {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.location-box img {
  width: 59px;
  height: 59px;
  background-color: #009DFE;
  position: absolute;
  right: 5px;
  padding: 10px;
  border-radius: 50%;
}

.testimonials {
  background: #FDF4FF;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  .left-arrow,.star,.book,.circle,.star2,.left-arrow2{
    position: absolute;
  }
  .book {
    top: 100px;
    left: 27%;
    animation: upDown 7s ease-in-out infinite;
}
.star2 {
  top: 96px;
  right: 260px;
  animation: spin 5s linear infinite;
}
.left-arrow2 {
  right: 0;
  bottom: -60px;
  animation: upDown 5s ease-in-out infinite;
}
.star {
  left: 145px;
  bottom: 165px;
  animation: spin 5s linear infinite;
}
.circle {
  bottom: 40px;
  right: 28%;
  width: 50px;
  animation: spin 5s linear infinite;
}
.left-arrow {
  top: 16%;
  animation: upDown 5s ease-in-out infinite;
}
}
.testimonial-slider{
  .item{
    border-radius: 38px;
    background: linear-gradient(0deg, #E5F5FF 0%, #E5F5FF 100%), #FFECF6;
      padding-inline: 50px;
      margin-inline: 28px;
      margin-bottom: 70px;
      margin-top: 35px; 
  }
  .layer{
    background: linear-gradient(0deg, #FFECF6 0%, #FFECF6 100%), #FFECF6;
    padding-inline: 50px;
    border-radius: 38px;
  }
}
.testimonial-box {
  border-radius: 38px;
  background: #FFDCEE;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  p{
      color: #000;
      margin: 0;
  }
  .qut-icon {
    margin-inline: auto;
    margin-top: -105px;
    margin-bottom: 15px;
}
}

.testimonial-slider-nav{
  width: 70%;
  margin-inline: auto;
  padding-bottom: 50px;
  .slick-dots {
      bottom: -10px;
  }
}

.user-img{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  margin: 25px;
  margin-inline: auto;
  transition: all.5s;
  filter: grayscale(1);
  img{
      border-radius: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
}
.slick-center {
  .user-img{
    filter: unset;
     transform: scale(1.4);
      border: 1px dashed rgba(182, 44, 44, 0.404);
      
  }
  .student-name{
      display: block;
  }
}
.student-name{
  text-align: center;
  display: none;
  h4{
    color: #000;
text-align: center;
font-size: 20px;
font-style: italic;
font-weight: 700;
line-height: 35px;
  }
  p{
    color: #000;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
  }
}
.faq-section {
  padding: 70px 0;
  position: relative;
  .circle,.star,.left-arrow{
    position: absolute;
  }
  .circle {
    top: 10%;
    left: 10%;
    width: 50px;
    animation: spin 5s linear infinite;
}
.star {
  position: absolute;
  right: 145px;
  top: 29%; 
  animation: spin 5s linear infinite;
}

.left-arrow {
  bottom: 0;
  animation: upDown 5s ease-in-out infinite;
}
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.faq-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}


.faq-content > p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.faq-list {
  max-width: 80%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #D1D1D1;
  background: #FFF;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 22px;
  font-family: "RedHatDisplay Bold";
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  padding-right: 40px;
}

.faq-question .arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 14px;
}

.faq-question .arrow::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
  color: #000000;
}

.faq-item.active .arrow::before {
  transform: translateY(-50%) rotate(-135deg);
  color: #831874;
}
.faq-item.active{
  border-color: #831874;
  .faq-question{
    color: #831874;
  }
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  p{
    color: #111;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 29px;
text-align: left;
position: relative;
padding-top: 10px;

  }
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust this value based on your content */
  padding: 0 1.5rem 1.5rem;
}

.faq-question .arrow::before {
  transition: transform 0.3s ease;
}

/************************************
    Footer
************************************/
footer {
  position: relative;
  padding-top: 160px;
  padding-bottom: 30px;
  z-index: 1;
  .footer-bg{
    position: absolute;
        z-index: -1;
        height: 100%;
        width: 100%;
        top: 0;
        bottom: 0;
  }
  p,a{
    color: #49144F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
  }
  a:hover{
    color: #20ACCD;
  }
h4{
  color: #831874;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 10px;
}
p a{
  font-weight: 700;
  font-family: "RedHatDisplay Bold";
}
}
.footer-logo{
  margin-bottom: 35px;
  display: block;
}
.social{
  display: flex;
  gap: 10px;
  a{
    width: 33px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #511248;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
  &:hover{
    background: #511248;
    img{
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(109%) contrast(101%);
    }
  }
}
}
.copy-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  a{
    color: #FF6D04;
    text-decoration: underline;
  }
}
textarea{
  font-family: "Helvetica";
}
/*******************************
  Responsive
********************************/
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
       screen and (min-resolution: 120dpi) {
        
}

@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
  .hero {
    h1 {
        font-size: 50px;
    }
}
.banner-img {
  left: 17%;
}
.hero {
  .banner-arrow {
      bottom: -40px;
      width: 13%;
  }
  & .col-lg-5 {
    .form-arrow {
        left: -47px;
    }
}
}
.course-box {
  padding: 12px;
}
.body-content ul li {
  font-size: 14px;
}
.flex-box {
  gap: 40px;
}
nav ul li a {
  font-size: 15px;
}
.btn {
  .call {
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 4px;
  }
}
.primary-btn {
  padding: 16px 25px;
}
.counter-box {
  width: 370px;
  height: 370px;
  padding: 23%;
}
.teacher {
  .teacher-logo {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 30%;
  }
  .content-box {
    width: 670px;
    height: 670px;
    padding: 8%;
    margin-left: -110px;
    p {
      font-size: 16px;
  }
}
.teacher-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 63%;
}
.back-arrow {
  left: 26%;
}
}
.section-title {
  font-size: 38px;
}
.dec {
  font-size: 16px;
}
p {
  font-size: 16px;
}
.testimonials {
  .left-arrow {
      top: 23%;
      width: 12%;
  }
}
.choose-box .content p {
  font-size: 16px;
  line-height: 24px;
}
.faq-list {
  max-width: 60%;
  margin: 0 auto;
}
.faq-question {
  font-size: 18px;
}
.faq-section {
  .left-arrow {
      width: 13%;
  }
}
}

@media (max-width: 1440px),
(max-width: 1366px) {
  .teacher {
    .teacher-logo {
        width: 59%;
        z-index: -1;
    }
}
.courses {
  .service-arrow {
      width: 18%;
  }
}
.popup {
  .title {
      font-size: 34px;
      line-height: 18px;
  }
}
	.w-call {
    font-size: 36px;
}
}
.popup{
	.form-group{
		margin-bottom:0;
	}
	.wpcf7-not-valid-tip {
    position: absolute;
}
}
@media (max-width: 1440px) {}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
  
.popup .popup__content {
  width: 95%;
}
.popup {
  .title {
      font-size: 32px;
      line-height: 20px;
  }
}
.btn{
  a:last-child{
    display: none;
  }
}
}

@media (max-width: 991.98px) {
  .left {
    padding: 0;
    .img-box {
        display: none;
    }
}
.right {
  padding: 30px;
}
.hero {
  padding-top: 130px;
  padding-bottom: 60px;
  text-align: center;
  .btn-group {
    justify-content: center;
  }
}
.btn {
  margin-right: 30px;
}
.banner-form {
  text-align: left;
}
.banner-img {
  display: none;
}
& .col-lg-5 {
  .form-arrow {
      left: -33px;
      width: 36%;
      top: -60px;
  }
}
#menu ul {
  background: linear-gradient(270deg, #FBEDD5 0%, #FAE8FF 51%, #FAE8ED 100%);
}
nav ul li a {
  font-size: 34px;
  line-height: 150%;
}
.courses{
  padding-block: 40px;
  .col-lg-3{
    text-align: center;
  }
}
.courses {
  .service-arrow {
      display: none;
  }
}
.online-service {
  padding-top: 30px;
}
.service-line {
  top: 37%;
}
.online-service {
  padding-bottom: 30px;
}
.counter-box {
  padding: 18%;
}
.teacher {
  padding-top: 30px;
  .teacher-img {
      right: -130px;
      z-index: 1;
      width: 66%;
  }
  .content-box {
    width: 530px;
    margin-left: -30px;
}
}
.why-choose {
  .choose-circle {
      top: 40px;
      right: 30px;
  }
  .star {
    top: 74px;
    left: 90px;
}
}
.action-content {
  padding: 0px;
}
.location{
  .col-lg-3{
    text-align: center;
  }
}
.testimonials {
  .book {
      top: 46px;
      left: 5%;
  }
  .star2 {
    top: 32px;
    right: 54px;
}
}
.testimonial-slider {
  .item {
      padding-inline: 30px;
      margin-inline: 0px;
      margin-bottom: 30px;
  }
  .layer {
    padding-inline: 30px;
}
}
.testimonial-slider-nav {
  width: 90%;
}
.faq-section {
  .circle {
      top: 3%;
      left: 4%;
  }
  .star {
    right: 15px;
}
}
.faq-list {
  max-width: 70%;
  margin: 0 auto;
}

}
@media (max-width: 575.98px) {
  
  .popup .popup__content {
    width: 98%;
}
.popup {
  .title {
      font-size: 24px;
      line-height: 24px;
  }
}
label {
  font-size: 15px;
  margin-bottom: 2px;
}
.small-line {
  margin-bottom: 10px;
  margin-top: 5px;
}

.container {
  max-width: 100%;
}

nav ul li a {
  font-size: 22px;
  letter-spacing: 2px;
}
.btn {
  margin-right: 0px;
  gap: 8px;
  .primary-btn {
    padding: 12px 15px;
    font-size: 14px;
}
  .call {
    width: 39px;
    height: 39px;
    padding: 12px;
    background: #831874;
    border-bottom: 4px solid #601255;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(109%) contrast(101%);
    }
      span{
        display: none;
      }
  }
}
.logo {
  width: 130px;
}
.hero {
  padding-top: 90px;
  padding-bottom: 30px;
  text-align: center;
}
.hero {
  h1 {
      font-size: 30px;
  }
  p {
    font-size: 16px;
}
}
.form-control {
  font-size: 14px;
}
.sec-gap {
  padding: 30px 0;
}
.section-title {
  font-size: 26px;
}
.title-md {
  font-size: 18px;
  margin-bottom: 8px;
}
.online-service {
  .back-arrow {
      top: -58px;
      width: 38%;
  }
}
.service-box {
  & .service-content {
    padding: 12px;
        padding-block: 24px;
      .title-md {
          font-size: 24px;
          line-height: 34px;
      }
  }
}
p {
  font-size: 14px;
  line-height: 125%;
}
.counter-box {
  width: 182px;
  height: 182px;
  padding: 12%;
  text-align: center;
}
.counter {
  h3 {
      font-size: 36px;
      line-height: 50px;
  }
  p {
    font-size: 16px;
    line-height: 18px;
}
}
.teacher {
  margin-top: 200px;
  .back-arrow {
      left: -3%;
  }
  .star {
    top: -92px;
    left: 87%;
}
.content-box {
  width: 100%;
  margin-left: 0px;
  border-radius: 89px;
  padding: 8% 4%;
  height: auto;
}
.teacher-img {
  right: 14px;
  z-index: 1;
  width: 94%;
  bottom: unset;
  top: -250px;
  z-index: -1;
}
.teacher-logo {
  position: absolute;
  right: 0px;
  bottom: unset;
  width: 23%;
  top: 0;
  z-index: -2;
}
}
.content-box {
  border-radius: 61px;
  padding-inline: 6px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.choose-box {
  gap: 12px;
  padding: 15px;
  .content {
    width: 74%;
}
}
.choose-box .content h3 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 6px;
}
.choose-box .content p {
  font-size: 14px;
  line-height: 20px;
}
.why-choose {
  .star {
      top: 12px;
      left: 19px;
  }
  .choose-circle {
    top: 17px;
    right: 20px;
    width: 38px;
}
.choose-circle2 {
  bottom: 8px;
  width: 26px;
}
}
.choose-arrow {
  right: -50px;
  bottom: -15%;
  width: 20%;
}
.action-bar .icon {
  margin-inline: auto;
}
.action-bar .section-title {
  text-align: center;
}
.location-box {
  padding: 9.5px 20px;
}
.location-box img {
  width: 41px;
  height: 41px;
  right: 5px;
  padding: 10px;
}
.testimonials {
  .book {
      top: -5px;
      left: 2%;
      width: 40px;
  }
  .star2 {
    top: 0px;
    right: 8px;
}
.left-arrow2 {
  width: 25%;
}
.star {
  left: 20px;
  bottom: 20px;
}
.circle {
  bottom: 27px;
  right: 42%;
  width: 36px;
}
}
.testimonial-slider {
  .layer {
      padding-inline: 12px;
  }
  .item {
    padding-inline: 12px;
    margin-inline: 0px;
    margin-bottom: 30px;
}
}
.user-img {
  width: 84px;
  height: 84px;
}
.faq-list {
  max-width: 95%;
  margin: 0 auto;
}
.faq-question {
  font-size: 16px;
  padding: 10px;
  padding-right: 40px;
}
.faq-item.active .faq-answer {
  padding: 0 10px 10px;
}
.faq-answer {
  p {
      font-size: 14px;
      line-height: 22px;
  }
}
footer {
  .footer-bg {
      object-fit: cover;
      object-position: right center;
      left: 0;
  }
}
footer {
  position: relative;
  padding-top: 90px;
  padding-bottom: 9px;
  z-index: 1;
  text-align: center;
}
.copy-right {
  flex-direction: column;
}
.footer-logo {
  margin-bottom: 4px;
  display: block;
}
	.w-call {
        font-size: 22px;
        margin-top: 4px;
		img{
			width:40px;
		}
    }
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff;
}
.banner-form{
	.iti--separate-dial-code .iti__selected-dial-code {
    color: #000;
	}
}

