/***********************/
/* FONT DECLARATIONS */
/***********************/
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;600&family=Playfair+Display:ital,wght@1,500;1,600&family=Quicksand:wght@400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap");

/********************************/
/* CSS VARIABLES DECLARATIONS */
/********************************/
:root {
  --font-1: "Roboto", sans-serif;
  --font-2: "Quicksand", sans-serif;
  --font-3: "Playfair Display", serif;
  --font-4: "Mulish", sans-serif;
  --font-size-default: 400;
}

:root {
  --primary-color: #ffc30b;
  --primary-light-color: #fdc828;
  --most-light-primary-color: #fdf3d9;
  --course-body-color: #f6f6f6;
  --font-dark-color: #434242;
  --paragraph-color: #888;
  --footer-color: #222;
  --body-color: #fff;
  --shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
  --padding-mid: 5rem;
  --padding-min: 4rem;
  --padding-max: 6rem;
}

/*********************************/
/* SOME DEFAULT DECLARATIONS */
/*********************************/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

p {
  line-height: 1.5;
}

a:link {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  user-select: none;
}

body {
  background-color: var(--body-color);
  font-family: var(--font-1);
  font-weight: var(--font-size-default);
}

p::selection,
h1::selection,
h2::selection,
h3::selection,
img::selection,
a::selection,
span::selection,
h4::selection,
section::selection,
nav::selection,
ul::selection,
li::selection,
button::selection,
br::selection {
  background-color: var(--primary-color);
  color: var(--body-color);
}

/**************************/
/* HEADER SECTION STARTS */
/**************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  box-shadow: var(--shadow);
  height: 12vh;
}

.logo_box .logo_img {
  width: 250px;
}

.nav .nav_links {
  display: flex;
  gap: 2rem;
}

.nav .nav_link_inner {
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  top: 7px;
  color: var(--font-dark-color);
}

.navbar_btn {
  background-color: var(--primary-light-color);
  color: var(--body-color) !important;
  padding: 10px 20px;
  border-radius: 230px;
  transition: all 0.3s;
}

.navbar_btn:hover {
  background-color: var(--primary-color);
  color: var(--font-dark-color) !important;
}

.nav .nav_link_inner:hover {
  color: var(--primary-color);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
  display: none;
}

.burger .line {
  width: 35px;
  height: 4px;
  background-color: var(--primary-color);
}

/**************************/
/* SECOND SECTION STARTS */
/*************************/
.second_section {
  padding-top: var(--padding-max);
}

.second_sec_text_col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2.5rem;
}

.second_sec_img_col {
  padding-right: 2.5rem;
}

.right_side_image_container .second_sec_text_col {
  padding-right: 2.5rem;
  padding-left: 0;
}

.right_side_image_container .second_sec_img_col {
  padding-left: 2.5rem;
  padding-right: 0;
}

.second_sec_text_col strong {
  color: var(--primary-color);
}

.second_sec_text_col p {
  font-size: 20px;
  text-align: justify;
  color: var(--font-dark-color);
}

/*************************/
/* THIRD SECTION STARTS */
/*************************/
.third_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
}

.section_heading_1 {
  padding: 0 1rem;
  text-transform: capitalize;
  font-family: var(--font-1);
  font-weight: 800;
  /* letter-spacing: 2px; */
  /* font-size: 2.4rem; */
  font-size: 3.6rem;
  color: var(--primary-color);
  text-align: center;
}
.section_heading_2 {
  padding: 0 1rem;
  font-family: var(--font-1);
  color: var(--font-dark-color);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.third_sec_heading {
  color: var(--primary-color);
  font-weight: 800;
  font-family: var(--font-2);
}

.third_sec_text_col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.third_sec_text_col p {
  font-size: 1.6rem;
  text-align: justify;
  color: var(--font-dark-color);
}

.explore__button {
  background-color: var(--primary-light-color);
  color: var(--font-dark-color);
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 20px;
}

.explore__button:hover,
.explore__button:active {
  background: var(--primary-color);
  color: var(--font-dark-color);
}

/*************************/
/* FOURTH SECTION STARTS */
/*************************/
.fourth_section {
  padding-top: var(--padding-max);
}

/*************************/
/* OUR IMPACT SECTION */
/*************************/
.our_impact_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
  background-color: var(--most-light-primary-color);
}

.impact_wrapper {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  align-items: flex-start;
}

/* IMPACT LEFT SIDE */
.impact_left {
  flex: 1;
}

.impact_left ul {
  list-style: none;
  padding: 0;
}

.impact_left li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.impact_left li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: -7px;
  font-size: 26px;
  color: var(--primary-color);
}

/* IMPACT RIGHT SIDE */
.impact_right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.impact_card {
  background: linear-gradient(135deg, #6c63ff, #4e73df);
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  transition: 0.3s ease;
  display: grid;
  grid-template-columns: 60px auto;
}

.impact_card:nth-child(2) {
  background: linear-gradient(135deg, #ff7b54, #ff4e50);
}

.impact_card:nth-child(3) {
  background: linear-gradient(135deg, #00c9a7, #008c76);
}

.impact_card:nth-child(4) {
  background: linear-gradient(135deg, #f9a826, #f37335);
}

.impact_card:nth-child(4) p {
  font-size: 12px;
}

.impact_card:hover {
  transform: translateY(-5px);
}

.impact_card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.impact_card p {
  font-size: 14px;
  margin-bottom: 0px !important;
}

.impact_card_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0px !important;
}

.impact_icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact_icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/*************************/
/* PROUD PARTNERS SECTION */
/*************************/
.proud_partners_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
}

.schools_logo {
  height: 80px;
}

/*************************/
/* REAL CLASSROOM SECTION  */
/*************************/
.real_classroom_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
  background-color: var(--most-light-primary-color);
}

.students-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 10px;
  column-gap: 10px;
  padding: 10px;
}

.student-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.students-grid img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  border-radius: 20px;
  overflow: hidden !important;
  transition: all 0.3s ease;
}

.school-grid img {
  max-height: 550px;
}

.students-grid img:hover {
  transform: scale(1.15);
}

/*************************/
/* FIFTH SECTION STARTS */
/*************************/
.fifth_section {
  padding-top: var(--padding-max);
}

.fifth_sec_card_inner {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 4rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-radius: 10px;
  transition: all 0.2s;
}

.fifth_sec_card_inner:hover {
  background-color: var(--most-light-primary-color);
  transform: scale(1.15);
}

.fifth_sec_card_inner span {
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--font-2);
  color: var(--font-dark-color);
}

.fifth_sec_card_inner h3 {
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  font-size: 1.8rem;
  font-family: var(--font-1);
}

.fifth_sec_card_inner .fifth_sec_image {
  width: 100px;
}

/********************************/
/* SIXTH SECTION STARTS [FAQS] */
/*******************************/
.sixth_section {
  padding-top: var(--padding-max);
}

.sixth_section .section_heading_2 {
  margin-bottom: 0;
}

.FAQ_Cards {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.accordion___item {
  margin-bottom: 3rem;
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.accordion___item:last-child {
  margin-bottom: 0;
}

.accordion___item .accordion__toggleBox {
  display: flex;
  padding: 1.5rem 3rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  cursor: pointer;
  gap: 1rem;
}

.accordion__heading {
  font-size: 2rem;
  line-height: 1.5;
}

.down__icon__pm_sec {
  font-size: 2.4rem;
}

.accordion__inner__text {
  padding: 2rem;
  display: none;
}

.accordion__inner__text p {
  font-size: 1.6rem;
}

.accordion__inner__text ul li {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.accordion_item_active .accordion__inner__text {
  display: block;
}

.accordion___item .accordion__toggleBox {
  border-left: 10px solid var(--primary-color);
}

.view_more_faq_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.View_more_faq {
  font-size: 2rem;
  font-weight: 600;
  background-color: var(--primary-light-color);
  color: var(--body-color);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-3);
}

.View_more_faq:hover {
  background-color: var(--primary-color);
  color: var(--body-color);
}

/*************************/
/* FOOTER SECTION STARTS */
/*************************/
.footer {
  background-color: var(--footer-color);
  color: var(--body-color);
  padding: 4rem 0;
  padding-bottom: 1rem;
}

.footer .row {
  padding-bottom: 1.5rem;
}

.footer_logo_box img {
  width: 200px;
  margin-bottom: 2rem;
}

.footer___para {
  font-size: 1.35rem;
  color: var(--body-color);
}

.company__main_details h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.company__main_details a {
  font-size: 1.6rem;
  font-family: var(--font-2);
  font-weight: 600;
  color: var(--body-color);
}

.company__main_details a:hover {
  color: var(--primary-color);
}

.fontAwesomeIcon {
  font-size: 3rem !important;
}

.footer_col_1 h3 {
  font-size: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.footer_inner_col__1__items {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer_inner_col__1__items a {
  color: var(--body-color);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: var(--font-2);
}

.footer_inner_col__1__items a:hover {
  color: var(--primary-color);
}

.All_social_media_box {
  display: flex;
  gap: 2rem;
}

.All_social_media_box span a {
  color: var(--body-color);
}

.copyright_paragraph {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-2);
  text-align: center;
}

/************************************************************************/
/* TERMS AND CONDITIONS, REFUND POLICY, PRIVACY POLICY SECTION STARTS */
/************************************************************************/
.terms_and_conditions_section,
.refund_policy_section {
  background-color: var(--most-light-primary-color);
}

.T_and_C_Heading__box {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.T_and_C_Heading__box h2 {
  padding: 1rem 2rem;
  font-size: 4rem;
  color: var(--body-color);
  text-align: center;
  background-color: var(--primary-color);
}

.terms_and_condition_col {
  padding: 5rem 0;
}

.terms_and_condition_col h3 {
  font-size: 3rem;
  font-family: var(--font-1);
  font-weight: 600;
  color: var(--primary-color);
}

.terms_and_condition_col p,
.terms_and_condition_col li {
  font-family: var(--font-1);
  font-size: 1.6rem;
  color: var(--font-dark-color);
}

.terms_and_condition_col li {
  list-style: disc;
}

/*********************************/
/* SEVENTH SECTION DESIGN STARTS */
/*********************************/
.seventh_section {
  padding-top: var(--padding-max);
}

.seventh_section .team_card .img__bx img {
  width: 100px;
  height: 100px;
}

.star_icon {
  font-size: 2rem;
  fill: rgb(242, 193, 15);
}

.seventh_section .team_card .text__cnt {
  padding: 0 2rem;
}

.team_card {
  padding: 4rem;
}

.team_card_manager {
  padding: 4rem 1rem;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  min-height: 500px;
}

.team_card .img__bx img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
}

.team_card .text__cnt {
  font-weight: 600;
  color: var(--font-dark-color);
  font-family: var(--font-2);
}

.team_card .text__cnt h4 {
  color: var(--font-dark-color);
  font-size: 2rem;
  text-align: center;
  text-transform: capitalize;
  font-weight: 800;
  font-family: var(--font-1);
}

.team_card .text__cnt p {
  font-size: 1.6rem;
}

/*********************************/
/* EIGHTH SECTION DESIGN STARTS */
/*********************************/
.eighth_section {
  padding-top: var(--padding-max);
}

.Navigator__buttons {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav___btn {
  font-size: 2rem;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 800;
  font-family: var(--font-2);
  background-color: var(--body-color);
  border: 5px inset var(--primary-color);
  transition: all 0.1s;
}

.nav___btn:hover {
  background-color: var(--primary-color);
  color: var(--body-color);
  border: 5px solid var(--primary-color);
}

.eighth_sec_card {
  padding: 2rem;
}

.eight_section__inner_all_holder {
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.5s;
  min-height: 510px;
}

.eight_section__inner_all_holder:hover {
  background-color: var(--most-light-primary-color);
}

.eight_section__inner_all_holder:hover .course_content h2 {
  color: var(--font-dark-color);
}

.eight_section__inner_all_holder:hover .course_content a {
  background-color: var(--body-color);
}

.course__cover_image_box img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.course_content {
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course_content h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  font-family: var(--font-1);
  font-weight: 600;
}

.course_content p {
  color: var(--font-dark-color);
  font-size: 1.6rem;
  font-family: var(--font-2);
  font-weight: 600;
}

.course_content a {
  font-size: 1.8rem;
  font-family: var(--font-1);
  font-weight: 600;
  color: var(--font-dark-color);
  background-color: var(--primary-light-color);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
}

.course_content a:hover {
  background-color: var(--primary-color);
}

.active___navigator_btn {
  background-color: var(--primary-color);
  color: var(--body-color);
  border: 5px solid var(--primary-color);
}

/*********************************/
/* NINETH SECTION DESIGN STARTS */
/*********************************/
.nineth_section {
  padding: var(--padding-max) 0;
  background-color: var(--most-light-primary-color);
}

.ninethSectionVideoCol {
  padding: 2rem;
}

.video__player {
  width: 100%;
  height: 315px;
}

/*********************************/
/* TENTH SECTION DESIGN STARTS */
/*********************************/
.tenth_section {
  background-color: var(--most-light-primary-color);
  padding: var(--padding-max) 0;
}

.tenthSectionVideoCol {
  padding: 2rem;
}

/*********************************/
/* ABOUT US SECTION DESIGN STARTS */
/*********************************/
.about_us_section_1 {
  padding-top: var(--padding-max);
}

.about_us_section_1 .row {
  margin-bottom: var(--padding-max);
}

.about_us_section_1 .row:last-child {
  margin-bottom: 0;
}

.about_sec_col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about_sec_col h2 {
  font-size: 3rem;
  color: var(--primary-color);
}

.about_sec_col p {
  font-size: 1.8rem;
  color: var(--font-dark-color);
}

.about__sec__text__col {
  padding-left: 30px;
}

.about_us_section_1_image_col img {
  height: 450px;
}

.Read__more_btn {
  font-size: 2rem;
  font-family: var(--font-1);
  font-weight: 600;
  color: var(--font-dark-color);
  background-color: var(--primary-light-color);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-align: center;
  border: none;
  transition: all 0.2s;
}

.Read__more_btn:hover {
  background-color: var(--primary-color);
}

.para_hidden {
  display: none;
}

.founder__row {
  background-color: var(--most-light-primary-color);
  padding: 4rem;
  border-radius: 4rem;
}

.about_founder_text_col p {
  font-size: 1.8rem;
}

.about_founder_text_col h5 {
  font-size: 2rem;
}

.about_founder_text_col h3 {
  line-height: 1.5;
}

.founder_image_col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder_image_col img {
  height: 500px;
  border-radius: 20px;
}

.about_sec_misson_and_vision_col {
  padding: 2rem;
}

.Misson__inner__box_1,
.Misson__inner__box_2 {
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 2rem;
  border-left: 5px ridge var(--primary-color);
  transition: all 0.5s;
  min-height: 170px;
  margin-bottom: 2rem;
}

.Misson__inner__box_1:hover,
.Misson__inner__box_2:hover {
  transform: scale(1.05);
  background-color: var(--most-light-primary-color);
  border-right: 5px ridge var(--font-dark-color);
}

.Misson__inner__box_1:hover h2,
.Misson__inner__box_2:hover h2 {
  color: var(--font-dark-color);
}

.about_sec_misson_and_vision_col p {
  font-size: 1.8rem;
}

.about_sec_teacher_section h2 {
  text-align: center;
  font-size: 4rem;
  color: var(--primary-color);
}

.teachers_card {
  padding: 2rem;
}

.teachers_card_inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  border-radius: 20px;
  transition: all 0.3s;
}

.teachers_card_inner:hover {
  background-color: var(--most-light-primary-color);
}

.teachers_card_inner:hover h3 {
  font-weight: 800;
}

.teachers_card_inner img {
  height: 250px;
  width: 100%;
  border-radius: 20px;
  border-radius: 50%;
}

.teachers_card_inner h3 {
  text-align: center;
  color: var(--font-dark-color);
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-2);
}

.about_sec_teacher_section {
  padding: var(--padding-max) 0;
}

/**************************************/
/* REGESTRATION SECTION DESIGN STARTS */
/*************************************/
.regestration_section {
  background-image: radial-gradient(
    circle farthest-corner at 10% 90%,
    rgba(252, 231, 121, 1) 10%,
    rgba(255, 200, 124, 1) 90%
  );
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.reg_sec_form_col {
  padding: 2rem;
}

.reg_sec_inner_form_box {
  box-shadow: var(--shadow);
  background-color: var(--body-color);
  padding: 3rem 2rem 1.5rem 2rem;
  border-radius: 2rem;
}

.reg_sec_inner_form_box h2 {
  font-size: 2.4rem;
  font-size: 600;
  font-family: var(--font-1);
  color: var(--primary-color);
  text-align: center;
}

.reg_sec_inner_form_box h4 {
  font-size: 2rem;
  font-size: 600;
  font-family: var(--font-1);
  color: var(--font-dark-color);
  text-align: center;
}

.reg_sec_inner_form_box .Reg_form {
  padding: 2rem;
}

.reg_sec_inner_form_box .input_items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reg_sec_inner_form_box .input_items input,
.reg_sec_inner_form_box .input_items select {
  margin-bottom: 2rem;
}

.reg_sec_inner_form_box .input_items input,
.reg_sec_inner_form_box .input_items select {
  font-size: 1.8rem;
  color: var(--font-dark-color);
  padding: 0.5rem 1rem;
  outline-color: var(--primary-color);
  background-color: #fff8e4;
  border: none;
  border-radius: 5px;
}

.reg_sec_inner_form_box .input_items label {
  font-size: 1.6rem;
  color: var(--font-dark-color);
  font-weight: 500;
}

.reg_sec_inner_form_box .form_submit_btn {
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: var(--primary-light-color);
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  width: 30%;
  text-transform: uppercase;
}

.reg_sec_inner_form_box .form_submit_btn:hover {
  background-color: var(--primary-color);
}

.reg_sec_form_col_2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reg_sec_form_col_2 h2 {
  font-size: 3.6rem;
  font-size: 600;
  font-family: var(--font-1);
  color: var(--body-color);
  text-align: center;
}

.reg_sec_form_col_2 h4 {
  font-size: 1.4rem;
  font-size: 600;
  font-family: var(--font-1);
  color: var(--font-dark-color);
  text-align: center;
}

.reg_sec_video_main_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
}

.reg_se_inner_box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reg_sec_video_player {
  width: 350px;
  height: 200px;
}

/**************************************/
/*  EXPECT SECTION DESIGN STARTS */
/*************************************/
.expect_section {
  padding-top: var(--padding-max);
}

.expect_section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 4rem;
}

.expect_card {
  padding: 2rem;
}

.expect__card__inner_box {
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  gap: 1rem;
  flex-direction: column;
  min-height: 240px;
}

.expect_card_icon {
  height: 100px;
  width: 100px;
}

.expect__card__inner_box p {
  font-size: 1.6rem;
  color: var(--font-dark-color);
  font-family: var(--font-2);
  text-align: center;
  font-weight: 600;
}

/**************************************/
/*  INNOVATORS SECTION DESIGN STARTS */
/*************************************/
.innovators_section {
  padding-top: var(--padding-max);
}

.Innovators_card {
  padding: 2rem;
}

.Innovators__card_inner_box {
  min-height: 500px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 2rem;
}

.Innovators__card_inner_box .student_image {
  width: 100%;
  height: 250px;
  border-radius: 2rem;
}

.Innovators__card_inner_box h2 {
  padding: 1rem 0;
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-color);
}

.Innovators__card_inner_box p {
  color: var(--font-dark-color);
  font-size: 1.4rem;
  text-align: center;
}

/**************************************/
/*  INSTITUTES SECTION DESIGN STARTS */
/*************************************/
.institutes__section {
  padding-top: var(--padding-max);
}

.institute__card {
  padding: 1rem;
}

.institute__inner_box {
  padding: 1rem;
  box-shadow: var(--shadow);
  border-radius: 50%;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.institute__image {
  width: 100%;
}

/**************************************/
/* CONTACT US SECTION DESIGN STARTS */
/*************************************/
.contact_us_section {
  padding: var(--padding-max) 0;
}

.contact_sec_heading {
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--font-1);
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact_section_col_1 form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact_section_col_1 .form_items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact_section_col_1 .form_items input,
.contact_section_col_1 .form_items textarea,
.contact_section_col_1 .form_items select {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 0.3rem;
  border: none;
  background-color: var(--most-light-primary-color);
  outline-color: var(--primary-color);
  outline-width: 1px;
}

.contact_section_col_1 .form_items textarea {
  min-height: 100px;
}

.contact_section_col_1 .form_items label {
  font-size: 2rem;
  font-weight: 600;
}

.contact_section_col_1 .form_items button {
  background-color: var(--primary-light-color);
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  width: 30%;
  transition: all 0.2s ease;
  border: none;
}

.contact_section_col_1 .form_items button:hover {
  background-color: var(--primary-color);
}

.contact_section_col_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
}

.inner_box_contact_sec {
  box-shadow: var(--shadow);
  padding: 3rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.inner__items_contact {
  display: flex;
  gap: 1rem;
}

.most__inner___contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.most__inner___contact strong {
  font-size: 2rem;
  color: var(--primary-color);
}

.most__inner___contact a {
  font-size: 1.8rem;
  color: var(--font-dark-color);
  font-weight: 600;
}

.contact_us_icon {
  margin: 1rem;
  width: 50px;
  height: 50px;
}

/**************************************/
/* COURSE SECTION DESIGN STARTS */
/*************************************/
.course_section {
  background:
    linear-gradient(121deg, #ff0000 0%, #ff0000 100%),
    linear-gradient(140deg, #ff5454 27%, #223dcb 100%),
    linear-gradient(140deg, #4e9c51 0%, #001aff 72%),
    linear-gradient(64deg, #6e00ff 0%, #0038ff 100%),
    radial-gradient(52% 101.79% at 50% 50%, #707300 0%, #ff0000 100%),
    radial-gradient(100% 100% at 70% 0%, #7a3b00 0%, #1dac92 100%);
  background-blend-mode:
    overlay, overlay, difference, difference, color-burn, exclusion;
  padding: var(--padding-max) 0;
  width: 100%;
  color: var(--body-color);
}

/* .Games_Animation_page {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
    url("../images/course_imgs/GamesAnimationPuzzles_Course_Page_Main_Image.jpg")
      center center/cover;
} */

.course_heading_box {
  display: flex;
  gap: 2rem;
}

.course_icon__box img {
  width: 100px;
  height: 100px;
}

.course_title__box h2 {
  text-transform: uppercase;
  font-weight: 1000;
  font-family: var(--font-1);
  font-size: 4rem;
}

.course_title__box h3 {
  text-transform: uppercase;
  font-family: var(--font-2);
  font-size: 2.4rem;
  font-weight: 600;
}

.course_intro_box {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.course_intro_box p {
  font-size: 1.6rem;
  width: 80%;
  font-family: var(--font-3);
}

.course_intro_box h4 {
  font-weight: 600;
  font-size: 2rem;
  font-family: var(--font-4);
}

.course_explanatory_video iframe {
  width: 450px;
  height: 250px;
}

/**************************************/
/* COURSE INTRO DESIGN STARTS */
/*************************************/
.course_intro_section {
  padding: var(--padding-max) 0;
  background-color: var(--course-body-color);
  font-family: var(--font-1);
}

.course_intro_col h2 {
  font-weight: 800;
  font-size: 3rem;
  color: var(--font-dark-color);
}

.course_intro_col p {
  color: var(--font-dark-color);
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 1.8rem;
}

.course_intro_col strong {
  color: var(--font-dark-color);
  font-weight: 1000;
  font-family: var(--font-1);
}

.course_redirect_buttons_box {
  padding-top: 1rem;
  display: flex;
  gap: 2rem;
}

.course_redirect_btn {
  font-size: 2rem;
  border-radius: 5px;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  color: var(--body-color);
  background-image: linear-gradient(
    72.3deg,
    rgba(29, 7, 64, 1) 8.5%,
    rgba(253, 105, 139, 1) 92.2%
  );
  transition: all 0.1s;
}

.course_redirect_btn:hover {
  background-image: linear-gradient(
    7.3deg,
    rgba(29, 7, 64, 1) 8.5%,
    rgba(253, 105, 139, 1) 92.2%
  );
  color: var(--body-color);
}

.program_str_inner_box {
  box-shadow: var(--shadow);
  padding: 3rem;
  border-top: 10px ridge var(--primary-color);
  border-bottom: 10px ridge var(--primary-color);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.program_str_card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.program_str_card:last-child {
  margin-bottom: 0;
}

.program_str_card span {
  font-size: 1.6rem;
}

.program_card_block_1 {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--paragraph-color);
}

.program_card_block_2 {
  color: var(--font-dark-color);
  font-weight: 600;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.Course_box_IonIcon {
  color: var(--primary-color);
  font-size: 4rem;
}

.Learning_outcome_box {
  margin-top: 4rem;
}

.Learning_outcome_box h3 {
  font-size: 2.2rem;
  font-family: var(--font-1);
  color: var(--font-dark-color);
  font-weight: 600;
}
.Learning_outcome_box .outcome_divisions {
  display: flex;
  gap: 4rem;
}
.Learning_outcome_box .outcome_divisions ul li {
  list-style: disc;
  color: var(--font-dark-color);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-2);
}

/*****************************************/
/* STUDENTS WORK SECTION DESIGN STARTS */
/****************************************/
.students_work_section,
.student_presentation_section {
  padding: var(--padding-max) 0;
}

.students_work_section h2,
.student_presentation_section h2 {
  font-size: 3rem;
  font-family: var(--font-1);
  font-weight: 600;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.students_projects_card {
  padding: 2rem;
}

.students_card_inner {
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 2rem;

  background-image: radial-gradient(
    circle farthest-corner at 10% 90%,
    rgba(252, 231, 121, 1) 10%,
    rgba(255, 200, 124, 1) 90%
  );
  color: var(--body-color);
}

.students_card_inner h4,
.students_presentation_inner_box h4 {
  font-size: 2rem;
  text-align: center;
  color: var(--font-dark-color);
  font-weight: 600;
  font-family: var(--font-2);
  margin-bottom: 1.5rem;
}

.students_work {
  height: 320px;
  width: 100%;
}

/*************************************************/
/* STUDENTS PRESENTATION SECTION DESIGN STARTS */
/************************************************/
.student_presentation_section {
  background-color: var(--most-light-primary-color);
}

.students_video_presentation {
  width: 100%;
  height: 220px;
}

.students_presentation_col {
  padding: 2rem;
}

.students_presentation_inner_box {
  box-shadow: var(--shadow);
  border-radius: 5px;
  padding: 3rem;
  transition: all 0.3s;
  background-color: var(--most-light-primary-color);
}

.students_presentation_inner_box:hover {
  background-color: var(--body-color);
  transform: scale(1.05);
}

/*************************************************/
/* STUDENTS WORK SLIDER SECTION DESIGN STARTS */
/************************************************/
.student_Work_slider_section {
  background-color: var(--body-color);
  padding: var(--padding-max) 0;
}

.student_Work_slider_section .section_heading_1 {
  margin-bottom: 2rem;
}

.screenshot_image_box {
  padding: 2rem;
}

.screenshot__image_box_inner {
  box-shadow: var(--shadow);
  padding: 2rem;
  gap: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
}

.screenshot__image_box_inner img {
  border-radius: 5px;
}

.screenshot__image_box_inner h3 {
  color: var(--primary-color);
  font-family: var(--font-1);
  font-weight: 600;
  font-size: 2rem;
}

/*******************************************/
/* STUDENTS VIDEO CAROUSEL SECTION STARTS */
/*******************************************/
.student_video_carousel_section {
  padding: var(--padding-max) 0;
}

/*******************************************/
/* GALLERY VIDEO CAROUSEL SECTION STARTS */
/*******************************************/
.gallery__course__carousel__section {
  padding: var(--padding-max) 0;
}

.student__gallery {
  padding: var(--padding-max) 0;
}

.student_gallery_image_box {
  padding: 15px;
  overflow: hidden !important;
}

.student_gallery_image_box img {
  height: 250px;
  width: 100%;
  transition: all 0.3s;
}

.student_gallery_image_box img:hover {
  transform: scale(1.15);
}

/********************************/
/* STEM SETUP SECTION STARTS */
/********************************/
.stem__setup_section {
  padding-top: var(--padding-max);
}

.stem__setup__section__col p {
  text-align: center;
  font-size: 16px;
}

/*******************************/
/* STEM ICONS SECTION STARTS */
/*******************************/
.stem__icons__section {
  padding-top: var(--padding-min);
}

.stem__icon__box__inner {
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 2rem;
  border-radius: 20px;
}

.stem__icon__box__inner span {
  font-size: 12px;
  text-align: center;
}

/****************************************/
/* TECHNOLOGY IN FOCUS SECTION STARTS */
/****************************************/
.technology__focus_section {
  padding-top: var(--padding-max);
}

.technology_focus_col {
  padding: 10px;
}

.tech__focus__innerBox {
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-radius: 30px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 10px;
}

.tech__focus__innerBox img {
  height: 250px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 100%;
}

.tech__focus__innerBox:hover {
  background-color: var(--primary-color);
}

.tech__focus__innerBox:hover .technology_focus_heading {
  color: var(--font-dark-color);
}

.technology_focus_heading {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
}

/*******************************************/
/* SCHOOL TESTIMONIAL SECTION */
/*******************************************/
.school_testimonial_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
}

.school_testimonial_item {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  height: 180px;
  border: 3px ridge var(--primary-color);
  transition: all 0.3s;
}

.school_testimonial_item:hover {
  background-color: #fdf7b9;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
}

.school_text__cnt h3 {
  color: var(--primary-color);
}

.school_text__cnt h4 {
  color: var(--primary-color);
}

.school_text__cnt p {
  font-size: 14px;
}

/**********************/
/* SCHOOL Z SECTION */
/**********************/
.ai_robotics_lab_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
}

.text_sec_school_z_design {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.text_sec_school_z_design li {
  list-style: circle;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.text_sec_school_z_design h4 {
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  font-size: 28px;
}

.text_sec_school_z_design span {
  color: var(--primary-light-color);
  font-size: 20px;
}

.school_z_section_img {
  max-height: 400px;
  width: 100%;
  border-radius: 20px;
}

/*******************************************/
/* GRADE WISE LEARNING ROADMAP SECTION */
/*******************************************/
.grade_wise_learning_section {
  padding-top: var(--padding-max);
}

.grade_wise_learning_sec_col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.table__Container {
  background-color: #f0f0f0;
  width: 100%;
  padding: 0 2rem;
}

.table__headings {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 2rem;
}

.table__headings span {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  border: 2px solid #fff;
}

.table__contents div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
  grid-template-rows: 70px;
}

.table__contents div span {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/***************************************/
/* OUR OFFERINGS FOR SCHOOLS SECTION */
/***************************************/
.our__offerings__section {
  padding-top: var(--padding-max);
}

.our__offerings__col {
  margin-top: 40px;
}

.our__offerings__col_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  box-shadow: var(--shadow);
  gap: 1rem;
  height: 410px;
  border-radius: 20px;
}

.our__offerings__col_inner h2 {
  color: var(--primary-color);
  font-size: 2rem;
}

.our__offerings__col_inner img {
  height: 200px;
  width: 100%;
}

.our__offerings__col_inner p {
  font-size: 16px;
}

/************************************/
/* FOR SCHOOLS CONTACT SECTION */
/************************************/
.schools_contact_section {
  padding-top: var(--padding-max);
  padding-bottom: var(--padding-max);
}

.form___items__inner {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.form___items__inner_box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form___items__inner_box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.form___items__inner_box label,
.radio_inp_school_form label {
  font-weight: 400 !important;
  font-size: 17px !important;
}

.radio_inp_school_form input[type="radio"] {
  width: 16px;
  height: 16px;
}

/**************************/
/* STICKY WHATSAPP BOX */
/**************************/
.whatsapp__box {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 15px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  z-index: 100;
}
