/*

Theme Name: modern-montessori

Theme URI: http://www.modern-montessori.com

Author: modern-montessori

Author URI: http://www.modern-montessori.com

Description: Simple and Responsive Wordpress theme.

*/


/* @font-face {
  font-family: "ComicSansMS-Regular";
  src: url("fonts/ComicSansMS.ttf");
} */

@font-face {
  font-family: "Jost-Light";
  src: url("fonts/Jost-Light.ttf");
}

@font-face {
  font-family: "Jost-Regular";
  src: url("fonts/Jost-Regular.ttf");
}

@font-face {
  font-family: "Jost-Medium";
  src: url("fonts/Jost-Medium.ttf");
}

@font-face {
  font-family: "Jost-SemiBold";
  src: url("fonts/Jost-SemiBold.ttf");
}

@font-face {
  font-family: "Jost-Bold";
  src: url("fonts/Jost-Bold.ttf");
}

@font-face {
  font-family: "Jost-ExtraBold";
  src: url("fonts/Jost-ExtraBold.ttf");
}

/* -- style for common -- */

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost-Regular";
  padding-top: 100px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--black);
  font-family: "Jost-Regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--black);
}

a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--black);
  text-decoration: none;
}

input,
textarea,
button,
select,
label,
a,
span,
img {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

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

:focus {
  box-shadow: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
}

ul,
ol {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Common Style */

:root {
  --primary: #eb4b7f;
  --black: #666666;
  --white: #fff;
  --blue: #30327b;
}

.common-container {
  padding: 0 260px;
  margin: auto;
  max-width: 1920px;
  width: 100%;
}

/* Header Style */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
}

body.nav-visible header.header {
  z-index: 100;
}

header.header.hide {
  transform: translateY(-120px);
}

header.scrolled {
  background-color: var(--white) !important;
}

.header-section {
  display: flex;
  justify-content: space-between;
  background: transparent;
  height: 100px;
  align-items: center;
}

#main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

#main-menu li a {
  color: #000;
  font-size: 20px;
}

#main-menu li li.active-now a {
  color: var(--primary);
}

#main-menu li li a {
  color: var(--black);
}

.highlight a.menu-parent-s {
  color: var(--primary) !important;
}

.header_nav_img {
  height: 60px;
}

.mobile-show {
  display: none !important;
}

.hambuger-menu-sec {
  display: none;
}

.menu-nav-icon {
  display: flex;
  flex-direction: column;
  width: 45px;
  cursor: pointer;
  align-items: flex-end;
  cursor: pointer;
}

.menu-nav-icon span {
  background: var(--black);
  border-radius: 10px;
  height: 3px;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}

.menu-nav-icon:hover span {
  width: 100% !important;
}

.menu-nav-icon span:nth-of-type(1) {
  width: 100%;
}

.menu-nav-icon span:nth-of-type(2) {
  width: 90%;
}

.menu-nav-icon span:nth-of-type(3) {
  width: 70%;
}

.menu-close-sec {
  display: none;
}

.menu-item.menu-item-has-children .menu-parent-s {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item.menu-item-has-children .dropdown-toggle {
  display: block;
  background-image: url(./images/down-arrow.png);
  border: none !important;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: -2px;
}

.dropdown-toggle::after {
  display: none;
}

.menu-item.menu-item-has-children {
  position: relative;
  perspective: 1000px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#main-menu .dropdown-menu a {
  padding: 10px 20px;
  display: flex;
  transition: all 0.3s ease-in-out;
  width: 100%;
  min-width: max-content;
}

#main-menu .dropdown-menu a:hover {
  background-color: #eb4b7f;
  color: var(--white) !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: block !important;
  min-width: 200px;
  padding: .8rem 0;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.12);
  margin: 0 !important;
  /* Animation Initial State */
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px) scale(0.96) rotateX(-12deg);
  transform-origin: top center;
  transition: all 0.2s ease-in-out;

}

/* Hover Animation */
.menu-item.menu-item-has-children.active-now .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1) rotateX(0deg);
  transition:
    opacity 0.35s ease-in,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
}

.dropdown-menu li {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s ease;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger timing */
.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(2) {
  transition-delay: 0.1s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(3) {
  transition-delay: 0.15s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(4) {
  transition-delay: 0.2s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(5) {
  transition-delay: 0.25s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(6) {
  transition-delay: 0.3s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(7) {
  transition-delay: 0.35s;
}

.menu-item.menu-item-has-children.active-now .dropdown-menu li:nth-child(8) {
  transition-delay: 0.4s;
}

.padding-100 {
  padding-top: 100px;
  width: 100%;
}

.padding-50 {
  padding-top: 50px;
  width: 100%;
}



/* Home Page Styles */


.hero-item {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-item .cover {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.about-us-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-us-section .about-us-image {
  width: 50%;
}

.about-us-section .about-us-image img {
  width: 100%;
}

.about-us-section .about-us-content {
  width: 50%;
}

.about-us-section .about-us-content h2 {
  font-size: 48px;
  color: #eb4b7f;
  margin: 0 0 30px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  font-weight: 600;
}

.about-us-section .about-us-content h3 {
  font-size: 30px;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 30px;
}

.about-us-section .about-us-content aside {
  background: #b6efeb;
  padding: 20px 30px;
  border-radius: 25px;
  color: var(--blue);
  font-size: 20px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  margin: 0 0 40px;
}

.about-us-section .about-us-content p {
  text-align: justify;
  font-size: 20px;
}

.btn-flex-sec {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}


.button {
  font-size: 18px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 7px 26px;
  min-width: 130px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 44px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.button:hover {
  transform: scale(1.05);
  background-color: var(--blue);
  color: #fff;
}

.button span {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: all 0.3s ease;
  background-color: var(--primary);
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
}

.button:hover span {
  background-color: var(--blue);
  animation: pulse 0.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.button-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--primary);
  filter: opacity(10%) contrast(105%);
  -webkit-filter: opacity(10%) contrast(105%);
  transition: opacity 0.3s ease;
}

.button:hover .button-overlay {
  opacity: 0.3;
}

.button img,
.button svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.button:hover img,
.button:hover svg {
  transform: translateX(5px);
}

.dark-blue-btn,
.dark-blue-btn span {
  background-color: var(--blue);
}

.dark-blue-btn:hover,
.dark-blue-btn:hover span {
  background-color: var(--primary);
}

.contact-num-sec {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-num-sec img {
  width: 61px;
  height: 61px;
  transform-origin: center;
  animation: contact-pulse 2.2s ease-in-out infinite;
}

@keyframes contact-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.contact-num-sec p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  color: #db0909;
  font-family: "Jost-SemiBold";
}

.contact-num-sec p span {
  font-size: 18px;
  font-family: 'Jost-Regular';
  text-decoration: none;
  color: #666666;
  line-height: 1.3em;
}

.service-section {
  background: url(./images/home/service_bg.jpg) no-repeat top center/cover;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.service-lists-sec .service-box {
  width: 100%;
  height: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  background: url(./images/home/bg_line1.svg) no-repeat top center / contain;
  padding: 26px 22px 50px;
  transition: transform 0.45s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease, background 0.3s;
  will-change: transform, box-shadow;
}

.service-lists-sec .service-box:nth-child(2) {
  background: url(./images/home/bg_line2.svg) no-repeat top center / contain;
}

.service-lists-sec .service-box:nth-child(3) {
  background: url(./images/home/bg_line3.svg) no-repeat top center / contain;
}

.service-lists-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1320px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.service-lists-sec .service-box:hover {
  transform: translateY(-12px) scale(1.015);
}

.service-lists-sec .service-box:hover::before {
  opacity: 1;
}

.service-lists-sec .service-box .service-image {
  overflow: hidden;
  border-radius: 8px;
}

.service-lists-sec .service-box .service-image img {
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
}

.service-lists-sec .service-box:hover .service-image img {
  transform: scale(1.08) translateY(-6px);
}

.service-image {
  width: 100%;
  height: 300px;
  -webkit-mask-image: url(./images/b02_mask.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./images/b02_mask.png);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 24px;
  color: #eb4b7f;
  margin: 0 0 19px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  margin-top: 10px;
}

.service-content p {
  font-size: 20px;
}

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

.common-title {
  font-size: 48px;
  /* font-weight: 600; */
  color: var(--primary);
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Bold";
}

.why-choose-us-flex-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.flex-direction {
  flex-direction: row-reverse;
}

.why-choose-us-section {
  background: url(./images/home/Why_Choose_Us_bg.png) no-repeat top 20px left calc(50% + 100px);
}

.why-choose-us-flex-sec .right-sec {
  width: 40%;
  padding-right: 30px;
}

.why-choose-us-flex-sec .left-sec {
  width: 60%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.choose-left-box li {
  width: 190px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  padding: 20px;
  transition: transform 0.45s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease, background 0.35s;
  will-change: transform, box-shadow;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
}

.choose-left-box li img {
  max-height: 80px;
}

/* Hover animation: subtle lift, shadow, overlay and icon scale */
.choose-left-box li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.choose-left-box li:hover::after,
.choose-left-box li:focus::after {
  opacity: 1;
}

.choose-left-box li:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.choose-left-box li img {
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1), filter 0.35s ease;
}

.choose-left-box li:hover img {
  transform: translateY(-6px) scale(1.08);
  filter: saturate(1.05) brightness(1.02);
}

@media (prefers-reduced-motion: reduce) {

  .choose-left-box li,
  .choose-left-box li img {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

.choose-left-box li h3 {
  font-size: 20px;
  color: #fff;
}

.first-choose li:nth-child(1) {
  width: 100%;
  background: #0a6375;
  max-width: 300px;
  height: 300px;
  padding: 20px 40px;
}

.first-choose li:nth-child(1) img {
  max-height: 110px;
}

.first-choose li:nth-child(2) {
  background: #b9d54c;
}

.second-choose li:nth-child(1) {
  background: #1cbbb4;
}

.second-choose li:nth-child(2) {
  background: #ed145b;
}

.second-choose li:nth-child(3) {
  background: #f7941e;
}

.third-choose li {
  background: #a3d39c;
  height: 300px;
  width: 100%;
  max-width: 240px;
}

.choose-left-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.choose-leaf-image {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
}

.choose-title {
  font-size: 24px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  color: var(--primary);
}

.why-choose-us-flex-sec .right-sec h3 {
  font-size: 36px;
  color: var(--blue);
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Bold";
  margin: 30px 0;
  display: block;
}

.why-choose-us-flex-sec .right-sec p {
  font-size: 20px;
  margin-bottom: 40px;
}

.testimonials-section {
  background: #fff0e5;
}

.testimonials-lists-sec {
  max-width: 1040px;
  margin: auto;
  text-align: center;
}

.testimonial-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.testimonial-profile {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  text-align: start;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border: 1px dashed #eb4b7f;
  padding: 8px;
  border-radius: 50%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testimonial-title {
  display: block;
  font-style: normal;
  color: var(--blue);
  font-size: 30px;
  font-family: 'Jost-Bold';
}

.testimonial-designation {
  font-size: 20px;
}

.testimonial-top-title {
  color: var(--blue);
  max-width: 620px;
  margin: auto;
  margin-top: 10px;
}

.testimonial_quote_image {
  margin: 30px auto 20px;
  width: 77px;
  display: flex;
}

.awards-wrapper {
  width: 100%;
  text-align: center;
}

.award-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.award-row.top-row .award-item:nth-child(2) {
  width: 100%;
  max-width: 275px;
}

.award-row.top-row .award-item:nth-child(3) {
  width: 100%;
  max-width: 100px;
}

.top-row .award-item {
  width: 100%;
  max-width: 180px;
}

.middle-row .award-item {
  width: 100%;
  max-width: 150px;
}

.bottom-row .award-item {
  width: 100%;
  max-width: 170px;
}

.award-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1), filter 0.35s ease, opacity 0.35s;
  transform-origin: center;
  filter: grayscale(30%) contrast(1);
  will-change: transform, filter, opacity;
}

.award-item:hover img,
.award-item:focus img {
  transform: translateY(-6px) scale(1.06);
  filter: grayscale(0) contrast(1.05);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

  .award-item img,
  .award-item:hover img {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}

.award-row.top-row {
  align-items: end;
}

.award-row.middle-row {
  align-items: center;
}

.award-row.bottom-row {
  align-items: start;
}

.flex-container {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.bottom-content-sec {
  max-width: 1200px;
  margin: auto;
}

.flex-left-sec {
  width: 50%;
}

.flex-left-sec img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flex-right-sec {
  width: 50%;
}

.flex-title {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 15px;
  font-family: 'Jost-Bold';
}

.flex-right-sec p {
  color: #000;
  margin-bottom: 15px;
  font-size: 17px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.primary-clr {
  color: var(--primary) !important;
}

.width-40 {
  width: 40%;
}

.width-30 {
  width: 30%;
}

.width-70 {
  width: 70%;
}

.width-20 {
  width: 20%;
}

.width-80 {
  width: 80%;
}

.width-100 {
  width: 100%;
}

.width-60 {
  width: 60%;
}

.width-45 {
  width: 45%;
}

.width-55 {
  width: 55%;
}

.padding-30 {
  padding-top: 30px;
}

.bottom-btn {
  margin: auto;
  margin-top: 30px;
}

.flex-right-sec ul {
  margin-bottom: 15px;
  display: grid;
  gap: 8px;
  padding-left: 25px;
}

.flex-right-sec li {
  font-size: 17px;
  color: #000;
}

h4.flex-title {
  font-size: 19px;
}

.min-width-150 {
  max-width: 200px;
  min-width: 200px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.min-width-225 {
  max-width: 225px;
  min-width: 225px;
  height: 225px;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.page-template-template-Our-Curriculum .flex-container.box-list-sec img {
  height: 570px;
}

.min-width-225 img {
  object-fit: cover !important;
}

.primary-sub-title {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 15px;
  font-family: 'Jost-Bold';
}

.faq-container {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.2s;
}

.question {
  padding: 20px 16px 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  font-size: 18px;
  transition: all 0.2s;
}

.question.active,
.question:hover {
  color: #e74c3c;
}

.question span {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #555;
  color: white;
  transition: 0.2s;
  border-radius: 2px;
}

.question span svg,
.question span img {
  transition: 0.2s;
}

.question.active span,
.question:hover span {
  background-color: #e74c3c;
}

.question.active span svg,
.question.active span img {
  transform: rotate(45deg);
}

.question span img {
  filter: invert(1);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 5px 0 20px 0;
  display: grid;
  gap: 10px;
}

.answer p,
.answer ul {
  font-size: 15px;
  color: #000;
}

b,
strong {
  font-family: 'Jost-Bold';
}

.common-para {
  text-align: center;
  margin-top: 24px;
}

.preschool-container {
  border: none !important;
  padding: 190px !important;
  background: url(./images/letter.jpg) no-repeat center;
  background-size: cover;
  border-radius: 10px;
}

.preschool-container .flex-right-sec {
  padding: 0;
}

.common-para-sec {
  display: grid;
  gap: 5px;
  margin-bottom: 25px;
  margin-top: 20px;
  font-size: 17px;
  color: #555;
  font-family: 'Jost-Bold';
  text-align: center;
}

.common-para-sec p {
  font-size: 17px;
  color: #555;
  font-family: 'Jost-Bold';
  text-align: center;
}

.common-container.main-preschool-container {
  max-width: 1390px;
  padding: 50px 30px;
}

.color-red {
  color: #ff0000;
}

.answer aside {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dark-blue-btn.spare-btn {
  font-size: 14px;
  font-family: "Jost-Bold";
  color: #fff;
  border-radius: 0;
}

.mmi-globe-map {
  max-width: 740px;
  margin: auto;
  display: block;
  width: 100%;
}

.blog-items-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-list-tile {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-list-tile a {
  font-size: 20px;
  font-family: 'Jost-Bold';
  color: var(--white);
}

.blog-list-bottom-sec {
  padding: 15px 10px;
}

.blog-list-contents p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}

.blog-list-image {
  margin-bottom: 0;
  height: 225px;
  overflow: hidden;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-items-list .blog-items:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.blog-items-list .blog-items:hover img {
  transform: scale(1.10);
}

.blog-items-list .blog-items {
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}

.blog-items-list .blog-items:nth-child(1) {
  background-color: var(--primary);
}

.blog-items-list .blog-items:nth-child(2) {
  background-color: #1cbbb4;
}

.blog-items-list .blog-items:nth-child(3) {
  background-color: #a3d39c;
}

.blog-items-list .blog-items:nth-child(4) {
  background-color: var(--blue);
}

.blog-items-list .blog-items:nth-child(5) {
  background-color: #db0909;
}

.blog-items-list .blog-items:nth-child(6) {
  background-color: #ff9b24;
}


.scroll-table {
  width: 100%;
  display: block;
}

.table-blog-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.table-blog-list li ul {
  padding-left: 50px;
  margin: 5px 0;
}

.table-blog-list a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.table-blog-list a:hover {
  background: #f5f5f5;
  padding-left: 15px;
}

.blog-single-page {
  padding: 60px 0;
}


.faq-container.table-of-content {
  padding: 0 15px;
  background: #f9f9f9;
  margin: 15px 0;
  border: none;
}

.faq-container.table-of-content .question {
  justify-content: space-between;
}

.faq-container.table-of-content .question {
  font-family: 'Jost-Bold';
  justify-content: space-between;
  color: #0674bb;
  font-size: 20px;
}

.faq-container.table-of-content .question span {
  width: 34px;
  height: 30px;
  background-color: #555;
}

.faq-container.table-of-content .question.active span svg {
  transform: none;
}

.post-title {
  margin-bottom: 15px;
  font-size: 28px;
  font-family: 'Jost-Medium';
  color: var(--primary);
}

.post-date {
  margin-bottom: 35px;
  font-size: 20px;
  color: #000;
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-date svg {
  width: 24px;
  height: 25px;
}

.blog-single-page h2 {
  margin: 20px 0 15px;
  font-size: 24px;
  color: var(--blue);
  font-family: 'Jost-Medium';
}

.blog-single-page h3 {
  display: block;
  margin-bottom: 15px;
  font-size: 19px;
  color: var(--blue);
  font-family: 'Jost-Bold';
}

.table-content-box {
  background: #f5f7fa;
  padding: 15px;
  margin: 20px 0;
}

.featured-image img {
  width: 100%;
  margin-bottom: 25px;
  margin-top: 5px;
}

.blog-single-page p {
  color: #000;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Sidebar */
.news-sidebar h3 {
  color: var(--primary);
  font-size: 58px;
  margin: 0 0 30px;
  text-align: center;
  /* font-family: 'ComicSansMS-Regular'; */
  font-family: 'Jost-Medium';
  /* font-weight: 500; */
}

.news-item {
  margin-bottom: 30px;
}

.news-img img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.news-content h5 a {
  text-decoration: none;
  font-size: 21px;
  margin: 10px 0 10px;
  color: var(--blue);
  font-family: 'Jost-Bold';
  display: block;
}

.news-content p {
  margin: 0 0 10px;
  font-size: 18px;
  color: #8e8e8e;
}

.news-sidebar .post-date {
  font-size: 18px;
  margin: 0;
}

#form_contact-form label {
  display: none;
  padding: 0 !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
span.select2-selection {
  width: 100% !important;
  text-indent: 25px;
  padding: 12px 0 !important;
  border: 1px solid #c7c7c7 !important;
  border-radius: 10px !important;
  font-size: 17px !important;
  height: 54px !important;
}

span.select2-selection {
  background-color: #fff !important;
  padding-right: 10px !important;
}

textarea {
  width: 100% !important;
  height: 150px;
  resize: none;
  text-indent: 25px;
  padding: 12px 0 !important;
  border: 1px solid #c7c7c7 !important;
  border-radius: 10px !important;
  font-size: 17px !important;
}

.contact-sub-title {
  font-size: 36px;
  color: var(--blue);
  font-family: 'Jost-Bold';
  margin-top: 4px;
}

.contact-map,
.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-main-sec {
  background: #f1f1f1;
}

.contact-main-sec #form_contact-form,
.contact-main-sec .forminator-custom-form {
  max-width: 768px;
  margin: auto !important;
}

.frm_submit.frm_flex {
  display: flex;
  justify-content: center;
}

.frm_submit.frm_flex .button,
.contact-main-sec .forminator-button {
  font-size: 18px !important;
  border-radius: 50px !important;
  background: var(--primary) !important;
  color: #fff !important;
  padding: 7px 26px !important;
  cursor: pointer !important;
  height: 44px !important;
  width: fit-content !important;
  border: none !important;
  box-shadow: none !important;
  margin: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.contact-main-sec .forminator-button::after {
  content: '';
  display: block;
  background-image: url(./images/btn-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.contact-main-sec .forminator-row-last .forminator-field {
  display: flex;
}

.frm_submit.frm_flex .button:hover,
.contact-main-sec .forminator-button:hover {
  background-color: var(--blue) !important;
}

.branch-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.branch-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.branch-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.216);
}

.branch-item:hover .branch-image img {
  transform: scale(1.2);
}

.branch-image {
  height: 270px;
  width: 100%;
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.branches-bottom-sec {
  padding: 25px;
}

.branch-title {
  font-size: 24px;
  color: #2c3e50;
  font-family: 'Jost-Semibold';
  margin-bottom: 20px;
}

.branches-bottom-sec p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}

.branch-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 25px;
}

.branch-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-family: "Jost-Medium";
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.branch-buttons .facebook-link {
  color: #3b5998;
  border-color: #3b5998;
  background: transparent;
}

.branch-buttons .facebook-link svg path {
  fill: #3b5998;
}

.branch-buttons .facebook-link:hover {
  background: #3b5998;
  color: white;
}

.branch-buttons .facebook-link:hover svg path {
  fill: white;
}

.branch-buttons .map-link {
  color: #db4437;
  border-color: #db4437;
  background: transparent;
}

.branch-buttons .map-link:hover {
  background: #db4437;
  color: white;
}

.branch-buttons .map-link svg path {
  fill: #db4437;
}

.branch-buttons .map-link:hover svg path {
  fill: white;
}

.branches-bottom-sec p svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
}

.branch-btn svg {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}


.form-fill-section .frm_fields_container,
.form-fill-section .forminator-custom-form {
  max-width: 600px;
  margin: auto !important;
  display: block;
}

.form-fill-section .drak-color-head {
  font-size: 28px;
  color: var(--blue);
  text-transform: uppercase;
  font-family: "Jost-ExtraBold";
}

label,
.frm_primary_label,
.forminator-label {
  color: #555;
  font-family: "Jost-SemiBold";
}

.forminator-label {
  font-size: 16px !important;
  color: #555 !important;
  font-family: "Jost-SemiBold" !important;
  margin-bottom: 2px !important;
  cursor: default !important;
}

.form-fill-section .frm_fields_container button.button {
  width: 100% !important;
  border-radius: 0px !important;
  font-family: "Jost-Bold" !important;
}

.form-fill-section .forminator-button {
  width: 100% !important;
  border-radius: 0px !important;
  font-family: "Jost-Bold" !important;

}

.forminator-button {
  font-size: 18px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 7px 26px;
  min-width: 130px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 44px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Regular";
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
}

button.forminator-button:hover {
  transform: scale(1.05);
  background-color: var(--blue);
  color: #fff;
}

.frm_opt_container {
  margin-top: 5px;
}

.frm_opt_container label {
  font-family: 'Jost-Regular';
}

.jtg-description {
  display: none;
}

.hero-slider {
  width: 100%;
  height: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 670px;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 670px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.slide-text p {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 20px;
  font-family: 'Jost-Bold';
  display: block;
  max-width: 650px;
}

.hero-title {
  font-size: 72px;
  margin: 0 0 17px;
  color: var(--primary);
  font-family: "Jost-Bold";
  position: relative;
  max-width: 730px;
}

.hero-title::before {
  content: '';
  position: absolute;
  background: url(./images/header-icon.png) no-repeat center center / 100% auto;
  width: 29px;
  height: 24px;
  left: -25px;
  top: -5px;
}

.hero-title span {
  font-size: 48px;
  font-family: "Jost-Regular";
  display: block;
}

.slide-btns {
  margin-top: 35px;
}

.sub-common-title {
  font-size: 24px;
  color: var(--primary);
  /* font-family: 'ComicSansMS-Regular'; */
  font-family: 'Jost-Regular';
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--primary) !important;
}

.service-lists-sec .service-box .service-arrow-link {
  content: '';
  position: absolute;
  background: url(./images/home/arr01.svg) no-repeat center center / 100% auto;
  width: 58px;
  height: 59px;
  left: calc(50% - 29px);
  bottom: -24px;
  display: block;
}

.service-lists-sec .service-box:nth-child(2) .service-arrow-link {
  background: url(./images/home/arr02.svg) no-repeat center center / 100% auto;
}

.service-lists-sec .service-box:nth-child(3) .service-arrow-link {
  background: url(./images/home/arr03.svg) no-repeat center center / 100% auto;
}

.service-single {
  max-width: 900px;
  margin: auto;
}

.service-det-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stats-section {
  padding: 170px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.stats-section::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stats-section aside {
  display: grid;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 340px;
}

.stats-section aside p {
  font-size: 30px;
  color: #fff;
  line-height: 36px;
  min-height: 71px;
  font-family: "Jost-Medium";
}

.counter-align {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 52px;
  color: #fff;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Bold";
}

/* .swiper-slides .whitefont {
  max-width: 900px;
  color: #a3d39c;
  line-height: 34px;
} */

/* .swiper-slides .hero-title {
  color: var(--white);
} */

.swiper-slides .slide-inner {
  background-position: bottom !important;
}

/* .swiper-slides .slide-inner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000057;
} */

.swiper-slides .slide-inner .common-container {
  position: relative;
  z-index: 1;
}

.text-center.learning_environment_content {
  margin-top: 20px;
  font-size: 20px;
}

.testimonial-button {
  margin: 30px auto 0;
}

.centre-about-sec {
  display: flex;
  gap: 50px;
  align-items: center;
}

.centre-left-sec,
.centre-right-sec {
  width: 50%;
}

.centre-left-sec h2,
.centre-right-sec h3 {
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 15px;
  font-family: 'Jost-Bold';
}

.centre-left-sec p {
  margin-top: 15px;
  color: #000;
  margin-bottom: 15px;
  font-size: 17px;
}

.centre-right-sec {
  padding: 50px;
  background: #fff0e5;
  border-radius: 24px;
}

.centre-address-sec a {
  display: flex;
  gap: 5px;
  max-width: 330px;
  font-size: 18px;
  color: var(--black) !important;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
}

.centre-address-sec a:hover {
  color: #000 !important;
}

.centre-address-sec a img {
  margin-top: 4px !important;
  display: block;
}

.scoial-icons-sec {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}

.scoial-icons-sec img,
.scoial-icons-sec svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.scoial-icons-sec img:hover,
.scoial-icons-sec svg:hover {
  opacity: 1;
  transform: scale(1.06);
}

.centre-right-sec p {
  color: var(--blue);
  font-family: 'Jost-Bold';
  margin-top: 20px;
}

.bottom-content-sec p {
  color: #000;
  margin-bottom: 15px;
  font-size: 17px;
}

.bottom-content-sec {
  margin-top: 20px !important;
}

.box-list-sec .flex-right-sec {
  padding: 0;
  background: none;
}

#monkey_404 {
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: flex;
}

#monkey_404 .st0 {
  fill: #e8ebed;
}

#monkey_404 .st1 {
  fill: #ffffff;
}

#monkey_404 .st2 {
  fill: none;
  stroke: #89949b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st3 {
  fill: #e8ebed;
  stroke: #89949b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st4 {
  fill: #ffffff;
  stroke: #89949b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st5 {
  fill: none;
  stroke: #89949b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st6 {
  fill: none;
  stroke: #89949b;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st7 {
  fill: #ffffff;
  stroke: #89949b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st8 {
  fill: #89949b;
}

#monkey_404 .st9 {
  fill: #89949b;
}

#monkey_404 .st10 {
  fill: none;
  stroke: #89949b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st11 {
  fill: #ffffff;
}

#monkey_404 .st12 {
  fill: #ffffff;
  stroke: #8894a0;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st13 {
  fill: #ffffff;
  stroke: #89949b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st14 {
  fill: none;
  stroke: #89949b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 .st15 {
  fill: none;
  stroke: #89949b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#monkey_404 #arm {
  transform-origin: 155px 292px;
  transform: rotateZ(-2deg);
}

#monkey_404 #monkey {
  animation: monkey-breathe 3s infinite ease-in-out;
}

#monkey_404 #zelda,
#monkey_404 #tetris,
#monkey_404 #moon,
#monkey_404 #star_a,
#monkey_404 #star_b,
#monkey_404 #star_c,
#monkey_404 #star_d,
#monkey_404 #number_4,
#monkey_404 #number_4_2,
#monkey_404 #number_0,
#monkey_404 #sword {
  animation: levitate 3s infinite ease-in-out;
}

#monkey_404 #zelda {
  animation-delay: 0s;
  animation-duration: 3s;
}

#monkey_404 #tetris {
  animation-delay: 1s;
  animation-duration: 3s;
}

#monkey_404 #moon {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

#monkey_404 #star_a {
  animation-delay: 0s;
  animation-duration: 3s;
}

#monkey_404 #star_b {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

#monkey_404 #star_c {
  animation-delay: 1s;
  animation-duration: 3s;
}

#monkey_404 #star_d {
  animation-delay: 1.5s;
  animation-duration: 3s;
}

#monkey_404 #number_4 {
  animation-delay: 0s;
  animation-duration: 3s;
}

#monkey_404 #number_4_2 {
  animation-delay: 1s;
  animation-duration: 3s;
}

#monkey_404 #number_0 {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

#monkey_404 #sword {
  animation-delay: 1.5s;
  animation-duration: 3s;
}

#monkey_404 #eye_left {
  transform-origin: 191px 257px;
  animation: blink-l 12s infinite ease-in-out;
}

#monkey_404 #eye_right {
  transform-origin: 205px 256px;
  animation: blink-r 12s infinite ease-in-out;
}

@keyframes arm-rotate {
  0% {
    transform: rotateZ(-3deg);
  }

  50% {
    transform: rotateZ(6deg);
  }
}

@keyframes monkey-breathe {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 1px, 0);
  }
}

@keyframes levitate {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 5px, 0);
  }
}

@keyframes star {
  0% {
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }

  50% {
    transform: translate3d(0, 5px, 0) rotateZ(180deg);
  }
}

@keyframes blink-l {
  0% {
    transform: rotateX(0deg);
  }

  2% {
    transform: rotateX(80deg);
  }

  4%,
  20% {
    transform: rotateX(0deg);
  }

  22% {
    transform: rotateX(80deg);
  }

  24%,
  30% {
    transform: rotateX(0deg);
  }

  32% {
    transform: rotateX(80deg);
  }

  34%,
  70% {
    transform: rotateX(0deg);
  }

  72% {
    transform: rotateX(80deg);
  }

  74%,
  100% {
    transform: rotateX(0deg);
  }
}

@keyframes blink-r {
  0% {
    transform: rotateX(0deg);
  }

  2% {
    transform: rotateX(80deg);
  }

  4%,
  30% {
    transform: rotateX(0deg);
  }

  32% {
    transform: rotateX(80deg);
  }

  34%,
  50% {
    transform: rotateX(0deg);
  }

  52% {
    transform: rotateX(80deg);
  }

  54%,
  100% {
    transform: rotateX(0deg);
  }
}

.button.not-found-btn {
  margin: auto;
}


.program-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  border: none !important;
  padding: 40px 40px 40px 40px !important;
  background: #fef0e5;
  margin-right: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
  margin-right: 0;
}

.playgroup {
  border: 2px solid #ffcdd2;
}

.program-label {
  flex-shrink: 0;
  width: 200px;
  padding: 10px;
  padding-right: 40px;
  border-radius: 25px;
  text-align: left;
  color: #333;
  position: relative;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.playgroup .program-name {
  color: #c62828;
}

.program-name {
  font-weight: bold;
  display: block;
}

.program-age {
  font-size: 14px;
  display: block;
}

.playgroup .program-initial {
  background: #eb4b7f;
}

.centre-address-sec {
  margin-bottom: 20px;
}

.program-initial {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.program-description {
  flex: 1;
  min-width: 250px;
  font-size: 17px;
  color: #000;
  padding-left: 40px;
  display: grid;
  gap: 15px;
}

.program-description p {
  font-size: 17px;
  color: #000;
}

.nursery1 {
  border: 2px solid #ffe0b2;
}

.nursery1 .program-name {
  color: #ffb74d;
}

.nursery1 .program-initial {
  background: #ffb74d;
}

.nursery2 {
  border: 2px solid #c8e6c9;
}

.nursery2 .program-name {
  color: #81c784;
}

.nursery2 .program-initial {
  background: #81c784;
}

.kindergarten1 {
  border: 2px solid #b3e5fc;
}

.kindergarten1 .program-name {
  color: #4fc3f7;
}

.kindergarten1 .program-initial {
  background: #4fc3f7;
}

.kindergarten2 {
  border: 2px solid #e1bee7;
}

.kindergarten2 .program-name {
  color: #ba68c8;
}

.kindergarten2 .program-initial {
  background: #ba68c8;
}

.flex-container.our-service-container {
  max-width: 100%;
  align-items: self-start;
  position: relative;
}

.flex-container.our-service-container .flex-left-sec ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  margin: 10px 0;
}

.flex-container.our-service-container .flex-left-sec li span {
  display: block;
}

.flex-container.our-service-container .flex-left-sec {
  padding: 20px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  position: sticky;
  top: 100px;
}

.footer-menu-sec {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
}

.contact-footer-menu {
  display: flex;
  flex-direction: column;
  max-width: 310px;
}

.other-footer-menu .footer-right {
  display: grid;
  gap: 6px;
  list-style: none;
}

.other-footer-menu .footer-right a {
  font-size: 18px;
  color: #000;
}

.contact-footer-menu a,
.contact-footer-menu p {
  font-size: 18px;
  color: #000;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact-footer-menu p {
  align-items: flex-start;
}

.foot-menu-list a {
  transition: all 0.3s ease-in-out;
}

.contact-footer-menu a:hover,
.foot-menu-list a:hover {
  color: var(--primary);
}

.contact-footer-menu a svg,
.contact-footer-menu p svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.contact-footer-menu p svg {
  margin-top: 4px;
}

.foot-menu-list h3 {
  font-size: 18px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-SemiBold";
  /* font-weight: 600; */
  margin-bottom: 10px;
  color: var(--blue);
  text-transform: uppercase;
}

.foot-copyright {
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #e6e6e6;
  margin-top: 50px;
  font-size: 15px;
}

footer {
  background: linear-gradient(to bottom, #fff 0%, #f6ffe2 100%);
  position: relative;
}

.line-image-foot {
  width: 100%;
  height: auto;
  padding-bottom: 15px;
}

.foot-bottom-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  height: auto;
  transform: translateX(-50%);
}

footer .common-container {
  position: relative;
}

.padding-20 {
  padding-top: 20px;
}

.faq-category-title h2 {
  font-size: 28px;
  color: var(--blue);
  text-transform: uppercase;
  font-family: "Jost-ExtraBold";
  margin: 39px 0 10px;
}

.forminator-description {
  display: none !important;
}

.cover-banner-image {
  width: 100%;
  border-radius: 20px;
}

.section-head-top {
  max-width: 950px;
  margin: auto;
  display: grid;
  gap: 20px;
}

.why-mmi {
  background: #fbfbfb;
  padding: 80px 0;
}

.mmi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
  max-width: 1200px;
  margin: auto;
}

.mmi-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mmi-item .icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmi-item .icon img {
  width: 40px;
}

.feature-box img {
  width: 80px;
  margin-bottom: 10px;
}

/* Icon Colors */
.red {
  background: #f6c5c5;
}

.orange {
  background: #f7c6a3;
}

.green {
  background: #bde6c8;
}

.blue {
  background: #b7d7f0;
}

.content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.content p {
  font-size: 16px;
  line-height: 24px;
}

/* Responsive */
@media (max-width: 768px) {


  .section-title {
    font-size: 30px;
  }
}

.image-content-section {
  position: relative;
}

.image-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.image-content-section .common-container {
  text-align: center;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.image-content-section h3 {
  color: #fff;
  font-size: 42px;
  font-family: 'Jost-Bold';
}

.image-content-section p {
  color: #fff;
  font-size: 18px;
  margin-top: 15px;
}

.career-container .question {
  justify-content: space-between;
  padding: 15px 16px 15px 0;
  font-family: 'Jost-Semibold';
}

.career-container .question span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #6c757d;
  background-color: #fff;
}

.career-container .question span path {
  fill: #6c757d;
}

.question.active span,
.question:hover span {
  background-color: #6c757d;
}

.question.active span path,
.question:hover span path {
  fill: #fff;
}

.faq-container.career-container {
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
  padding: 0 0px 0 26px;
  border-radius: 30px;
}

.faq-section.career-section {
  display: grid;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

.forminator-custom-form button.forminator-button.forminator-button-upload {
  width: fit-content !important;
  border-radius: 40px !important;
  padding: 10px 15px !important;
  margin-right: 10px !important;
  background: none !important;
  font-size: 16px !important;
  color: #343a40 !important;
  border: 1px dashed #000 !important;
  margin-top: 1px !important;
  font-family: 'Jost-Medium' !important;
}

.faq-section.career-section .answercont {
  padding-right: 15px;
}

.forminator-select-dropdown-container--open .forminator-dropdown--default {
  border-color: #ababab !important;
  background-color: #ffffff !important;
}

.form-fill-section.book-tour-form-sec .forminator-custom-form {
  max-width: 800px;
}

/* ===== Fixed Right Menu ===== */
.fixed-right-menu {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-30%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Each Button */
.fixed-right-menu .menu-item {
  flex-direction: column;
  display: flex;
  align-items: center;
  width: 90px;
  height: 50px;
  margin: 3px 0;
  padding: 5px 5px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  /* transition: width 0.35s ease, background 0.3s ease; */
}

.fixed-right-menu .menu-item .foot-icon path {
  fill: #fff;
}

/* Icon */
.fixed-right-menu .menu-item .foot-icon {
  min-width: 24px;
  height: 24px;
}

.fixed-right-menu .menu-item .foot-icon svg,
.fixed-right-menu .menu-item .foot-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Text */
.fixed-right-menu .menu-item span {
  font-size: 12px;
  margin-left: 10px;
  white-space: nowrap;
  /* opacity: 0; */
  /* transform: translateX(10px); */
  /* transition: opacity 0.25s ease, transform 0.25s ease; */
}

/* Hover Expand */
.fixed-right-menu .menu-item:hover {
  /* width: 160px; */
  background: var(--blue);
  transform: scale(1.04);
}

/* Show Text */
.fixed-right-menu .menu-item:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse1 2s infinite;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back To Top */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #155a96;
  transform: translateY(-5px);
}

/* Show Animation */
#backToTop.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.footer-logo img {
  width: 180px;
}

.footer-address-sec {
  display: grid;
  gap: 6px;
}

.foot-menu-list.Footer-logo-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.forminator-error-message {
  font-size: 12px !important;
  font-family: inherit;
  font-weight: 500 !important;
  background-color: #F9E4E8 !important;
  color: #333333 !important;
  padding: 2px 10px !important;
  border-radius: 2px !important;
  line-height: 2em !important;
}

.foot-socail-icons aside {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-socail-icons aside svg {
  width: 28px;
  height: 28px;
}

.Footer-logo-content p {
  font-size: 18px;
  color: #343a40;
  margin-top: 15px;
}

.forminator-uiinput[type="radio"] {
  display: inline-block !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

.forminator-ui.forminator-design--default .forminator-radio input:checked+.forminator-radio-bullet {
  border-color: #097BAA;
  background-color: #EDEDED;
}

.forminator-ui.forminator-design--default .forminator-radio .forminator-radio-bullet:before {
  background-color: #097BAA;
}

span.forminator-select-dropdown {
  background-color: #fff !important;
}

.forminator-phone input[type="text"] {
  padding-left: 55px !important;
}

.forminator-phone .iti__selected-dial-code {
  font-size: 14px !important;
}

.iti__country.iti__highlight,
.forminator-custom-form {
  font-size: 16px;
}

body .ui-datepicker.forminator-calendar--default {
  background-color: #fff !important;
}

.forminator-field-date .forminator-datepicker {
  padding-left: 10px !important;
}

.forminator-select-dropdown-container--open .forminator-dropdown--default li:hover {
  background: #e9ecef;
}


.features-container {
  display: grid;
  gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(5, 1fr);
}

.feature-box {
  background: #ffc5d830;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-box .icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.feature-box h3 {
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 10px;
  font-family: 'Jost-Bold';
}

.feature-box p {
  font-size: 14px;
  color: #3b4a4d;
  line-height: 1.6;
}

.thankyou-container {
  max-width: 600px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}

.thankyou-container img {
  max-width: 400px;
  margin: auto;
}

.thankyou-container h1 {
  font-family: 'Jost-Regular';
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 800;
}

.foot-copyright a {
  color: var(--blue);
}

span.forminator-required {
  color: #e04562;
}

footer .common-container {
  padding: 0 0px;
}

#main-menu li li.active a {
  color: var(--primary);
}

/* MAIN WRAPPER */
.principles-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 600px;
  max-height: 600px;
  margin: auto;
}

/* SVG Lines */
.principles-wrapper .lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.principles-wrapper .lines line {
  stroke: #666;
  stroke-width: 3;
}

/* CENTER */
.center-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #f2f2f2;
  border-radius: 50%;
  border: 6px solid #666;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.center-circle h2 {
  margin: 0;
  font-size: 35px;
  font-family: 'Jost-Bold';
  color: #666;
}

.center-circle p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

/* OUTER CIRCLES */
.principles-wrapper .item {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  font-family: "Jost-SemiBold";
  z-index: 2;
  transition: all 0.3s ease;
}

.principles-wrapper .item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.principles-wrapper .item1:hover,
.principles-wrapper .item4:hover {
  transform: scale(1.05) translate(-50%, 0);
}

/* Desktop circle placement */
.principles-wrapper .item1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border: 6px solid #2bb3ad;
}

.principles-wrapper .item2 {
  top: 18%;
  right: 5%;
  border: 6px solid #8fbe8a;
}

.principles-wrapper .item3 {
  bottom: 18%;
  right: 5%;
  border: 6px solid #e9165b;
}

.principles-wrapper .item4 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border: 6px solid #a8c63c;
}

.principles-wrapper .item5 {
  bottom: 18%;
  left: 5%;
  border: 6px solid #f7931e;
}

.principles-wrapper .item6 {
  top: 18%;
  left: 5%;
  border: 6px solid #166d75;
}

.award-row.bottom-row {
  margin-bottom: 0;
}

header.header .common-container {
  padding: 0 160px;
}

.header-btn.menu-item a {
  font-size: 18px !important;
  border-radius: 50px;
  background: var(--primary);
  color: #fff !important;
  border: none;
  padding: 7px 26px;
  min-width: 110px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 42px;
  /* font-family: "ComicSansMS-Regular"; */
  font-family: "Jost-Bold";
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header-btn.menu-item a:hover {
  transform: scale(1.05);
  background-color: var(--blue);
  color: #fff;
}

.single-menu.active a {
  color: var(--primary) !important;
}

.mobile-responsive-bar {
  display: none;
}

.program-item .min-width-200 {
  min-width: 200px;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.program-item .min-width-200 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-template-template-Our-Story .flex-left-sec img,
.page-template-template-Aims-Goals .flex-left-sec img,
.page-template-template-Montessori-Education .flex-left-sec img {
  border-radius: 10px;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.awards-wrapper .owl-stage {
  display: flex;
  align-items: center;
}

.awards-wrapper .owl-stage img {
  height: 150px;
  object-fit: contain;
}


img.sub-banner-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.hero-desktop {
  display: block !important;
}

.hero-tablet {
  display: none !important;
}

.hero-mobile {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-desktop {
    display: none !important;
  }

  .hero-tablet {
    display: block !important;
  }

  .hero-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero-desktop {
    display: none !important;
  }

  .hero-tablet {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }
}

.about-us-section.service-flex-box {
  gap: 50px;
}

.about-us-section.service-flex-box h2 {
  font-size: 38px;
  color: var(--blue);
  margin: 0 0 10px;
}

.about-us-section.service-flex-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
}

.about-us-section.service-flex-box p {
  font-size: 18px;
  color: #000;
  margin-bottom: 5px;
  line-height: 26px;
}

.about-us-section.service-flex-box .btn-flex-sec {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 25px;
}

.about-us-section.service-flex-box img {
  height: 430px;
  border-radius: 10px;
  width: 100%;
}

/* Montessori Connect Section */
.montessori-connect-section {
  position: relative;
}

.connect-header {
  text-align: center;
  margin-bottom: 50px;
}

.connect-label {
  display: block;
  font-family: "Jost-Bold";
  color: var(--primary);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.connect-title {
  font-size: 52px;
  font-family: "Jost-Bold";
  color: var(--blue);
  position: relative;
  display: inline-block;
  margin: 0;
}

.connect-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.connect-content-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.connect-image {
  flex: 1;
  position: relative;
  height: 577px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(48, 50, 123, 0.2);
  transition: transform 0.5s ease;
}

.connect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.connect-image:hover img {
  transform: scale(1.02);
}

.connect-details {
  flex: 1.2;
}

.connect-intro-text {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}

.connect-intro-text strong {
  color: var(--primary);
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 12px 25px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-decoration: none !important;
}



.download-item:hover {
  transform: translateX(10px);
  border-color: var(--primary);
}

.item-info {
  flex: 1;
}

.item-info h3 {
  font-size: 22px;
  font-family: "Jost-Bold";
  color: var(--blue);
  margin-bottom: 5px;
}

.item-info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Jost-Medium";
  font-size: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.download-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.download-item:hover .download-btn {
  background: var(--primary);
  transform: scale(1.05);
}

/* Video Section - High-End Archive Layout */

.video-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.video-label {
  font-family: "Jost-Bold";
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 20px;
  display: block;
}

.video-title {
  font-size: 56px;
  font-family: "Jost-Bold";
  color: var(--blue);
  line-height: 1.1;
  margin: 0;
}

.video-archive {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 25px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.archive-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(48, 50, 123, 0.1);
  border-color: rgba(235, 75, 127, 0.2);
}

.archive-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.archive-number {
  font-size: 24px;
  font-family: "Jost-Bold";
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.archive-item:hover .archive-number {
  color: var(--primary);
}

.archive-thumb {
  width: 200px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 50, 123, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.archive-item:hover .archive-thumb::after {
  opacity: 1;
}

.archive-info h3 {
  font-size: 22px;
  font-family: "Jost-Bold";
  color: var(--blue);
  margin: 0 0 5px 0;
}

.archive-info span {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.archive-play-btn {
  width: 60px;
  height: 60px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.archive-item:hover .archive-play-btn {
  background: var(--primary);
  transform: rotate(360deg);
}

.archive-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  margin-left: 3px;
  transition: fill 0.3s ease;
}

.archive-item:hover .archive-play-btn svg {
  fill: #fff;
}




/* Video Modal Styling */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: transparent;
  border: none;
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 991px) {
  .connect-content-flex {
    flex-direction: column;
    gap: 50px;
  }

  .connect-image,
  .connect-resources {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .connect-title,
  .video-title {
    font-size: 38px;
  }

  .download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .archive-item {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .archive-left {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
  }

  .archive-thumb {
    width: 100%;
    max-width: 350px;
  }

  .archive-number {
    font-size: 18px;
    opacity: 0.5;
  }

  .archive-info h3 {
    font-size: 18px;
  }

  .archive-play-btn {
    width: 50px;
    height: 50px;
  }
}

.enquiry-float {
    position: fixed;
    right: -3px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--primary);
    color: #fff;
    padding: 4px 15px;
    border-radius: 5px 5px 0 0;
    z-index: 99;
    font-family: "Jost-Bold";
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enquiry-float span {
  background: transparent !important;
  color: #fff !important;
  font-size: 14px;
}

.enquiry-float:hover {
  background-color: var(--blue);
  color: #fff;
  padding-right: 35px;
}

.mobile-Show,
.mobile-responsive-button {
  display: none;
}