/* ****************************************
****************************************
      
  WEBSITE NAME         :-        ARTRING STUDIO 
  WEB DEVELOPER NAME   :-        MONU SONI
  DATE                 :-        01-08-2023
  DEVELOPER PORTFOLIO  :-        https://monudeveloper.netlify.app/ 
  DEVLOPER E-MAIL      :-        monusoni9350@gmail.com  
  Contact No           :-        +91-8851394932


****************************************
**************************************** */

/* ****************************************
****************************************

COMMON CSS IN ARTRING STUDIO

****************************************
**************************************** */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
:root {
  --primary: #eb591b;
  --light: #f0fbfc;
  --dark: #181d38;
  --font-family-version: "Roboto Slab", serif;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
.rowline {
  border: 2px solid var(--primary);
  opacity: 1;
  margin: auto;
  width: 100px;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

/* ✅ Top Info Bar */
.top-info-bar {
  background-color: #eb591b;
  color: #fff;
  font-size: 13px;
  text-align: center;
  z-index: 1030;
}

.top-info-bar .rounded-icon {
  background: #fff;
  color: #eb591b;
  padding: 5px;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 12px;
}

.social-icon {
  color: #eb591b;
  background: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.3s;
}

.social-icon:hover {
  background-color: #ffd7e5;
  color: #eb591b;
}

/* ✅ Navbar Styling */
.main-navbar {
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: top 0.3s ease-in-out, box-shadow 0.3s;
  z-index: 1040;
}

.main-navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-navbar .nav-link {
  color: #eb591b !important;
  font-weight: 500;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #eb591b;
  left: 0;
  bottom: 0;
  transition: 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item {
  font-weight: 500;
  font-size: 14px;
  padding: 4px 10px;
  transition: 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #ff764d;
  color: #fff;
  border-radius: 6px;
}

.book-btn {
  background-color: #fff;
  color: #eb591b;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  text-transform: uppercase;
  border: 2px solid #eb591b;
  transition: 0.3s ease;
}

.book-btn:hover {
  background-color: #eb591b;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-logo {
  height: 70px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .dropdown-menu-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #eb591b;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 55px;
  width: 200px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
} */

/* 404  Page */

.page-header {
  background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
    url(../img/Aboutbanner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

/*** Service ***/
.service-item {
  background: var(--light);
  border-radius: 12px;
  transition: 0.2s;
  cursor: pointer;
  height: 350px;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: 0.2s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Categories & Courses ***/

.course-item {
  border-radius: 0px 0px 12px 12px;
  box-shadow: 2px 1px 10px 4px #ccc;
}
.course-item .class_book {
  color: var(--primary);
  font-family: var(--font-family-version) !important;
}
.course-item .para {
  color: #000;
}

.category img,
.course-item img {
  transition: 0.5s;
  border-radius: 12px;
  cursor: pointer;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

/*** Team ***/

.Parents .col-lg-3 {
  height: auto;
  /* overflow-y: scroll; */
}
.team-item {
  height: 100%;
}
.team-item h5 {
  font-family: var(--font-family-version);
  margin-bottom: 1%;
}
.team-item img {
  transition: 0.5s;
  cursor: pointer;
  /* height:550px; */
}

.team-item:hover img {
  transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
  border-radius: 12px;
  margin-top: 20px;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer h4 {
  font-family: var(--font-family-version);
  position: relative;
}
.footer h4:after {
  position: absolute;
  content: "";
  background: var(--light);
  width: 55px;
  height: 2px;
  bottom: -3px;
  left: 0%;
}
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
* {
  font-family: Nunito, sans-serif;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 50px 10px 50px;
}

.mainImg {
  color: black;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: rgb(176, 98, 255);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 40%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 18px;
  line-height: 26px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  font-weight: 400;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.explore {
  font-size: 16px;
  line-height: 28px;
  color: rgb(102, 102, 102);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(102, 102, 102);
  border-right-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-left-color: rgb(102, 102, 102);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  background-color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  /* background-repeat-x: initial;
  background-repeat-y: initial; */
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(176, 98, 255);
  color: white;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row-reverse;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  position: static;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 40px;
  margin-bottom: 0px;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.purpleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
  background-color: rgb(176, 98, 255);
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: -35px;
  left: -8%;
}

.purpleText {
  font-size: 18px;
  line-height: 26px;
  color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.ultimateImg {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.aboveText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .text-blk.subHeadingText {
    text-align: left;
    font-size: 26px;
    line-height: 32px;
  }

  .text-blk.description {
    text-align: left;
    line-height: 24px;
  }

  .explore {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .responsive-container-block.Container {
    justify-content: space-evenly;
  }

  .purpleBox {
    bottom: 10%;
  }

  .responsive-container-block.Container.bottomContainer {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    max-width: 930px;
  }

  .allText.bottomText {
    width: 40%;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .mainImg {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -70px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .ultimateImg {
    width: 100%;
  }

  .purpleBox {
    position: static;
  }

  .allText.bottomText {
    width: 100%;
    align-items: flex-start;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .text-blk.subHeadingText {
    text-align: left;
  }

  .text-blk.description {
    text-align: left;
  }

  .ultimateImg {
    position: static;
  }

  .mainImg {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .ultimateImg {
    position: relative;
  }

  .purpleBox {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 80%;
  }

  .allText.bottomText {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 55%;
  }

  .allText.bottomText {
    margin-top: 75px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px 6px 35px;
    font-size: 15px;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap");

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/*********************************************************
            whyWeChoose
**********************************************************/
.whychoose-wrap {
  background: url(../img/Homepageimages/youtubeSection.png);
  background-size: cover;
  padding: 70px 0;
}
.whychoose-wrap .section-title h3:after {
  left: 0;
  margin-left: 0;
}
.whychoose-wrap .section-title {
  text-align: left;
  padding-bottom: 15px;
}
.whychoose-wrap .section-title h3 {
  font-size: 24px;
  font-weight: 600;
}
.whychoose-wrap .section-title h3 span {
  font-size: 40px;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 42px;
}
.whychoose-description li {
  font-size: 14px;
  color: #000;
  margin-top: 12px;
  position: relative;
  padding-left: 28px;
}
.whychoose-description li:before {
  content: "\f0a9";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #03a4ed;
}
.whychoose-wrap .about-video-item {
  margin-left: 40px;
}
.whychoose-wrap .about-video-item .about-video-img {
  position: relative;
  width: 92%;
}
.whychoose-wrap .about-video-item .about-video-img img {
  width: 100%;
  box-shadow: 20px 20px 0px 0px var(--primary);
}
.whychoose-wrap .about-video-item .about-video-img a.xs-video {
  display: block;
  width: 73px;
  height: 73px;
  position: absolute;
  left: 0;
  padding: 24px 0px;
  bottom: 0;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  left: 0;
  top: 0;
  margin: auto;
  right: 0;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% {
    background-color: #900000;
    -webkit-box-shadow: 0 0 3px #900000;
  }
  50% {
    background-color: var(--primary);
    -webkit-box-shadow: 0 0 40px var(--primary);
  }
  100% {
    background-color: #900000;
    -webkit-box-shadow: 0 0 3px #900000;
  }
}

@-moz-keyframes glowing {
  0% {
    background-color: #900000;
    -moz-box-shadow: 0 0 3px #900000;
  }
  50% {
    background-color: var(--primary);
    -moz-box-shadow: 0 0 40px var(--primary);
  }
  100% {
    background-color: #900000;
    -moz-box-shadow: 0 0 3px #900000;
  }
}

@-o-keyframes glowing {
  0% {
    background-color: #900000;
    box-shadow: 0 0 3px #900000;
  }
  50% {
    background-color: var(--primary);
    box-shadow: 0 0 40px var(--primary);
  }
  100% {
    background-color: #900000;
    box-shadow: 0 0 3px #900000;
  }
}

@keyframes glowing {
  0% {
    background-color: #900000;
    box-shadow: 0 0 3px #900000;
  }
  50% {
    background-color: var(--primary);
    box-shadow: 0 0 40px var(--primary);
  }
  100% {
    background-color: #900000;
    box-shadow: 0 0 3px #900000;
  }
}
.whychoose-wrap .about-video-item .about-video-img a.xs-video:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  color: #fff;
  bottom: 0;
  margin: auto;
  content: "";
  -webkit-animation: move 3s infinite ease-in-out;
  animation: move 3s infinite ease-in-out;
}
.whychoose-wrap .about-video-item .about-img2 {
  width: 90%;
  display: block;
  margin-right: 0;
  margin-left: auto;
  margin-top: -282px;
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15);
}

/*********************************************************
              whyWeChoose END
  **********************************************************/
.roadmap {
  background: #fff;
  padding: 15px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  box-shadow: 4px 0px 4px 2px var(--primary);
  transition: 0.3s;
  cursor: pointer;
}
.roadmap:hover {
  background: var(--primary);
  color: var(--light);
}
.roadmap:hover p {
  color: var(--light);
  font-weight: bold;
}
.roadmap img {
  text-align: center;
  margin: auto;
  display: block;
}
.roadmap p {
  text-align: center;
  color: var(--primary);
  margin-top: 15px;
}

@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
.items1 {
  background: var(--light);
  transition: 0.5s;
  height: 200px;
  border-radius: 25px;
  cursor: pointer;
}

.aaa {
  font-family: "Lobster", cursive;
  font-style: italic;
}

.items1:hover {
  margin-top: -10px;
  background: var(--primary);
}

.items1 * {
  transition: 0.5s;
}

.items1:hover * {
  color: var(--light) !important;
}

/* PLANS SECTION START */

.plan_head {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  text-transform: uppercase;
  background: var(--primary);
  padding: 10px 12px;
  color: #fff;
  position: relative;
  border-radius: 7px;
}
.plan_head::after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d7";
  padding-right: 3px;
  position: absolute;
  font-size: 40px;
  bottom: -25px;
  color: var(--primary);
  left: 48%;
  font-weight: 900;
}
.plans {
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 1px #000;
  padding: 25px 25px;
  font-family: Arial, Helvetica, sans-serif !important;
  transition: all 0.3s;
}
.plans:hover {
  margin-top: -20px;
}

.plans h3,
.plans h4 {
  text-align: center;
}

.course_new_section {
  border: 1px solid #000;
  padding: 20px;
  height: 280px;
  box-shadow: 2px 1px 10px 4px #ccc;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.course_new_section:hover {
  transform: scale(1.1);
}
.course_new_section h4 {
  font-size: 22px;
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}

.course_btn {
  position: absolute;
  bottom: -5%;
  left: 25%;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
}

.bannerabou {
  background: url(../img/bg.png);
  background-size: cover;
  padding: 50px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
@media (max-width: 625px) {
  .bannerabou {
    padding: 30px;
  }
  .form-container {
    width: 100%;
  }
}

.bannerarea .newdivarea {
  text-align: left;
  margin: 25px 20px;
  /* position: absolute;  */
  /* top:30%;
  left:12%; */
  /* max-width: 570px;  */
}
.bannerarea .newdivarea .btn {
  max-width: 220px;
}
.bannerarea .newdivarea h2 {
  font-family: var(--font-family-version);
  font-size: 43px;
}

@media (max-width: 600px) {
  .bannerarea .newdivarea h2 {
    font-size: 25px;
  }
}
@media (max-width: 426px) {
  .bannerarea .newdivarea h2 {
    font-size: 16px;
  }
}
.bannerarea span {
  color: var(--primary);
}
.course_list {
  box-shadow: 2px 1px 22px -5px grey;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
.course_list:hover {
  margin-top: -20px;
}

.course_list h3 {
  font-family: var(--font-family-version);
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
}

.mainheading {
  font-family: var(--font-family-version);
}

.private_batch_section {
  padding: 40px !important;
}
.private_batch_section h3 {
  font-size: 30px;
  text-align: left;
}
.private_batch_section img {
  border-radius: 15px;
  box-shadow: 2px 1px 22px -5px rgba(0, 0, 0, 0.4);
}

.plans_sec {
  box-shadow: 2px 1px 22px -5px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  margin-top: 22px;
  padding: 35px 20px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}
.plans_sec:hover {
  transform: scale(1.04);
}
.plans_sec h3 {
  font-family: var(--font-family-version);
}
.plans_sec ul {
  text-align: left;
}
.plans_sec ul li i {
  color: #eb591b;
}

.prices {
  background: url(../img/pricebanner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 55px 20px;
}
.price_head {
  font-family: var(--font-family-version);
  color: var(--light);
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  background: var(--primary);
  display: inline-block;
}

.interlinking_Sec {
  padding: 30px 25px;
  /* border-top: 1px solid #000; */
  background: url(/img/interlimk.png);
  background-repeat: no-repeat;
  /* height: 250px; */
  max-width: 100%;
  background-position: center;
  background-size: cover;
}
.interlinking_Sec p {
  font-size: 16px;
}

.artbanner {
  background: url(../img/artClasses/bannerart.png);
  background-size: cover;
  padding: 78px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.level_sec {
  padding: 20px;
  border-radius: 14px;
  box-shadow: 2px 1px 22px -5px rgba(0, 0, 0, 0.4);
}

.musicarea {
  padding: 140px;
  background: url(../img/Homepageimages/musicclassesbannee.png);
  background-position: center center;
  background-size: cover;
  position: relative;
  margin: 70px 0px;
  background-repeat: no-repeat;
}

.bannerbtn a {
  width: 270px;
  z-index: 9;
  position: absolute;
  right: 11%;
  top: 33%;
}

.newbtn a {
  width: 270px;
  z-index: 9;
  position: absolute;
  right: 38%;
  bottom: 3px;
}

@media (max-width: 426px) {
  .newbtn a {
    position: absolute;
    left: 20%;
    bottom: 3px;
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .btn {
  background: #ffffff;
  color: var(--primary);
  border-radius: 20px;
  border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.learning {
  background: url(../img/Homepageimages/Learning_Section.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
  height: 281px;
}

@media (max-width: 426px) {
  .learning {
    background: url(../img/Homepageimages/onlinemedia.png);
    background-position: center center;
    padding: 30px;
  }
}

.teachers_about {
  padding: 40px;
  text-align: center;
}

.teachers_about h2 {
  font-family: var(--font-family-version);
  font-size: 20px;
  color: #000;
}

.teachers_about sup i {
  color: var(--primary);
}

.musicbanner {
  background: url(../img/MusicPage/music_banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  padding: 75px;
}

.musicbanner .bannerarea h2 {
  color: #fff89b;
}
.musicbanner .bannerarea h6 {
  color: #fff;
}

.lanugaeBanner {
  background: url(../img/Language/language_banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  padding: 50px;
}

.codingbanner {
  background: url(../img/coding/codingbanerr.png);
  background-size: cover;
  padding: 80px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.codingbanner h2 {
  color: var(--light);
}

.codingbanner h6 {
  color: #fff;
}
.fourzeobtn {
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
}

.fourzeobtn:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
  background: transparent;
}

@media (max-width: 480px) {
  .from1 {
    padding-left: 40px !important;
  }
}

@media (max-width: 990px) {
  .musicarea {
    position: relative;
  }
  .bannerbtn a {
    position: absolute;
    width: 200px;
    font-size: 16px !important;
    right: 1%;
    top: 33%;
  }
}

@media (max-width: 770px) {
  .musicarea {
    background-image: url(../img/Homepageimages/mediabanneer.png);
    background-position: center;
  }
  .bannerbtn a {
    position: absolute;
    width: 260px;
    font-size: 16px !important;
    right: 1%;
    top: 77%;
  }
}

@media (max-width: 426px) {
  .bannerbtn a {
    position: absolute;
    width: 200px;
    font-size: 13px !important;
    right: 1%;
    top: 77%;
  }
}

.card {
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s;

  box-shadow: 2px 1px 22px -5px rgba(0, 0, 0, 0.4);
}
.card:hover {
  background: var(--primary);
  border: none;
}
.card:hover .card-title {
  color: var(--light);
}
.card img {
  border-radius: 12px 10px 0px 0px;
  box-shadow: 2px 1px 22px -5px rgba(0, 0, 0, 0.4);
}

.card-title {
  font-family: var(--font-family-version);
  font-size: 24px;
}

.sum {
  background: var(--primary);
  border-radius: 25px;
  width: 40%;
  display: block;
  margin: auto;
  padding: 7px 15px;
  font-size: 20px;
  color: #fff;
}
.sum:hover {
  background: var(--primary);
  transform: scale(1.08);
  color: var(--light);
}

.plans_tab p {
  background: var(--primary);
  color: var(--light);
  padding: 8px;
  border-radius: 6px 12px;
}

.plans_tab p:hover {
  border: 1px solid var(--primary);
}

.plans_tab p:hover,
.plans_tab .active p {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.homepageprice {
  background: url(../img/pricebanner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  z-index: -99;
}

.yogabanner {
  background: url(../img/yoga/yogabanner.png);
  background-size: cover;
  padding: 110px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

@media (max-width: 530px) {
  .yogabanner {
    padding: 10px !important;
  }
  .course_btn {
    bottom: -5%;
    left: 15%;
    margin-bottom: 5px;
  }
}
#main {
  background-color: #f3eded;
  padding: 25px 40px;
  border-radius: 20px;
}

#main form {
  padding: 20px;
}

#main form p {
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}

#main form input {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  border: none;
  height: 2rem;
}

#main form .formSub {
  background: #f36d34;
  color: #fff;
  width: 100%;
  margin-top: 13px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

@media (min-width: 726px) {
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

.cw-fix {
  max-width: 70% !important;
  margin: auto;
  width: 100%;
  padding: 30px 0px;
}

.cw-section {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.cw-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.cw-accordion__item {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  position: relative;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgb(189, 182, 216);
  border: #cdcdcd 1px solid;
}

.cw-accordion__item .cw-label {
  padding-left: 26px;
  font-size: 20px;
  position: relative;
  width: 100%;
  font-family: "Roboto Slab", serif;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
}

.cw-accordion__item .cw-label:after {
  position: absolute;
  left: 0;
  content: "+";
  font-size: 14px;
  top: 3px;
  border: #000 1px solid;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  line-height: 1.1;
  text-align: center;
}

.cw-accordion__item .cw-label.cw-open:after {
  transform: rotate(45deg);
}

.cw-accordion__item .cw-acordion-cont {
  height: 0px;
  overflow: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  font-size: 15px;
  padding-left: 25px;
  padding-right: 25px;
}

.cw-accordion__item .cw-acordion-cont ul {
  padding-left: 20px;
}

.cw-accordion__item .cw-acordion-cont ul li {
  margin: 7px 0px;
}

.cw-accordion__item .cw-open + .cw-acordion-cont {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.faq-contact {
  text-align: center;
  padding: 10px 0;
}

.faq-contact h3 {
  margin: 0px 0px 15px 0px;
}

.faq-contact .contact-btn {
  padding: 8px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: #000 1px solid;
  transition: 0.5s all;
  font-weight: 700;
}

.faq-contact .contact-btn:hover {
  background-color: transparent;
  color: #000;
}
@media (max-width: 992px) {
  .cw-section__title {
    font-size: 1.5rem;
  }
}

#hover10:hover {
  background-color: #eb591b;
}

.class_book {
  color: #fff;
  transition: 0.3s;
}
.class {
  background-color: #f2f2f2;
  width: 50px;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.class:hover {
  background-color: #eb591b;
  transition: 0.2s;
}

.class {
  color: #000;
}
.class:hover {
  color: #fff;
}
.from1 {
  width: 10vw;
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding-left: 80px;
}

.from2 {
  padding-top: 15px;
  height: 333px;
  border-radius: 12px;
  width: 400px;
  box-shadow: rgba(87, 76, 76, 0.2) 0px 7px 29px 0px;
}

.booknewbtn {
  border: 3px solid #eb591b;
  font-size: 16px;
  text-transform: uppercase;
  color: #eb591b;
  margin-top: 25px;
  font-weight: bold;
  border-radius: 8px;
}
.booknewbtn:hover {
  background: var(--primary);
  color: var(--light);
}

.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px 20px;
}

.form-container {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.form-container h2 {
  text-align: center;
  color: #222;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9f9f9;
}

textarea {
  resize: vertical;
  height: 100px;
}

.home-form {
  background: #0f172b;
  padding: 60px;
}

@media (max-width: 426px) {
  .home-form {
    background: #0f172b;
    padding: 15px;
  }
  .form-container {
    width: 100%;
    margin-top: 25px;
  }
  .bannerabou {
    padding: 2px;
  }
  .bannerarea .newdivarea h2 {
    font-size: 35px;
  }
  .artbanner,
  .musicbanner,
  .lanugaeBanner,
  .codingbanner {
    padding: 8px;
  }
}

.roadmap h5 {
  text-align: center;
  color: var(--dark);
}

.roadmap:hover h5 {
  text-align: center;
  color: var(--light);
}

.roadmap:hover {
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.roadmap img {
  max-height: 50px;
}

.roadmap p {
  font-size: 15px;
  color: #444;
}

.course-card {
  background: #fff;
  border-left: 5px solid #198754; /* success border */
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.course-detail p {
  margin-bottom: 8px;
}

.accordion-button {
  background-color: #f8f9fa;
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: none;
  background: #f9f9f9;
}

.mainheading {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.feature-card {
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #f3d3c5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.feature-desc {
  color: #555;
  font-size: 15px;
  margin-top: 8px;
}

.roadmap i {
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  padding: 15px 25px;
  font-size: 32px;
  margin-bottom: 15px;
}
.roadmap:hover i {
  background: var(--light);
  color: var(--primary);
}

.payment-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.payment-logo > div img {
  height: 60px;
  gap: 40px 60px; 
  padding: 6px;
  border-radius: 6px;
}

@media (max-width:426px) {
  .payment-logo > div img { 
  padding: 16px; 
}  
}

.whats_link {
        position: fixed;
    bottom: 104px;
    right: 30px;
    z-index: 999;
}

.whats_link img 
 {
    width:55px;
    border-radius: 30%;
}

#submitBtn{
  border-radius: 7px;
  padding: 8px 24px;
 font-size: 19px;
}

#submitBtn:hover{
  background: var(--primary);
  color: var(--light);
}
 
.plan-box {
  background: #fffdf9;
  border: 2px solid #f3e8ff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.plan-box h4 {
  color: #6b21a8;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-box h5 {
  margin-top: 20px;
  font-size: 17px;
  color: #374151;
}

.plan-box ul {
  padding-left: 0;
  list-style: none;
}

.plan-box ul li {
  padding: 6px 0;
  font-size: 15.5px;
  color: #333;
  padding-left: 26px;
  position: relative;
}

.plan-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 2px;
} 