/* Fonts */
:root {
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #674ea7;
  --color-secondary: #fcd84e;
  

}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Rubik', sans-serif;
  color: var(--color-default);
}

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

a:hover {
  color: #00b6a1;
  text-decoration: none;
}
.color-primary{
	color: var(--color-primary);
}
.color-secondary{
	color: var(--color-secondary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Poppins', sans-serif;
   color:var(--color-primary)
}

/*--------------------------------------------------------------
# Color for icons
--------------------------------------------------------------*/
.icon-purple {
    color: #674ea7 !important; 
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-header p {  
  color:var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 0;
  border-bottom:1px solid #e5e5e5;
}

.topbar .contact-info i {
  font-style: normal;
  color: #79D779;
  transition: color 0.3s;
  line-height: 0;
  /*width: 1.25em;*/
}

.topbar .contact-info a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}

@media (max-width: 575px) {

  .topbar .contact-info a,
  .topbar .contact-info i span {
    font-size: 14px;
	color:#000;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #fff;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;   
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
 

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
.getstarted{  
    background-color: #fcd84e !important;
    border-color: #fcd84e !important;
    color: #4a3b01 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
	padding: 0.6rem 1.2rem;
	border-radius: 100px;
 }
  a.getstarted:hover {
    color: #fff!important;
    background-color: var(--color-primary)!important;
  }
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #e7f7fc;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #000;
    
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-primary);
  }
 

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.academy-container{
	background-color:var(--color-primary);
}

.about h2 {
 font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  color: var(--color-primary);
}

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

.academy-section {
  padding: 3rem 1rem;
  background-color: #fffbfb;
}

.academy-card {
  text-align: center;
  transition: all 0.5s ease;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.academy-card:hover {
 /* background: #674ea7;  */
 /* color: #ffffff;*/
}
.shadow-img {
-webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}
.shadow-img1 {
-webkit-filter: drop-shadow(5px 5px 5px #fff);
  filter: drop-shadow(5px 5px 5px #fff);
}
.academy-card:hover .academy-icon,
.academy-card:hover .academy-text, 
.academy-card:hover .academy-title {
 /* color: #ffffff !important;*/
 /*transform: scale(0.9);*/
}
.outside-img {
  position: absolute;
  bottom: -50px;      /* adjust how much it hangs outside */
  left: 60%;
  transform: translateX(-50%);
  z-index: 10;        /* keeps it on top */
}
.academy-icon {
  width: 100px;
  height: auto;
  margin:auto;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.academy-title {
 /* font-weight: bold;*/
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #351c75;
}
.academy-text {
  font-size: 0.95rem;
  color: #351c75;
  transition: all 0.5s;
  flex-grow: 1;
}
.academy-button {
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid #2222;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
  width: fit-content;
  transition: background-color 0.3s ease;
}
.academy-button-km {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid #2222;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
  width: fit-content;
  transition: background-color 0.3s ease;
}
.academy-card:hover .academy-button {
  background-color: var(--color-secondary);
}
.card:hover .academy-button {
  background-color: var(--color-primary);
color:#fff;
}

.card:hover .academy-button-km {
  background-color: var(--color-secondary);
color:#000;
}

.academy-bottom {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.academy-bottom-km {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flip-container {
  width: 200px; /* Or adjust to match your design */
  height: 30px;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  text-align: right;
}

.flipper {
  width: 100%;
  height: 100%;
  animation: flipText 4s infinite;
  transform-style: preserve-3d;
  position: relative;
  transform-origin: center;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  right: 0;
}

.back {
  transform: rotateX(180deg);
}

@keyframes flipText {
  0%, 40% {
    transform: rotateX(0deg);
  }
  50%, 90% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* Make row flexible */
#myTabContent .row.g-4 {
  display: flex;
  flex-wrap: wrap;
}

/* Make each column flexible */
#myTabContent .row.g-4 > [class*="col-"] {
  display: flex;
}

/* Card full height */
#myTabContent .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Content grows evenly */
#myTabContent .conteny {
  flex: 1;
}

/* Push price & button to bottom */
#myTabContent .academy-bottom {
  margin-top: auto;
}


.client-slider-section img { 
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.client-swiper{
	border-left: 1px solid #222;
	border-right:1px solid #222;
}
.client-slider-section img:hover {
  opacity: 1;
  filter: none;
}

.swiper-slide {
  width: auto !important; /* allow dynamic width */
}
.impact-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.impact-section {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 0; /* optional: remove if you want full-width corners */
  background-image: url('../img/hippocampus-group-photo-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.impact-box { 
  background-color: rgba(255, 255, 255, 0.9); 
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  
}

.impact-box h2 {
 font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.impact-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.impact-box ul li {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
}
.signup-section {
  width: 100%;
  background: #fff;
  padding: 60px 20px;
  box-sizing: border-box;
  /*text-align: center;*/
}
.signup-section h2{
	color:#000;
	font-weight:600;
}
.section-title {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 700;
}

.tables-wrapper {
  display: flex;
  flex-wrap: wrap;
  
  gap: 30px;
}

.table-card {
 /* background: #f4f8fc;*/
  border-radius: 10px;
  padding: 20px;
 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-title {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  /*margin: -20px -20px 20px -20px;*/
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.signup-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.signup-section th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.signup-section thead th {
  background-color: #fffbfb;
  font-weight: bold;
}

.signup-section tbody tr:nth-child(even) {
  background-color: #fffbfb;
}

.signup-btn {
  margin-top: 1.2rem;
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid #2222;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
  width:fit-content;
  transition: background-color 0.3s ease;
  justify-content:start;
}

.signup-btn:hover {
  background-color:var(--color-secondary);
}
.offer-badge {
  position: absolute;
  top: -8%;
  left: -5%;
  transform: rotate(-35deg); /* Adjust degree as needed */
  transition: transform 0.3s ease-in-out;
  z-index: 5;
  
}

.offer-badge:hover {
  transform: rotate(0deg) scale(1.05);
}
.btn-close {
    box-sizing: content-box;
    width: 0.5em;
    height: 0.5em;
    padding: .25em .25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: .5;
}
.btn-model{
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid #2222;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  width: fit-content;
  transition: background-color 0.3s ease;
}
/* Custom tab design */
.nav-tabs {   
    border-bottom: none;
}
    .nav-tabs .nav-link {
      border: none;
      color:  var(--color-primary);
      border-radius: 30px;
      margin-right: 10px;
      background-color: #fffbfb;
      padding: 8px 20px 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      
	  letter-spacing: 4px;
      transition: 0.3s;
	   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

.model .nav-tabs .nav-link .icon-box{
	background: transparent;
}

.icon-boxs img {
  flex-shrink: 0;
  max-width: 70px;
}

    .nav-tabs .nav-link .icon-box {
      background: #ffc107;
      border-radius: 50%;
	width: 44px;
    height: 44px;
      padding: 6px;
      display: flex;
	  font-size:22px;
      align-items: center;
      justify-content: center;
    }

    .nav-tabs .nav-link.active {
		 color:  #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	  background-color: #674ea7c2;
    }

    .tab-pane {
      margin-top: 20px;
    }

   

    

    ul {
      padding-left: 20px;
    }


.mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 28px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color:var(--color-primary);
  justify-content: center;
  align-content: center;
  transition: all 0.3s;

}
.mbr-iconfont-social:before {
  padding: 0.6rem;
}
.mbr-iconfont-social:hover {
  color: var(--color-secondary);
}

.pdf-modal-content {
  border-radius: 20px;
  padding: 40px 20px 30px;
  text-align: center;
  position: relative;
background: linear-gradient(-45deg, #fcd84e, #674ea7, #674ea7, #fcd84e);
	background-size: 400% 400%;
	-webkit-animation: gradient 15s ease infinite;
	        animation: gradient 15s ease infinite;
}

.pdf-modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pdf-modal-icon i {
  color: white;
  font-size: 30px;
}

.pdf-modal-title {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.pdf-modal-subtext {
  color: #666;
  font-size: 0.9rem;
  margin: 10px auto 30px;
  max-width: 320px;
}

.pdf-download-btn {
  display: inline-block;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(to right, #f7971e, #ffd200);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.pdf-download-btn:hover {
  opacity: 0.9;
  text-decoration: none;
	color:var(--color-primary);
}
.btn-theme {
	 background: var(--theme-color1);
	 color: #212121;
}
.cta-section {
  background-color: #e36961;  
  padding: 60px 40px;
  color: white;
  position: relative;
  overflow: visible; /* changed from hidden to visible */
}
    .cta-image {
      max-width: 100%;
      position: relative;
     /* top: -50px; /* Image overlaps container */
    }

    .cta-content h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #e0dfff;
    }

    .cta-btn {
      background-color: white;
      color: #7a5bff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 30px;
      border: none;
      transition: 0.3s;
    }

    .cta-btn:hover {
      background-color: #f2f2ff;
    }

    @media (max-width: 768px) {
      .cta-image {
        top: 0;
        margin-bottom: 30px;
      }
    }

.c-container {
    margin: auto;
    width: 93%;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    border-width: 2px;
    border-color: #fff;
    font-weight: 500;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.btn {
    border-radius: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: var(--text-dark);
}
.testimonial-section {
      position: relative;
      background: url('../img/bb2-2-11zon.webp') center center / cover no-repeat fixed;
      padding: 100px 0;
      z-index: 1;
    }

    .testimonial-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #674ea7c4; /* Purple with opacity */
      z-index: 0;
    }
	.testimonial-section .container {
      position: relative;
      z-index: 1;
    }

 .testimonial-section h2 {
      text-align: center;
      color: #fff;
      margin-bottom: 50px;
	   position: relative; /* optional, for clarity */
    }

 .testimonial-section   .swiper {
      padding: 40px 0;
    }

 .testimonial-section .swiper-slide {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  width: auto; /* previously was 300px */
  max-width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

    .testimonial-card h5 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .testimonial-card .stars {
      color: #fbc02d;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .testimonial-card p {
      color: #000;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .testimonial-card .reviewer {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .testimonial-card .reviewer img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 15px;
    }

    .testimonial-card .reviewer-info strong {
      font-size: 1rem;
    }

    .testimonial-card .reviewer-info small {
      color: #222;
    }

    .swiper-pagination {
      margin-top: 30px;
    }

.page-footer{
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .page-footer.content {
    text-align: center;
  }
  .page-footer.content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.page-footer.img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.page-footer.form-group,
.page-footer.input-group-btn {
  padding: 0;
}
.page-footer.form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.page-footer.input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.page-footer.social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-footer.social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.page-footer.social-list .soc-item {
  margin: 0 .5rem;
}
.page-footer.social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.page-footer.social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .page-footer.social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .page-footer.footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.page-footer.footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.page-footer.form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .page-footer.foot-logo {
    text-align: center !important;
  }
  .page-footer.foot-title {
    text-align: center !important;
  }
  .page-footer.mbr-text {
    text-align: center !important;
  }
  .page-footer.form-group {
    margin: 0;
  }
}
.page-footer.foot-text {
  color: #351c75;
}
.page-footer.foot-title {
  color: #351c75;
}
.page-footer.mbr-links-column {
  color: #351c75;
}
.cid-sFGSOnwtIp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #ffffff;
}
#teacherTrainingModal {
  /* forces this modal above all others */
  z-index: 99999;
}

#teacherTrainingModal .form-step { display:none; }
#teacherTrainingModal .form-step.active { display:block; }

/* Sidebar */
#teacherTrainingModal .step-sidebar li { 
  padding:10px 12px; 
  border-left:4px solid transparent; 
  color:#6c757d; 
}
#teacherTrainingModal .step-sidebar li.active { 
  color:#0d6efd; 
  border-color:#0d6efd; 
  font-weight:600; 
}

/* Option cards */
#teacherTrainingModal .option-card { display:block; cursor:pointer; }
#teacherTrainingModal .option-input { display:none; }
#teacherTrainingModal .card-wrap {
  border:1.5px solid #e5e7eb; 
  border-radius:12px; 
  padding:16px; 
  text-align:center;
  transition:.2s ease; 
  background:#fff;
}
#teacherTrainingModal .card-wrap i { 
  font-size:1.4rem; 
  display:block; 
  margin-bottom:8px; 
}
#teacherTrainingModal .card-wrap .label-text { font-weight:500; }
#teacherTrainingModal .option-card:hover .card-wrap { 
  border-color:#0d6efd; 
  background:#f8faff; 
}
#teacherTrainingModal .option-input:checked + .card-wrap {
  border-color:#0d6efd; 
  background:#eef5ff; 
  box-shadow:0 0 0 3px rgba(13,110,253,.12) inset;
}
#teacherTrainingModal .form-step h5 { color: #fff; }

/* Dark theme */
#teacherTrainingModal .modal-content {
  border-radius: 20px;  
  color: #fff;
  border: none;
  /*overflow: hidden;*/
}

/* Sidebar steps */
#teacherTrainingModal .step-sidebar { 
  border-right: 1px solid rgba(255,255,255,0.08); 
}
#teacherTrainingModal .step-sidebar li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  color:  var(--color-primary);
  position: relative;
}
#teacherTrainingModal .step-sidebar li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a223f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px;
  font-size: 16px;
}
#teacherTrainingModal .step-sidebar li.active {
  color: #ff0303;
  font-weight: 600;
}
#teacherTrainingModal .step-sidebar li.active i {
  background: #1fdf9f;
  color: #0d0f1a;
  box-shadow: 0 0 0 4px rgba(31,223,159,0.25);
}

/* Question section */
#teacherTrainingModal .col-md-9.p-4 {
  background: #9a91bf;
  color: #fff;
}
#teacherTrainingModal h3, 
#teacherTrainingModal h5 {
  color: #fff;
}

/* Option cards dark theme */
#teacherTrainingModal .option-card .card-wrap {
  background: #141c3a;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: left;
  transition: 0.3s;
  color: #fff;
}
#teacherTrainingModal .option-card i {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #1fdf9f;
}
#teacherTrainingModal .option-card .label-text {
  font-weight: 500;
  font-size: 14px;
  color:#fff;
}
#teacherTrainingModal .option-card:hover .card-wrap {
  border-color: #1fdf9f;
  background: #1a2448;
}
#teacherTrainingModal .option-input:checked + .card-wrap {
  border-color: #1fdf9f;
  background: #152040;
  box-shadow: 0 0 8px rgba(31,223,159,0.4);
}

#teacherTrainingModal .progress { margin-top:15px; }

/* Next buttons */
#teacherTrainingModal #nextBtn {
  background: var(--color-secondary);
  border: none;
  border-radius: 25px;
  padding: 14px 30px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#teacherTrainingModal #nextBtn:hover {
  background: var(--color-default);
  color:#fff;
  box-shadow: 0 4px 12px rgba(31,223,159,0.4);
}

/* Prev buttons */
#teacherTrainingModal #prevBtn {
  background: var(--color-secondary);
  border: none;
  border-radius: 25px;
 padding: 14px 30px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#teacherTrainingModal #prevBtn:hover {
background: #ef4d43;
  color: #fff;
}

/* Close button */
#teacherTrainingModal .btn-close {
  filter: invert(1);
  z-index: 1056;
}
#teacherTrainingModal .bg-lightss {
background-color:#fcd84e85;
}
#teacherTrainingModal .submitBtn11 {
  background: #ef4d43;
  border: none;
  border-radius: 25px;
 padding: 14px 30px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#teacherTrainingModal .submitBtn11:hover {
  background: var(--color-primary);
}
.submitBtn11 {
  background: #ef4d43;
  border: none;
  border-radius: 25px;
 padding: 14px 30px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.school-challenges .challenge-card {
  transition: all 0.3s ease;
}
.school-challenges .challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.school-challenges .icon-box {
  background: #7e71b133;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.school-challenges .outcome {
  font-weight: 500;
  color: #222;
}
.school-challenges .blink {
  animation: blink 1.5s infinite;
  margin-right: 6px;
  color:#e63a2e;
  font-size: 22px;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.2); }
}
Design Develop /* Brand Colors */
.text-purple { color: #8E7CC3; }
.bg-purple { background: #8E7CC3; }
.border-purple { border-color: #8E7CC3 !important; }

.bg-red { background: #E74C3C; }
.border-red { border-color: #E74C3C !important; }

.bg-gold { background: #F1C40F; }
.border-gold { border-color: #f7f7f7 !important; }
.wrap {
	 display: flex;
  flex-direction: column;
  width: 100%;
  height: 400px;
  border: 6px solid #fff;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.6) 0px 7px 29px 0px;
}
.overlay {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1rem;
  transition: 0.4s ease-in-out;
  z-index: 1;
}
.overlay-content {
display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 15vmin;
	height: 100%;
	padding: 0.5rem 0 0 0.5rem;
	transition: 0.3s ease-in-out 0.2s;
	z-index: 1;
}
.image-content {
 position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
}


.dots {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 70px;
	height: 4vmin;
	transition: 0.3s ease-in-out 0.3s;
}
.dot {
	width: 1rem;
	height: 1rem;
	background: yellow;
	border: 1px solid indigo;
	border-radius: 50%;
	transition: 0.3s ease-in-out 0.3s;
}

.text {
	display: grid;
  position: absolute;
  top: 0;
  right: -100%;   /* hidden by default */
  width: 90%;
  height: 100%;
  padding: 1.2rem;
  background: #fff;
  box-shadow: inset 1px 1px 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: right 0.4s ease-in-out;  /* smooth slide */
  z-index: 2; /* make sure it's above image but below overlay heading */
}
.tree {
	place-self: center;
	width: calc(50px + 2vw);
}

/* Keep heading visible when sliding */
.wrap:hover .overlay-content {
  border: none;
  transform: translateX(125%);
  z-index: 4; /* ensures it's on top */
  position: relative;
}
/* Hover effect */
.wrap:hover .text {
  right: 0;  /* slides into view */
}

.wrap:hover .overlay {
  transform: translateX(-65%);
}







/* Responsive */
@media (max-width: 991px) {
  .wrap { height: 350px; }
  .overlay-content { width: 30%; }
  .image-content, .text { width: 70%; }
}
@media (max-width: 767px) {
  .wrap { height: auto; min-height: 300px; }
  .overlay-content { width: 40%; }
  .image-content, .text { width: 100% !important; }
}
.animate {
	animation-duration: 0.7s;
	animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
	animation-fill-mode: backwards;
}
/* Pop In */
.pop {
	animation-name: pop;
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

/* Slide In */
.slide {
	animation-name: slide;
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translate(4em, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/* Slide Left */
.slide-left {
	animation-name: slide-left;
}
@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translate(-40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

.slide-up {
	animation-name: slide-up;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(3em);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.6s;
}
.delay-3 {
	animation-delay: 0.9s;
}
.delay-4 {
	animation-delay: 1.2s;
}
.delay-5 {
	animation-delay: 1.5s;
}
.delay-6 {
	animation-delay: 1.8s;
}
.delay-7 {
	animation-delay: 2.1s;
}
.delay-8 {
	animation-delay: 2.4s;
}

/* Responsive cards */
@media (max-width: 991px) {
  .wrap {
    width: 100%;
    height: 70vmin;
  }
}
@media (max-width: 767px) {
  .wrap {
    height: 60vmin;
  }
  .overlay-content {
    width: 25vmin;
  }
  .image-content,
  .text {
    width: 100% !important;
  }
}

.icon-box-1 {
  width: 75px; /* Adjust as needed for your icon size */
  height: 75px; /* Adjust as needed for your icon size */
  border-radius: 15px; /* Creates rounded corners for a softer look */
  background-color: #fff; /* a light, neutral background color */
  display: flex; /* To center the icon if it's an SVG or image inside */
  justify-content: center;
  align-items: center;
  
}
.icon-box-2 {
  width: 50px; /* Adjust as needed for your icon size */
  height: 50px; /* Adjust as needed for your icon size */
  border-radius: 15px; /* Creates rounded corners for a softer look */
  background-color: #fff; /* a light, neutral background color */
  display: flex; /* To center the icon if it's an SVG or image inside */
  justify-content: center;
  align-items: center;
  
}
.icon-box-2 img {
  width: 60%; /* Example size, adjust as needed */
  height: auto; /* Example size, adjust as needed */
  fill: #666; /* Example color for SVG icons */
}
/* If your icon is an SVG or an image, you might style it within the container */

.icon-box-1 img {
  width: 60%; /* Example size, adjust as needed */
  height: 60%; /* Example size, adjust as needed */
  fill: #666; /* Example color for SVG icons */
}

